/* Hobbizo Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
    --bg-dark: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.75);
    --border-light: rgba(15, 23, 42, 0.08);
    --text-white: #0f172a;
    --text-gray: #475569;
    --text-dim: #64748b;
    
    /* Category Accent Colors */
    --color-photography: #2563eb;
    --color-music: #7c3aed;
    --color-sports: #059669;
    --color-art: #ea580c;
    --color-fitness: #db2777;
    --color-travel: #0284c7;
    --color-gaming: #4f46e5;
    --color-reading: #0d9488;
    --color-cooking: #ca8a04;
    --color-dance: #c084fc;
    
    /* Gradients */
    --btn-gradient: linear-gradient(135deg, #3b82f6, #d946ef);
    --text-gradient: linear-gradient(90deg, #3b82f6, #ec4899);
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    position: relative;
}

/* Background glows */
.radial-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.radial-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 200px;
    right: -200px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.app-wrapper {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header / Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    height: 38px;
    width: auto;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-trigger {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.search-trigger:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-download {
    background: var(--btn-gradient);
    border: none;
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    text-decoration: none;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

/* Categories horizontal bar */
.categories-container {
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
}

.categories-scroll::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-pill i {
    width: 14px;
    height: 14px;
}

/* Hover effects with colored glows matching icons */
.category-pill.photography:hover {
    color: var(--color-photography);
    border-color: var(--color-photography);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.03);
}

.category-pill.music:hover {
    color: var(--color-music);
    border-color: var(--color-music);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.03);
}

.category-pill.sports:hover {
    color: var(--color-sports);
    border-color: var(--color-sports);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
    background: rgba(16, 185, 129, 0.03);
}

.category-pill.art:hover {
    color: var(--color-art);
    border-color: var(--color-art);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.15);
    background: rgba(249, 115, 22, 0.03);
}

.category-pill.fitness:hover {
    color: var(--color-fitness);
    border-color: var(--color-fitness);
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.15);
    background: rgba(236, 72, 153, 0.03);
}

.category-pill.travel:hover {
    color: var(--color-travel);
    border-color: var(--color-travel);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.15);
    background: rgba(14, 165, 233, 0.03);
}

.category-pill.gaming:hover {
    color: var(--color-gaming);
    border-color: var(--color-gaming);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.15);
    background: rgba(99, 102, 241, 0.03);
}

.category-pill.reading:hover {
    color: var(--color-reading);
    border-color: var(--color-reading);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.15);
    background: rgba(20, 184, 166, 0.03);
}

.category-pill.cooking:hover {
    color: var(--color-cooking);
    border-color: var(--color-cooking);
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.15);
    background: rgba(234, 179, 8, 0.03);
}

.category-pill.dance:hover {
    color: var(--color-dance);
    border-color: var(--color-dance);
    box-shadow: 0 0 12px rgba(217, 70, 239, 0.15);
    background: rgba(217, 70, 239, 0.03);
}


/* Hero Grid Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: 15px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-tagline {
    font-size: 11px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--text-white);
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 520px;
}

/* Search filter card */
.search-filter-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 680px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    margin-top: 15px;
}

.search-field-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.search-field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field-label i {
    width: 12px;
    height: 12px;
    color: var(--text-gray);
}

.search-field-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-gray);
    font-size: 12px;
    padding: 2px 0;
    width: 100%;
}

.search-field-input::placeholder {
    color: var(--text-dim);
}

/* Custom Dropdown Styling */
.search-field-select {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-gray);
    font-size: 12px;
    padding: 2px 0;
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.search-field-select option {
    background-color: #ffffff;
    color: #0f172a;
}

.search-field-divider {
    width: 1px;
    height: 32px;
    background: rgba(15, 23, 42, 0.08);
    margin: 0 20px;
}

.btn-explore {
    background: var(--btn-gradient);
    border: none;
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    white-space: nowrap;
}

.btn-explore:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

/* Bottom CTA actions */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

.btn-cta-explore {
    background: var(--btn-gradient);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-cta-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

.btn-watch-story {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.play-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.btn-watch-story:hover .play-icon-wrapper {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.watch-story-text {
    display: flex;
    flex-direction: column;
}

.watch-story-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.watch-story-sub {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 1px;
}


/* Hero Right Column */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3.4;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0) 40%);
    pointer-events: none;
}


/* Stats Section */
.stats-container {
    margin-top: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.stats-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 26px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stat color schemes */
.stat-item.members .stat-icon-wrapper {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item.communities .stat-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item.events .stat-icon-wrapper {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.stat-item.cities .stat-icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 1px;
}

/* Footer wave decorations */
.footer-decor {
    position: relative;
    width: auto;
    margin-left: -40px;
    margin-right: -40px;
    margin-top: -30px;
    margin-bottom: 20px;
    z-index: 2;
    overflow: hidden;
}

.footer-wave-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Trace lines animation paths */
.glowing-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 12s linear infinite;
}

.glowing-path-1 {
    animation-delay: 0s;
}

.glowing-path-2 {
    animation-delay: 4s;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}


/* Responsiveness Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-desc {
        margin: 0 auto;
    }
    
    .search-filter-card {
        margin-top: 25px;
    }
    
    .hero-cta-row {
        justify-content: center;
    }
    
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .search-filter-card {
        flex-direction: column;
        border-radius: 24px;
        padding: 24px;
        gap: 16px;
    }
    
    .search-field-divider {
        display: none;
    }
    
    .btn-explore {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .stats-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
    }
}

/* Lower sections styles */

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    position: relative;
    z-index: 10;
}

.section-header-left {
    display: flex;
    flex-direction: column;
}

.section-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.section-badge-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 8px #3b82f6;
}

.section-badge {
    font-size: 11px;
    font-weight: 700;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    max-width: 520px;
    line-height: 1.5;
}

.section-header-right {
    display: flex;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 12px;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
    background: var(--btn-gradient);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Popular Hobbies Section */
.popular-hobbies-section {
    padding: 60px 0;
    position: relative;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    position: relative;
    z-index: 10;
}

.hobby-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hobby-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    border-radius: 120px 120px 20px 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 255, 255, 0.02);
}

.hobby-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hobby-card-info {
    margin-top: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hobby-card-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}

.hobby-card-title i {
    width: 13px;
    height: 13px;
    color: var(--text-gray);
}

.hobby-card-count {
    font-size: 11px;
    font-weight: 500;
    margin-top: 3px;
}

/* Hover effects with category specific colors */
.hobby-card:hover .hobby-card-image {
    transform: scale(1.06);
}

.hobby-card.photography:hover .hobby-card-image-wrapper {
    border-color: var(--color-photography);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.hobby-card.photography .hobby-card-count {
    color: var(--color-photography);
}

.hobby-card.music:hover .hobby-card-image-wrapper {
    border-color: var(--color-music);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.hobby-card.music .hobby-card-count {
    color: var(--color-music);
}

.hobby-card.sports:hover .hobby-card-image-wrapper {
    border-color: var(--color-sports);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.hobby-card.sports .hobby-card-count {
    color: var(--color-sports);
}

.hobby-card.art:hover .hobby-card-image-wrapper {
    border-color: var(--color-art);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}
.hobby-card.art .hobby-card-count {
    color: var(--color-art);
}

.hobby-card.travel:hover .hobby-card-image-wrapper {
    border-color: var(--color-travel);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}
.hobby-card.travel .hobby-card-count {
    color: var(--color-travel);
}

.hobby-card.gaming:hover .hobby-card-image-wrapper {
    border-color: var(--color-gaming);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}
.hobby-card.gaming .hobby-card-count {
    color: var(--color-gaming);
}

.hobby-card.reading:hover .hobby-card-image-wrapper {
    border-color: var(--color-reading);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}
.hobby-card.reading .hobby-card-count {
    color: var(--color-reading);
}

.hobby-card.cooking:hover .hobby-card-image-wrapper {
    border-color: var(--color-cooking);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}
.hobby-card.cooking .hobby-card-count {
    color: var(--color-cooking);
}


/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.btn-see-how {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-see-how:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

.step-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 24px;
    transition: all 0.3s ease;
}

.step-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.step-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step-card.step-1 .step-number-badge { background: #3b82f6; }
.step-card.step-2 .step-number-badge { background: #8b5cf6; }
.step-card.step-3 .step-number-badge { background: #10b981; }
.step-card.step-4 .step-number-badge { background: #ec4899; }

.step-card-details {
    padding: 20px 20px 0 20px;
    display: flex;
    flex-direction: column;
}

.step-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.02);
    margin-top: -42px; /* Pull icon circle upwards over the image border */
    position: relative;
    z-index: 12;
    transition: all 0.3s ease;
}

.step-card.step-1 .step-icon-circle { background: #ffffff; color: #3b82f6; border-color: rgba(59, 130, 246, 0.3); }
.step-card.step-2 .step-icon-circle { background: #ffffff; color: #8b5cf6; border-color: rgba(139, 92, 246, 0.3); }
.step-card.step-3 .step-icon-circle { background: #ffffff; color: #10b981; border-color: rgba(16, 185, 129, 0.3); }
.step-card.step-4 .step-icon-circle { background: #ffffff; color: #ec4899; border-color: rgba(236, 72, 153, 0.3); }

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 16px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-gray);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 23, 42, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.step-card.step-1:hover { box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08); }
.step-card.step-2:hover { box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08); }
.step-card.step-3:hover { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08); }
.step-card.step-4:hover { box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08); }


/* Additional Responsive Rules */
@media (max-width: 1100px) {
    .hobbies-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .filter-tab {
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .hobbies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 30px;
    }
}

/* Trending Communities Section */
.trending-communities-section {
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.btn-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-all:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

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

.trending-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.trending-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.trending-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 11;
}

.trending-card.photography .trending-badge { background: #3b82f6; }
.trending-card.music .trending-badge { background: #ec4899; }
.trending-card.sports .trending-badge { background: #10b981; }
.trending-card.art .trending-badge { background: #f97316; }
.trending-card.travel .trending-badge { background: #0ea5e9; }
.trending-card.fitness .trending-badge { background: #8b5cf6; }

.trending-overlay-block {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 12;
}

.trending-icon-square {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

/* Category Specific Overlay Icons */
.trending-card.photography .trending-icon-square { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.05); color: #3b82f6; }
.trending-card.music .trending-icon-square { border-color: rgba(236, 72, 153, 0.3); background: rgba(236, 72, 153, 0.05); color: #ec4899; }
.trending-card.sports .trending-icon-square { border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.05); color: #10b981; }
.trending-card.art .trending-icon-square { border-color: rgba(249, 115, 22, 0.3); background: rgba(249, 115, 22, 0.05); color: #f97316; }
.trending-card.travel .trending-icon-square { border-color: rgba(14, 165, 233, 0.3); background: rgba(14, 165, 233, 0.05); color: #0ea5e9; }
.trending-card.fitness .trending-icon-square { border-color: rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.05); color: #8b5cf6; }

.trending-info {
    display: flex;
    flex-direction: column;
}

.trending-hobby-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.trending-member-count {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}

.trending-card.photography .trending-member-count { color: #3b82f6; }
.trending-card.music .trending-member-count { color: #ec4899; }
.trending-card.sports .trending-member-count { color: #10b981; }
.trending-card.art .trending-member-count { color: #f97316; }
.trending-card.travel .trending-member-count { color: #0ea5e9; }
.trending-card.fitness .trending-member-count { color: #8b5cf6; }

.trending-card-footer {
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.02);
    display: flex;
    align-items: center;
}

.trending-card-footer a {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.trending-card.photography .trending-card-footer a { color: #3b82f6; }
.trending-card.music .trending-card-footer a { color: #ec4899; }
.trending-card.sports .trending-card-footer a { color: #10b981; }
.trending-card.art .trending-card-footer a { color: #f97316; }
.trending-card.travel .trending-card-footer a { color: #0ea5e9; }
.trending-card.fitness .trending-card-footer a { color: #8b5cf6; }

.trending-card-footer a:hover {
    opacity: 0.8;
}

.trending-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 23, 42, 0.15);
}

.trending-card:hover .trending-card-image {
    transform: scale(1.05);
}

/* Category Hover Glows */
.trending-card.photography:hover { box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12); }
.trending-card.music:hover { box-shadow: 0 15px 35px rgba(236, 72, 153, 0.12); }
.trending-card.sports:hover { box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12); }
.trending-card.art:hover { box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12); }
.trending-card.travel:hover { box-shadow: 0 15px 35px rgba(14, 165, 233, 0.12); }
.trending-card.fitness:hover { box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12); }


/* Responsive Rules for Trending Communities */
@media (max-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials / Feedback Section */
.feedback-section {
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
}

.feedback-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 10px 10px 30px 10px;
    margin: 0 -10px;
    position: relative;
    z-index: 10;
    scrollbar-width: none; /* Hide for Firefox */
    -webkit-overflow-scrolling: touch;
}

.feedback-grid::-webkit-scrollbar {
    display: none; /* Hide for Chrome, Safari */
}

.feedback-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 0 0 380px;
    max-width: 90vw;
    scroll-snap-align: start;
}

.feedback-quote-mark {
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.feedback-rating {
    display: flex;
    gap: 4px;
    color: #fbbf24; /* Golden Stars */
}

.feedback-rating i {
    width: 15px;
    height: 15px;
}

.feedback-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
    flex-grow: 1;
}

.feedback-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 18px;
}

.feedback-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.feedback-user-info {
    display: flex;
    flex-direction: column;
}

.feedback-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.feedback-user-title {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 2px;
}

/* Card Specific Themes and Glowing Shadows */
.feedback-card.accent-blue:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12);
    transform: translateY(-5px);
}
.feedback-card.accent-blue .feedback-avatar {
    border-color: #3b82f6;
}

.feedback-card.accent-pink:hover {
    border-color: #ec4899;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.12);
    transform: translateY(-5px);
}
.feedback-card.accent-pink .feedback-avatar {
    border-color: #ec4899;
}

.feedback-card.accent-green:hover {
    border-color: #10b981;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12);
    transform: translateY(-5px);
}
.feedback-card.accent-green .feedback-avatar {
    border-color: #10b981;
}

.feedback-card.accent-orange:hover {
    border-color: #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12);
    transform: translateY(-5px);
}
.feedback-card.accent-orange .feedback-avatar {
    border-color: #f97316;
}

.feedback-card.accent-skyblue:hover {
    border-color: #0ea5e9;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.12);
    transform: translateY(-5px);
}
.feedback-card.accent-skyblue .feedback-avatar {
    border-color: #0ea5e9;
}

.feedback-card.accent-purple:hover {
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
    transform: translateY(-5px);
}
.feedback-card.accent-purple .feedback-avatar {
    border-color: #8b5cf6;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 10px 10px 30px 10px;
    margin: 0 -10px;
    position: relative;
    z-index: 10;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.blog-grid::-webkit-scrollbar {
    display: none;
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 350px;
    max-width: 90vw;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.blog-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 11;
}

.blog-card.photography .blog-category-tag { background: #3b82f6; }
.blog-card.music .blog-category-tag { background: #ec4899; }
.blog-card.fitness .blog-category-tag { background: #8b5cf6; }
.blog-card.art .blog-category-tag { background: #f97316; }
.blog-card.cooking .blog-category-tag { background: #eab308; color: #07080a; }

.blog-card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.blog-meta {
    font-size: 11px;
    color: var(--text-gray);
}

.blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.45;
}

.blog-excerpt {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-gray);
}

.blog-link {
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    transition: all 0.3s ease;
}

.blog-card.photography .blog-link { color: #3b82f6; }
.blog-card.music .blog-link { color: #ec4899; }
.blog-card.fitness .blog-link { color: #8b5cf6; }
.blog-card.art .blog-link { color: #f97316; }
.blog-card.cooking .blog-link { color: #eab308; }

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

/* Hover Shadows */
.blog-card.photography:hover { box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12); }
.blog-card.music:hover { box-shadow: 0 15px 35px rgba(236, 72, 153, 0.12); }
.blog-card.fitness:hover { box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12); }
.blog-card.art:hover { box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12); }
.blog-card.cooking:hover { box-shadow: 0 15px 35px rgba(234, 179, 8, 0.12); }

/* Download App Section */
.download-app-section {
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.download-app-card {
    background: linear-gradient(135deg, #eef0fc 0%, #f4f6ff 100%);
    border-radius: 28px;
    display: flex;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    width: 100%;
    align-items: center;
}

.download-app-left {
    flex: 1.15;
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.download-app-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.download-app-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: #090d1a;
    letter-spacing: -0.5px;
}

.download-app-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4f5666;
    max-width: 440px;
}

.download-app-stores {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.store-btn {
    background: #090d1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.store-btn:hover {
    transform: translateY(-2px);
    background: #121626;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-text-lbl {
    font-size: 8px;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.5px;
    line-height: 1;
}

.store-text-main {
    font-size: 13px;
    font-weight: 600;
    margin-top: 3px;
    line-height: 1.1;
}

.download-app-reviews {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.review-avatars {
    display: flex;
}

.review-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef0fc;
    margin-left: -8px;
}

.review-avatar-img:first-child {
    margin-left: 0;
}

.review-rating-details {
    display: flex;
    flex-direction: column;
}

.review-rating-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    margin-bottom: 2px;
}

.review-rating-stars i {
    width: 14px;
    height: 14px;
}

.review-rating-text {
    font-size: 12px;
    font-weight: 600;
    color: #4f5666;
}

.download-app-right {
    flex: 1;
    height: 100%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.mockup-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

/* Download App Responsiveness */
@media (max-width: 900px) {
    .download-app-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-app-left {
        padding: 48px 30px;
        text-align: center;
        align-items: center;
    }
    
    .download-app-desc {
        margin: 0 auto;
    }
    
    .download-app-stores {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .download-app-reviews {
        justify-content: center;
    }
    
    .download-app-right {
        min-height: 280px;
        height: 280px;
    }
    
    .mockup-bg-img {
        object-position: center bottom;
    }
}

/* Force white text on buttons and badges that have colored/gradient backgrounds */
.btn-download,
.btn-explore,
.btn-cta-explore,
.btn-see-how,
.btn-view-all,
.filter-tab.active,
.blog-category-tag,
.trending-badge,
.play-icon-wrapper {
    color: #ffffff !important;
}

#mobile-menu a.active {
    color: var(--text-white) !important;
}

/* Meet The Team Section Styles */
.team-section {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.team-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 10px 10px 30px 10px;
    margin: 40px -10px 0 -10px;
    scrollbar-width: none; /* Hide for Firefox */
    -webkit-overflow-scrolling: touch;
}

.team-grid::-webkit-scrollbar {
    display: none; /* Hide for Chrome, Safari */
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    flex: 0 0 300px;
    max-width: 90vw;
    scroll-snap-align: start;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.team-avatar-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 4px;
    background: var(--btn-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #ffffff;
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar-img {
    transform: scale(1.03);
}

.team-member-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.team-member-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium Footer Styles */
.app-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 0 0;
    margin-left: -40px;
    margin-right: -40px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.brand-col {
    padding-right: 20px;
}

.footer-logo-icon {
    height: 38px;
    width: auto;
    display: inline-block;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-top: 18px;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(15, 23, 42, 0.02);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link i {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-light);
    background: #f8fafc;
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #3b82f6;
}

.bullet {
    font-size: 10px;
    color: var(--border-light);
}

/* Footer Responsiveness */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr repeat(2, 1fr);
        gap: 36px;
    }
    
    .brand-col {
        grid-column: 1 / -1;
        max-width: 500px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


