/* 
    Project: EN20 Spor ve Yaşam Merkezi
    Theme: Premium Dark & Orange (with Light Mode Support)
    Author: Peyravi.com.tr Web Design
*/

:root {
    --primary-color: #FF6A00;
    /* Energetic Orange */
    --primary-dark: #CC5500;
    --primary-glow: rgba(255, 106, 0, 0.4);

    /* Dark Theme (Default) */
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --bg-light: #1A1A1A;
    --text-main: #F2F2F2;
    --text-muted: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(10, 10, 10, 0.95);
    --nav-text: #F2F2F2;
    --logo-num: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-dark: #F8F9FA;
    --bg-card: #FFFFFF;
    --bg-light: #F0F2F5;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --border-color: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.98);
    --nav-text: #1A1A1A;
    --logo-num: #1A1A1A;
}

/* Light mode explicit overrides for stubborn elements */
[data-theme="light"] body {
    background-color: #F8F9FA;
    color: #1A1A1A;
}

[data-theme="light"] .stats-section,
[data-theme="light"] .services-section,
[data-theme="light"] .gallery-section,
[data-theme="light"] .influencers-section {
    background-color: #FFFFFF;
}

[data-theme="light"] .service-card,
[data-theme="light"] .campaign-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .influencer-card,
[data-theme="light"] .contact-form-panel,
[data-theme="light"] .insta-container {
    background-color: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .form-control {
    background-color: #F0F2F5;
    color: #1A1A1A;
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .footer {
    background-color: #111 !important;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container-fluid {
    width: 100%;
    padding: 0;
}

.highlight {
    color: var(--primary-color);
}

.sub-heading {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-header {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.text-center .sub-heading {
    padding-left: 0;
}

.text-center .sub-heading::before {
    display: none;
}

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

.mt-5 {
    margin-top: 3rem;
}

/* CSS Logo */
.css-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    line-height: 1;
}

.css-logo .en {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    /* Orange */
    letter-spacing: -1px;
}

.css-logo .num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-num);
    /* White in dark, Black in light */
    margin-left: 2px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 25px var(--primary-glow);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--nav-bg);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.nav-menu ul {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu a {
    font-size: 0.82rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
    color: var(--nav-text);
}

.header:not(.scrolled) .nav-menu a {
    color: #fff;
    /* Always white on hero before scroll */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.theme-toggle {
    background: none;
    border: none;
    color: var(--nav-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.header:not(.scrolled) .theme-toggle {
    color: #fff;
}

.theme-toggle:hover {
    color: var(--primary-color) !important;
}

.lang-toggle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nav-text);
}

.header:not(.scrolled) .lang-toggle,
.header:not(.scrolled) .lang-toggle a {
    color: #fff;
}

.lang-toggle a {
    color: var(--nav-text);
    transition: var(--transition);
}

.lang-toggle a.active,
.lang-toggle a:hover {
    color: var(--primary-color) !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section (Video + Fallback Background) */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Map Container */
.map-container {
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    border: 0;
}

/* Instagram Feed */
.insta-feed-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

/* Campaigns Section */
.campaigns-section {
    padding: 100px 0;
    background: transparent;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.campaign-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

[data-theme="light"] .campaign-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.08);
}

.campaign-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.campaign-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.15);
}

.campaign-card:hover::after {
    transform: scaleX(1);
}

.campaign-card.featured {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-card));
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.campaign-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.campaign-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.campaign-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.campaign-timer {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    min-height: 28px;
}

@media (max-width: 1024px) {
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-inner .hero-content h1 {
        font-size: 2.8rem;
    }
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    position: relative;
}

.hero-content .subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background: transparent;
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.stat-info h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: transparent;
}

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

.about-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .img-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.8s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--bg-card);
    padding: 20px 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: none;
    z-index: 10;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.experience-badge .text {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
}

.about-content h2 {
    font-size: 2.8rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.about-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .service-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Fixed hover effect so it doesn't clip */
.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Instagram Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: transparent;
}

.insta-container {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .insta-container {
    background: rgba(255, 255, 255, 0.8);
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.insta-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.insta-header h3 i {
    color: #E1306C;
    font-size: 2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 50px 40px;
    position: relative;
    transition: var(--transition);
}

[data-theme="light"] .pricing-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    background: rgba(255, 106, 0, 0.08);
    backdrop-filter: blur(20px);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 40px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-header .price span {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.pricing-body ul {
    margin-bottom: 40px;
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.pricing-body li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-body li i {
    color: var(--primary-color);
}

.pricing-body li.disabled i {
    color: var(--text-muted);
}

/* Premium Influencers Section */
.influencers-section {
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.influencers-section::before,
.influencers-section::after {
    display: none;
}

.influencer-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    display: flex;
}

.marquee-content,
.marquee-track {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.influencer-marquee.reverse .marquee-content,
.influencer-marquee.reverse .marquee-track {
    animation: marquee-reverse 28s linear infinite;
}

.influencer-marquee:hover .marquee-content,
.influencer-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Premium Glassmorphism Cards */
.influencer-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 15px 30px 15px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 280px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .influencer-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.influencer-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: translateY(-5px);
    background: rgba(255, 106, 0, 0.05);
}

.inf-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    /* Force all avatars same appearance — no bright overrides */
    filter: none !important;
    opacity: 1 !important;
}

.inf-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.inf-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.inf-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}


/* Contact Section */
.contact-section {
    padding: 100px 0 0 0;
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-details .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-muted);
}

.contact-details p a {
    color: var(--text-muted);
}

.contact-details p a:hover {
    color: var(--primary-color);
}

/* Light mode: phone number and contact links must be visible */
[data-theme="light"] .contact-details li,
[data-theme="light"] .contact-details p,
[data-theme="light"] .contact-details span {
    color: #444;
}

[data-theme="light"] .contact-details h4 {
    color: #111;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

[data-theme="light"] .social-icon {
    color: #333;
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.04);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(10deg);
}

.contact-form-panel {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .contact-form-panel {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact-form-panel {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}

[data-theme="light"] .form-control {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1A1A1A;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow), 0 4px 20px rgba(255, 106, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
}

textarea.form-control {
    resize: vertical;
}

/* Footer — Seamless Integration */
.footer {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0 30px 0;
    color: #ccc;
    position: relative;
    z-index: 2;
}

[data-theme="light"] .footer {
    background-color: #111;
    /* Keep footer dark always for premium look */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about p {
    color: #999;
    margin: 20px 0;
}

/* Footer social links — always visible on dark background */
.footer .social-links a {
    color: #aaa;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #999;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer contact info — phone, address, hours always visible */
.footer-contact .contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
}

.footer-contact .contact-info li a {
    color: #bbb;
}

.footer-contact .contact-info li a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-info li span {
    color: #999;
}

.footer-contact .contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
    }

    .nav-actions .join-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--nav-bg);
        padding: 100px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu ul {
        flex-direction: column;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .services-grid,
    .pricing-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM IMMERSIVE ENHANCEMENTS — CINEMATIC SECTION STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── Section Transition Gradients ── */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

/* ── Premium Section Headers ── */
.section-header h2 {
    background-image: linear-gradient(to right, var(--primary-color), transparent);
    background-position: bottom left;
    background-size: 0% 3px;
    background-repeat: no-repeat;
    padding-bottom: 12px;
    transition: background-size 1.2s ease;
}

.section-header p {
    max-width: 600px;
    margin: 15px auto 0;
}

/* ── Stats Section Premium ── */
.stat-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover {
    border-color: rgba(255, 106, 0, 0.2);
    background: rgba(255, 106, 0, 0.08);
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.1);
}

[data-theme="light"] .stat-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
}

[data-theme="light"] .stat-item:hover {
    background: rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.2);
}

/* ── About Section Premium ── */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.img-wrapper:hover::after {
    opacity: 1;
}

/* ── Service Cards Premium ── */
.service-card {
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.service-card .service-icon {
    position: relative;
}

.service-card .service-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon::after {
    transform: translate(-50%, -50%) scale(3);
}

/* ── Campaign Cards Premium ── */
.campaign-card {
    backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.campaign-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.02) 0%, transparent 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.campaign-timer {
    background: rgba(255, 106, 0, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 106, 0, 0.15);
}

/* ── Pricing Cards Premium ── */
.pricing-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 106, 0, 0.03), transparent 30%);
    animation: pricingShine 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

@keyframes pricingShine {
    to { transform: rotate(360deg); }
}

.pricing-card.popular {
    border-width: 2px;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.15), 0 15px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular .popular-badge {
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
}

.pricing-card .pricing-header h3 {
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    color: var(--primary-color);
}

/* ── Influencer Cards Premium ── */
.influencer-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.influencer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.influencer-card:hover::before {
    left: 100%;
}

/* ── Contact Section Premium ── */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-panel {
    position: relative;
    overflow: hidden;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.8s ease;
}

.contact-form-panel:hover::before {
    transform: scaleX(1);
}

.form-control {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* ── Map Container Premium ── */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.5s ease;
}

.map-container:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 106, 0, 0.2);
}

[data-theme="light"] .map-container {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* ── Footer Premium ── */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 0, 0.5) 50%, transparent 100%);
}

.footer h3::after {
    transition: width 0.5s ease;
}

.footer-links ul li a {
    position: relative;
    display: inline-block;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

/* ── Global Micro-Interactions ── */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px var(--primary-glow);
    transform: translateY(-2px);
}

.social-icon {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Animated Background Noise Texture ── */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

[data-theme="light"] body::after {
    opacity: 0.06;
}

/* ── Section Spacing Enhancement ── */
.stats-section,
.about-section,
.services-section,
.gallery-section,
.campaigns-section,
.pricing-section,
.influencers-section,
.contact-section {
    position: relative;
    z-index: 1;
}

/* ── Premium Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF6A00, #CC5500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff8c00, #FF6A00);
}

[data-theme="light"]::-webkit-scrollbar-track {
    background: #F0F2F5;
}

/* ── Selection Color ── */
::selection {
    background: rgba(255, 106, 0, 0.3);
    color: #fff;
}

[data-theme="light"] ::selection {
    background: rgba(255, 106, 0, 0.2);
    color: #1A1A1A;
}

/* ══════════════════════════════════════════════════════
   LIGHT MODE — Hero & Canvas Enhancements
   ══════════════════════════════════════════════════════ */
[data-theme="light"] .hero-section .cine-subtitle,
[data-theme="light"] .hero-section .cine-tagline {
    color: #222;
    text-shadow: 0 1px 8px rgba(255,255,255,0.8);
}
[data-theme="light"] .hero-section .cine-title {
    color: #111;
    text-shadow: 0 2px 12px rgba(255,255,255,0.9);
}
[data-theme="light"] .hero-section .cine-mega {
    color: #FF6A00;
    text-shadow: 0 2px 20px rgba(255,106,0,0.2);
}
[data-theme="light"] .seamless-canvas::after {
    background: radial-gradient(ellipse at 50% 50%,
        rgba(248,249,250,0.2) 0%,
        rgba(var(--vig-r,248), var(--vig-g,249), var(--vig-b,250), 0.6) 100%);
}
[data-theme="light"] .section-header h2,
[data-theme="light"] .section-title h2 {
    color: #111;
}
[data-theme="light"] .sub-heading {
    color: #FF6A00;
}
[data-theme="light"] .about-section,
[data-theme="light"] .campaigns-section,
[data-theme="light"] .pricing-section,
[data-theme="light"] .contact-section {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
}
[data-theme="light"] .service-card:hover,
[data-theme="light"] .campaign-card:hover,
[data-theme="light"] .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
[data-theme="light"] .pricing-card.popular {
    border-color: #FF6A00;
    box-shadow: 0 8px 30px rgba(255,106,0,0.15);
}
[data-theme="light"] .stat-card {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .contact-info-panel {
    color: #333;
}
[data-theme="light"] .contact-details li .icon {
    background: rgba(255,106,0,0.1);
    color: #FF6A00;
}

/* ══════════════════════════════════════════════════════
   PERFORMANCE — Off-screen section lazy rendering
   ══════════════════════════════════════════════════════ */
.about-section,
.services-section,
.gallery-section,
.campaigns-section,
.pricing-section,
.influencers-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Tablet (max 1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .cine-title { font-size: clamp(2.5rem, 6vw, 5rem) !important; }
    .cine-mega { font-size: clamp(3rem, 8vw, 8rem) !important; }
    .cine-word { font-size: clamp(1.5rem, 4vw, 3rem) !important; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile (max 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        z-index: 999;
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 0; }
    .nav-menu ul li a { display: block; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--border-color); }
    .mobile-menu-btn { display: flex !important; }
    .join-btn { display: none; }
    
    /* Hero */
    .hero-section { min-height: 100svh; }
    .cine-panel { padding: 0 20px; }
    .cine-subtitle { font-size: 0.75rem !important; letter-spacing: 4px !important; }
    .cine-title { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
    .cine-tagline { font-size: 0.7rem !important; letter-spacing: 4px !important; }
    .cine-mega { font-size: clamp(2.5rem, 12vw, 5rem) !important; }
    .cine-word { font-size: clamp(1.2rem, 5vw, 2rem) !important; }
    .cine-desc { font-size: 0.95rem !important; padding: 0 10px; }
    .bg-text-left, .bg-text-right { font-size: 15vw !important; }
    
    /* Sections */
    section { padding: 60px 0 !important; }
    .section-header h2 { font-size: 1.6rem; }
    .sub-heading { font-size: 0.7rem; }
    
    /* Grids */
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-features-grid { grid-template-columns: 1fr; }
    .campaigns-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    
    /* Contact */
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-about { text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    
    /* Influencer marquee */
    .influencer-card { min-width: 220px; padding: 12px 20px 12px 12px; }
    .inf-avatar { width: 45px; height: 45px; font-size: 1.1rem; }
    
    /* Map */
    .map-container iframe { height: 280px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (max 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .cine-title { font-size: clamp(1.8rem, 10vw, 2.8rem) !important; }
    .cine-mega { font-size: clamp(2rem, 14vw, 4rem) !important; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-card { padding: 16px 12px; }
    .stat-number { font-size: 1.8rem; }
    .pricing-card { padding: 25px 20px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .section-header h2 { font-size: 1.3rem; }
    .influencer-card { min-width: 200px; gap: 12px; }
    .campaign-card { padding: 20px; }
}