/* 
    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-color: var(--bg-dark);
}

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

.campaign-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.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;
    animation: pulse 2s ease-in-out infinite;
}

@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-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.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;
}

.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.3);
}
[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: float 3s ease-in-out infinite;
    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-color: var(--bg-card);
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.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-color: var(--bg-dark);
}

.insta-container {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.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;
}

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

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px 40px;
    position: relative;
    transition: var(--transition);
}

.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-color: var(--bg-light);
    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-color: var(--bg-card);
    overflow: hidden;
    position: relative;
}
.influencers-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 150px; height: 100%;
    background: linear-gradient(to right, var(--bg-card), transparent);
    z-index: 2;
}
.influencers-section::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 150px; height: 100%;
    background: linear-gradient(to left, var(--bg-card), transparent);
    z-index: 2;
}

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

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

.influencer-marquee.reverse .marquee-content,
.influencer-marquee.reverse .marquee-track {
    animation: marquee-reverse 40s 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.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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 15px rgba(0,0,0,0.1);
}
[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;
}

.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-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}
[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-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

textarea.form-control {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 80px 0 30px 0;
    color: #ccc;
}
[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; }
}
