/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #27272a 0%, #18181b 50%, #09090b 100%);
    line-height: 1.6;
    color: #E5E7EB;
}

.hidden {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #E5E7EB;
}

p {
    font-family: 'Roboto', sans-serif;
}

/* Add glow effect to green text in headings */
h1 .highlight-green,
h2 .highlight-green,
h3 .highlight-green,
h4 .highlight-green,
h5 .highlight-green,
h6 .highlight-green {
    text-shadow: 0 0 20px rgba(95, 239, 167, 0.5);
}

/* Color variables */
:root {
    --green: #5FEFA7;
    --orange: #E6AA36;
    --dark: #030303;
    --gray-light: #F7F8F9;
    --gray-medium: #6B7280;
    --gray-dark: #374151;
    --white: #ffffff;
    --card-bg: #F9FAFB;
}

/* Utility classes */
.highlight-green {
    color: var(--green);
}

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

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

/* Header styles */
.header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 125px;
}

/* Header logo section */
.logo-section {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo {
    width: 120px;
    height: 115px;
    background: none;  /* Changed from gradient to none */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;    
    margin-bottom: 10px;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(95, 239, 167, 0.5);
}

.logo-text {
    margin-left: 12px;
    color: #9CA3AF;
    font-style: italic;
    font-size: 14px;
    line-height: 1.2;
    align-self: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scale(1);
}

/* Fallback text (shows if image fails to load) */
.logo-fallback {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 24px;
    display: none;
}

/* Show fallback if image fails */
.logo img:not([src]) + .logo-fallback,
.logo img[src=""] + .logo-fallback {
    display: block;
}

/* Desktop Navigation */
.nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    color: #E5E7EB;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--green);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.mobile-menu-toggle:hover {
    background: rgba(243, 244, 246, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #E5E7EB;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}


.mobile-menu-overlay:not(.hidden) .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-logo-fallback {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 16px;
    background: var(--green);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #E5E7EB;
    transition: background 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #E5E7EB;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: rgba(95, 239, 167, 0.1);
    color: var(--green);
    padding-left: 2rem;
}

.mobile-nav-link.active {
    background: var(--green);
    color: white;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-tagline {
    color: #9CA3AF;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Mobile header adjustments */
@media (max-width: 767px) {
    .header-content {
        height: 70px;
        padding: 0 1rem;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-text {
        display: none;
    }
}

/* Social Links */
.social-link i {
    color: white !important;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    background: #000000;
    color: white !important;
    border: 2px solid #000000;
}

.social-link:hover {
    background: #5FEFA7;
    border-color: #5FEFA7;
    color: white;
    transform: scale(1.1);
}

.social-link.instagram,
.social-link.threads,
.social-link.email {
    background: #000000 !important;
}

.social-link.threads {
    font-weight: bold;
    font-size: 20px;
    font-family: Arial, sans-serif;
}

/* HERO SECTION - CONSOLIDATED */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }
}

.hero-left {
    color: white;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight-green {
    text-shadow: 0 0 20px rgba(95, 239, 167, 0.5);
}

.hero-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #E5E7EB;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--green);
    color: var(--dark);
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 239, 167, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(95, 239, 167, 0.5);
    background: #4ade80;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.value-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.2),
        0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 6px solid transparent;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0,0,0,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 5px 10px rgba(0,0,0,0.15);
}

.value-card.green {
    border-left-color: var(--green);
}

.value-card.orange {
    border-left-color: var(--orange);
}

.value-card.green:hover {
    background: linear-gradient(135deg, #f0fdf9 0%, #f8f9fa 100%);
    border-left-width: 8px;
}

.value-card.orange:hover {
    background: linear-gradient(135deg, #fffbf0 0%, #f8f9fa 100%);
    border-left-width: 8px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.value-card.green .card-icon {
    background: var(--green);
    color: var(--dark);
    box-shadow: 
        0 8px 20px rgba(95, 239, 167, 0.4),
        0 0 30px rgba(95, 239, 167, 0.2),
        inset 0 -2px 10px rgba(255,255,255,0.3);
}

.value-card.orange .card-icon {
    background: var(--orange);
    color: var(--dark);
    box-shadow: 
        0 8px 20px rgba(230, 170, 54, 0.4),
        0 0 30px rgba(230, 170, 54, 0.2),
        inset 0 -2px 10px rgba(255,255,255,0.3);
}

.value-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card.green:hover .card-icon {
    box-shadow: 
        0 12px 30px rgba(95, 239, 167, 0.6),
        0 0 50px rgba(95, 239, 167, 0.3),
        inset 0 -2px 10px rgba(255,255,255,0.3);
}

.value-card.orange:hover .card-icon {
    box-shadow: 
        0 12px 30px rgba(230, 170, 54, 0.6),
        0 0 50px rgba(230, 170, 54, 0.3),
        inset 0 -2px 10px rgba(255,255,255,0.3);
}

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.5;
}

/* Hero mobile adjustments */
@media (max-width: 767px) {
    .hero-content {
        padding: 5rem 1.5rem 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile value cards */
@media (max-width: 639px) {
    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
}

/* Tablet adjustments */
@media (min-width: 640px) and (max-width: 767px) {
    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.75rem 1.25rem;
    }
}

/* Small mobile phones */
@media (max-width: 380px) {
    .hero-content {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}



/* Services Page  */
/* Page Header - Simple title section for non-homepage pages */
.page-header {
    padding: 2rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    color: #E5E7EB;
}

.page-header p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 1rem;
    }
}

/* Filter Section */
.filter-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1.5rem;
    background: transparent;
    color: #9CA3AF;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.filter-btn:hover {
    color: #E5E7EB;
}

.filter-btn.active {
    background: var(--green);
    color: white;
}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Buttons */
.cta-button {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--orange);
    color: var(--dark);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #F8F991;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button.green {
    background: var(--green);
    color: var(--dark);
}

.cta-button.green:hover {
    background: #4ade80;
}

.cta-button.green-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.cta-button.green-outline:hover {
    background: var(--green);
    color: var(--dark);
}

.cta-button.orange-outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    transition: all 0.3s ease;
}

.cta-button.orange-outline:hover {
    background: #F8F991;
    color: var(--dark);
    border-color: #F8F991;
}

/* Quiz CTA */
.quiz-cta {
    background: var(--card-bg);
    border: 1px solid #D1D5DB;
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
}

.quiz-cta:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Section styles */
.section {
    padding: 4rem 1rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #E5E7EB;
}

.section-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--green);
    margin: 0 auto 3rem;
}

/* About section */
.about-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.credential-tag {
    background: var(--orange);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.qualifications {
    list-style: none;
}

.qualifications li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
}

.qualifications li::before {
    content: "★";
    color: var(--green);
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.about-image {
    width: 100%;
    background: #EBEBEC;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
    object-position: center;
}

/* Responsive adjustments for about section */
@media (min-width: 768px) {
    .about-image {
        min-height: 500px;
        max-height: 600px;
    }
}

@media (max-width: 767px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        min-height: 400px;
        max-height: 500px;
        order: -1; /* Put image above text on mobile */
    }
}

/* For very large screens */
@media (min-width: 1200px) {
    .about-image {
        min-height: 550px;
        max-height: 650px;
    }
}

.placeholder {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

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

.card {
    background: #F9FAFB;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--green), #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.card-image.bodybuilding {
    background: linear-gradient(135deg, #1f2937, var(--dark));
    color: var(--orange);
}

.card-content {
    padding: 2rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.25rem 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.card-features li::before {
    content: "•";
    color: var(--green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.card-button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.card-button.green {
    background: var(--green);
    color: var(--dark);
}

.card-button.green:hover {
    background: #4ade80;
}

.card-button.orange {
    background: var(--orange);
    color: var(--dark);
}

.card-button.orange:hover {
    background: #F8F991;
}

/* Testimonials */
.testimonials {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 1rem;
}

.testimonials .container {
    position: relative;
    padding: 0 4rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
    border-radius: 1rem;
}

.testimonials-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 2;
}

.testimonial {
    background: #F9FAFB;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin: 0 1rem;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #EBEBEC;
    margin-right: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-placeholder {
    color: var(--gray-medium);
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.testimonial-quote {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--orange);
    font-size: 1.2rem;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonials-nav:hover {
    background: #F9FAFB;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-nav.prev {
    left: -50px;
}

.testimonials-nav.next {
    right: -50px;
}

.testimonials-nav span {
    font-size: 24px;
    font-weight: bold;
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gray-medium);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator:hover {
    border-color: var(--green);
    transform: scale(1.2);
}

.testimonial-indicator.active {
    background: var(--green);
    border-color: var(--green);
}

@media (max-width: 768px) {
    .testimonials .container {
        padding: 0 3rem;
    }
    
    .testimonials-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-nav span {
        font-size: 20px;
    }
    
    .testimonials-nav.prev {
        left: -30px;
    }
    
    .testimonials-nav.next {
        right: -30px;
    }
    
    .testimonial {
        margin: 0 0.5rem;
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .testimonial-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials .container {
        padding: 0 2rem;
    }
    
    .testimonials-nav.prev {
        left: -15px;
    }
    
    .testimonials-nav.next {
        right: -15px;
    }
    
    .testimonial {
        margin: 0;
        min-height: 320px;
    }
}

/* Stats section */
.stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.stat {
    padding: 1rem;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--green);
    font-weight: bold;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 1rem;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: #F9FAFB;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.cta-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.cta-icon i {
    color: white;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cta-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.cta-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .cta-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Quiz modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal {
    background: #F9FAFB;
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-scrollable {
    overflow-y: auto;
    padding: 2rem;
    flex: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F3F4F6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: #E5E7EB;
}


.modal h3 {
    color: var(--dark) !important;
}

#quiz-progress {
    margin-right: 2rem; /* Give space for the X button */
}

.modal-close {
    z-index: 10; /* Ensure X is on top */
}

/* Better spacing for quiz modal header */
#quiz-content > div:first-child {
    padding-right: 2.5rem; /* Space for close button */
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--green);
    transition: width 0.3s;
}

.quiz-question {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Roboto', sans-serif;
}

.quiz-option:hover {
    border-color: var(--green);
    background: #F0FDF9;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #EBEBEC;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-logo {
    width: 90px;
    height:90px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
   /* border-radius: 50%;*/
    overflow: hidden;
    position: relative;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer-logo-fallback {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 18px;
    display: none;
    background: var(--green);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.footer-logo img:not([src]) + .footer-logo-fallback,
.footer-logo img[src=""] + .footer-logo-fallback {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }

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

@media (max-width: 480px) {
    .header-content {
        padding: 0 0.5rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    


    /* Gallery section styles */
.gallery-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: #EBEBEC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* Service Modal Styles */
.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.modal-service-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.modal-service-price {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.modal-service-price.lifestyle {
    color: var(--green);
}

.modal-service-price.bodybuilding {
    color: var(--orange);
}

.modal-service-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

.modal-content {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-section p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    background: #F9FAFB;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--green);
    color: #374151;
}

.info-item strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.25rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.4rem 0;
    color: var(--gray-medium);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.features-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.modal:has(.modal-service-price.bodybuilding) .features-list li::before {
    color: var(--orange);
}

.modal:has(.modal-service-price.bodybuilding) .info-item {
    border-left: 3px solid var(--orange);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .modal-actions {
        flex-direction: row;
    }
}

.action-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1rem;
}

.action-btn.primary.lifestyle {
    background: var(--green);
    color: var(--dark);
}

.action-btn.primary.lifestyle:hover {
    background: #4ade80;
}

.action-btn.primary.bodybuilding {
    background: var(--orange);
    color: var(--dark);
}

.action-btn.primary.bodybuilding:hover {
    background: #F8F991;
}

.action-btn.secondary.lifestyle {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.action-btn.secondary.lifestyle:hover {
    background: var(--green);
    color: var(--dark);
}

.action-btn.secondary.bodybuilding {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.action-btn.secondary.bodybuilding:hover {
    background: var(--orange);
    color: var(--dark);
}


/* Fix testimonial overflow on mobile */
@media (max-width: 768px) {
    .testimonial {
        height: auto !important;
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .testimonials-container {
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        height: auto !important;
        min-height: 320px;
        padding: 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}


/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */

/* Updated Services Grid - Desktop Grid, Mobile List */
.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
}

/* Large desktop: 3 columns */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Medium desktop: 2 columns */
@media (min-width: 769px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablet: 2 columns */
@media (min-width: 640px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: Single column (list view) */
@media (max-width: 639px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: #F9FAFB;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.service-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-image.lifestyle-bg {
    background: linear-gradient(135deg, rgba(95, 239, 167, 0.15) 0%, rgba(95, 239, 167, 0.05) 100%);
}

.service-image.bodybuilding-bg {
    background: linear-gradient(135deg, rgba(230, 170, 54, 0.15) 0%, rgba(230, 170, 54, 0.05) 100%);
}

.service-image span {
    display: none;
}

.service-icon {
    position: relative;
    top: auto;
    left: auto;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.service-icon.lifestyle {
    background: var(--green);
    color: var(--dark);
}

.service-icon.bodybuilding {
    background: var(--orange);
    color: var(--dark);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-level {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
}

.service-level.lifestyle {
    background: var(--green);
    color: var(--dark);
}

.service-level.bodybuilding {
    background: var(--orange);
    color: var(--dark);
}

.service-price {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price.lifestyle {
    color: var(--green);
}

.service-price.bodybuilding {
    color: var(--orange);
}

.service-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-description {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}

.view-details-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.view-details-btn.lifestyle {
    background: var(--green);
    color: var(--dark);
}

.view-details-btn.lifestyle:hover {
    background: #4ade80;
}

.view-details-btn.bodybuilding {
    background: var(--orange);
    color: var(--dark);
}

.view-details-btn.bodybuilding:hover {
    background: #F8F991;
}

/* CTA Buttons on Services Page */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

/* Process Steps Timeline */
.process-steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical line in the center */
.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Left-aligned steps */
.process-step.left {
    justify-content: flex-start;
    padding-right: 50%;
}

.process-step.left .step-number {
    order: 1;
}

.process-step.left .step-content {
    order: 2;
    text-align: left;
    padding-left: 1rem;
}

/* Right-aligned steps */
.process-step.right {
    justify-content: flex-end;
    padding-left: 50%;
}

.process-step.right .step-number {
    order: 2;
}

.process-step.right .step-content {
    order: 1;
    text-align: right;
    padding-right: 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
    z-index: 2;
}

.step-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #E5E7EB;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsive for process steps */
@media (max-width: 768px) {
    .process-steps::before {
        left: 40px;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    
    .process-step.left,
    .process-step.right {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
    }

    .process-step.left .step-content,
    .process-step.right .step-content {
        text-align: left;
        padding-left: 1rem;
        padding-right: 0;
    }

    .process-step.left .step-number,
    .process-step.right .step-number {
        order: 1;
    }

    .process-step.left .step-content,
    .process-step.right .step-content {
        order: 2;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}

/* Success Message Styles */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .success-actions {
        flex-direction: row;
    }
}

/* ========================================
   FAQ PAGE SPECIFIC STYLES
   ======================================== */

/* FAQ specific styles */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(95, 239, 167, 0.3);
}

.faq-item.open {
    border-color: var(--green);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    color: #E5E7EB;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--green);
    font-weight: bold;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 239, 167, 0.1);
    border-radius: 50%;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #D1D5DB;
    line-height: 1.7;
    margin: 0;
}

input#faq-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}





















}