/* Made4U Nigeria Landing Page Styles */
:root{
    --primary-color: #2D5F3F;
    --secondary-color: #8B4513;
    --accent-color: #D4AF37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2D5F3F 0%, #4A8B5C 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section - Made4U Home */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2D5F3F 0%, #1F4A2F 100%);
    overflow: hidden;
    padding: 2rem 0;
}

/* Decorative Pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 50px 50px;
}

/* Floating Decorative Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    opacity: 0.2;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    opacity: 0.2;
    background: radial-gradient(circle, #8B1538 0%, transparent 70%);
    animation: float 10s ease-in-out infinite 1s;
}
 
/* Hero Content Container */
.hero-content{
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Badge Icon */
.hero-badge-icon {
    width: 16px;
    height: 16px;
    animation: rotate 2s linear infinite;
}

/* Rotate animation for sync icon */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Heading */
.hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    line-height: 1;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-heading-accent {
    color: #D4AF37;
    font-size: inherit;
}

/* Hero Divider */
.hero-divider {
    width: 5rem;
    height: 0.2rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    color: white;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

/* Hero Buttons Container */
.hero-buttons{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Primary CTA Button with animations */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    background: #D4AF37;
    color: #292524;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite, shake 3s ease-in-out 2s infinite;
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: scale(1.05);
    color: #ffffff;
}

/* Secondary CTA Button */
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Typography */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-badge {
        margin-bottom: 0.7rem;
    }
    
    .hero-badge-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-heading {
        font-size: 3rem;
        margin-bottom: 1.25rem;
        line-height: 1.1;
    }
    
    .hero-divider {
        margin: 0 auto 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 1.125rem 2.25rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .hero-badge {
        margin-bottom: 0.35rem;
    }
    
    .hero-badge-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-heading {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 700px;
    }
}

.btn{
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-cta {
    margin-top: 2.5rem;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pillar-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.pillar-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
}

.btn-secondary:hover {
    background: #1e4029;
    transform: translateY(-2px);
}

/* Product Highlight */
.product-highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.product-highlight .section-header h2,
.product-highlight .section-header p {
    color: var(--white);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-image-placeholder {
    font-size: 8rem;
    opacity: 0.8;
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.product-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Blog Teaser */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Partnership Section */
.partnership-section {
    background: linear-gradient(135deg, #1e4029 0%, #2D5F3F 100%);
    color: var(--white);
    text-align: center;
}

.partnership-section .section-header h2,
.partnership-section .section-header p {
    color: var(--white);
}

.partnership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Attention-grabbing button animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7), 0 0 40px rgba(212, 175, 55, 0.5);
        transform: scale(1.02);
    }
}

@keyframes bounce-x {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px) scale(1.02);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px) scale(1.02);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .partnership-features {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ==============================
   SNAXY ZOBOLICIOUS PAGE STYLES
   (Copied from Snaxy Zobolicious.css)
   ============================== */

/* About Section - Snaxy */
.about-section {
    padding: 5rem 0 8rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-content {
    order: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(45, 95, 63, 0.1);
}

.about-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.about-badge-text {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-heading span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.about-text {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-image {
    order: 1;
    position: relative;
}

.about-image-decoration {
    position: absolute;
    inset: -1rem;
    border-radius: 24px;
    opacity: 0.2;
    filter: blur(40px);
    background: var(--gradient-accent);
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Overlay */
.about-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.about-stat {
    color: var(--white);
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 700; 
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Snaxy Hero Section Specific Styles */
.hero-section .zobo-hero-h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Inter', 'Nunito Sans', sans-serif;
}

.zobo-hero-accent {
    color: var(--accent-color) !important;
    font-size: inherit;
    font-weight: inherit;
}

.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-float {
    position: absolute;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.hero-float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: var(--accent-color);
    opacity: 0.2;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 128px;
    height: 128px;
    bottom: 32%;
    right: 16%;
    background: var(--white);
    opacity: 0.1;
    animation-delay: 2s;
}

.hero-float-3 {
    width: 64px;
    height: 64px;
    top: 33%;
    right: 20%;
    background: var(--accent-color);
    opacity: 0.3;
    animation-delay: 4s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Hero CTA Buttons for Snaxy */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Fix outline button visibility in hero section */
.hero-section .btn-outline-primary {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
}

.hero-section .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Social Links - Mobile Optimization */
.flex.flex-wrap.justify-center.gap-6 {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
}

.flex.flex-wrap.justify-center.gap-6 a {
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

.flex.flex-wrap.justify-center.gap-6 a svg {
    width: 1.25rem;
    height: 1.25rem;
}

.flex.flex-wrap.justify-center.gap-6 a span {
    font-size: 0.875rem;
}

/* Responsive Design for Snaxy Sections */
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-cta {
        flex-direction: row;
    }
    
    .about-cta .btn {
        padding: 1.5rem 2rem;
    }
}

@media (min-width: 768px) {
    .flex.flex-wrap.justify-center.gap-6 {
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 1.5rem;
    }
    
    .flex.flex-wrap.justify-center.gap-6 a {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .flex.flex-wrap.justify-center.gap-6 a svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .flex.flex-wrap.justify-center.gap-6 a span {
        font-size: 1rem;
    }
    
    .hero-section .zobo-hero-h1 { 
        font-size: 3rem; 
    }
    
    .about-heading {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-section .zobo-hero-h1 { 
        font-size: 3.6rem; 
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-heading {
        font-size: 3.75rem;
    }
}
