/* 
   ==========================================================================
   JAIN SHADI MILAN - PREMIUM MATRIMONIAL WEBSITES STYLE SHEET
   ========================================================================== 
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary: #7A1F2A; /* Royal Burgundy */
    --primary-light: #9E2D3B;
    --primary-dark: #56141C;
    --secondary: #D4AF37; /* Luxury Gold */
    --secondary-light: #E9C967;
    --secondary-dark: #AA861D;
    
    --bg-creme: #FAF7F2; /* Warm Ivory background */
    --bg-white: #FFFFFF;
    --bg-dark: #1F080B;
    
    --text-main: #2C2C2C; /* Rich Charcoal */
    --text-muted: #666666;
    --text-light: #8E8E93;
    --text-white: #FFFFFF;
    
    /* UI Styling */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(122, 31, 42, 0.05);
    --shadow-lg: 0 20px 40px rgba(122, 31, 42, 0.08);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(212, 175, 55, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(122, 31, 42, 0.05);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-creme);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

/* 2. Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gold {
    color: var(--secondary);
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-burgundy {
    color: var(--primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(122, 31, 42, 0.06);
    border: 1px solid rgba(122, 31, 42, 0.1);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--secondary-dark);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.75rem;
    }
}

/* 3. Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 14px rgba(122, 31, 42, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 31, 42, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--bg-dark);
    border: 1px solid var(--secondary);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
    background: rgba(122, 31, 42, 0.04);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* 4. Glassmorphism Card System */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(122, 31, 42, 0.08);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover::before {
    opacity: 1;
}

/* 5. Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(122, 31, 42, 0.04);
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(212, 175, 55, 0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    color: var(--secondary);
    box-shadow: 0 4px 10px rgba(122, 31, 42, 0.15);
}

.logo-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.nav-menu {
    display: none; /* Mobile hidden */
}

.nav-cta {
    display: none; /* Mobile hidden */
}

/* Mobile Hamburger Trigger */
.menu-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-trigger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-creme);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 999;
    padding: 100px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: var(--transition);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 12px 0;
    border-bottom: 1px solid rgba(122, 31, 42, 0.06);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary);
    padding-left: 8px;
}

/* Desktop Navbar Media Queries */
@media (min-width: 1024px) {
    .menu-trigger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 36px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-main);
        position: relative;
        padding: 8px 0;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--primary);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: var(--transition);
    }
    
    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
    
    .nav-cta {
        display: block;
    }
    
    .nav-cta .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/* 6. Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    background: linear-gradient(185deg, rgba(31, 8, 11, 0.9) 0%, rgba(122, 31, 42, 0.85) 100%), 
                url('hero_background.png') no-repeat center center;
    background-size: cover;
    color: var(--text-white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Luxury Overlay Details */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-creme), transparent);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.indicator-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

/* Hero Floating Visual Elements */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 440px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Floating Elements style */
.floating-element {
    position: absolute;
    z-index: 3;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.float-1 {
    top: 10%;
    left: -15px;
    animation: floaty 6s ease-in-out infinite alternate;
}

.float-2 {
    bottom: 15%;
    right: -15px;
    animation: floaty 8s ease-in-out infinite alternate-reverse;
}

.float-icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.float-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.float-text p {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--secondary-light);
    font-weight: 600;
    margin-bottom: 2px;
}

.float-text span {
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes floaty {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 160px;
        padding-bottom: 120px;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* 7. Why Choose Jain Shadi Milan */
.why-choose {
    padding: 100px 0;
    background: var(--bg-creme);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    text-align: left;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(122, 31, 42, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--secondary);
    transform: rotate(5deg) scale(1.05);
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 8. App Showcase Section */
.app-showcase {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.app-showcase::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.04);
    top: -100px;
    right: -100px;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.app-visuals {
    display: flex;
    justify-content: center;
    position: relative;
}

.app-mockup-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.app-mockup-wrapper img {
    border-radius: 36px;
    box-shadow: 0 25px 50px -12px rgba(122, 31, 42, 0.15);
    border: 8px solid #1F080B;
}

.app-mockup-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(6deg);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1) rotate(6deg); }
    50% { transform: scale(1.05) rotate(6deg); }
    100% { transform: scale(1) rotate(6deg); }
}

.app-details h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.app-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.app-feat-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.app-feat-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.app-feat-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.app-feat-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.app-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: var(--bg-dark);
    color: var(--text-white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.store-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    border-color: var(--secondary);
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.store-text {
    text-align: left;
}

.store-text span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2px;
}

.store-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .app-details h2 {
        font-size: 2.75rem;
    }
}

/* 9. Success Highlights Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.stats::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.015);
    bottom: -200px;
    left: -200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .stat-number {
        font-size: 3rem;
    }
}

/* 10. Trust Section */
.trust {
    padding: 100px 0;
    background: var(--bg-creme);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.trust-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(122,31,42,0.03);
    transition: var(--transition);
}

.trust-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.15);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.trust-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 11. Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--bg-white);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 60px 24px;
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-content .btn {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 80px 48px;
    }
    .cta-content h2 {
        font-size: 3rem;
    }
}

/* 12. Footer Section */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-info {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--primary-dark);
}

.footer-logo-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-download h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-download h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-download p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-download .app-stores {
    gap: 12px;
}

.footer-download .store-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
}

.footer-download .store-btn:hover {
    background: var(--primary);
}

.footer-download .store-btn svg {
    width: 20px;
    height: 20px;
}

.footer-download .store-text span {
    font-size: 0.6rem;
}

.footer-download .store-text strong {
    font-size: 0.8rem;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* 13. Scroll Animation Triggers & CSS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.stagger-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes in CSS */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
