/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors */
    --electric-blue: #0EA5E9;
    --electric-blue-dark: #0891D1;
    --deep-navy: #0A1628;
    --pure-black: #000000;
    --chrome-white: #FFFFFF;
    --silver-light: #F9FAFB;
    --silver-gray: #E5E7EB;
    --metallic-silver: #9CA3AF;
    --dark-slate: #1E293B;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #0EA5E9, #0891D1);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,22,40,0.9) 100%);
    
    /* Typography */
    --font-headline: 'Orbitron', 'Rajdhani', 'Bebas Neue', 'Impact', sans-serif;
    --font-display: 'Exo 2', 'Saira', 'Roboto Condensed', sans-serif;
    --font-body: 'Inter', 'Poppins', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glow-blue: 0 4px 20px rgba(14, 165, 233, 0.4);
    --glow-blue-hover: 0 6px 30px rgba(14, 165, 233, 0.6);
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--pure-black);
    color: var(--silver-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--metallic-silver);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(0, 0, 0); /* Very dark, almost black but not quite */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    transition: background var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: none;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--duration-normal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: width var(--duration-normal);
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: var(--space-xs);
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--chrome-white);
    transition: all var(--duration-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0); /* Match navbar */
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--duration-normal);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: var(--space-sm);
    border-left: 3px solid transparent;
    transition: all var(--duration-normal);
}

.mobile-menu a:hover {
    color: var(--electric-blue);
    border-left-color: var(--electric-blue);
    padding-left: var(--space-md);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-smooth);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--chrome-white);
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--chrome-white);
    border: 2px solid var(--silver-gray);
}

.btn-secondary:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,23,42,0.7) 0%, rgba(10,22,40,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--space-md);
}

.hero-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--silver-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.4;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-md);
}

.hero-feature-icon {
    font-size: 1.5rem;
}

.hero-feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile Hero Simplification */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        padding-top: 140px; /* Increased from 100px */
        padding-bottom: var(--space-xl);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: var(--space-sm);
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: var(--space-sm);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
        line-height: 1.5;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .hero-cta-group .btn {
        width: 100%;
        padding: 12px 20px; /* Reduced from 14px 24px */
        font-size: 0.85rem; /* Reduced from 0.9rem */
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }
    
    .hero-feature {
        padding: var(--space-xs);
    }
    
    .hero-feature-icon {
        font-size: 1.25rem;
    }
    
    .hero-feature-text {
        font-size: 0.75rem;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--gradient-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(14, 165, 233, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(14, 165, 233, 0.2);
}

.service-card:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.service-badge {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-description {
    color: var(--metallic-silver);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.service-features li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    font-size: 0.9rem;
    color: var(--silver-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
}

.service-price {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--electric-blue);
    margin-bottom: var(--space-sm);
}

.service-note {
    font-size: 0.75rem;
    color: var(--metallic-silver);
    font-style: italic;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color var(--duration-normal);
}

.lightbox-close:hover {
    color: var(--electric-blue);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    line-height: 1;
    color: white;
    background: rgba(14, 165, 233, 0.2);
    border: 2px solid var(--electric-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--electric-blue);
}

.lightbox-prev {
    left: 40px;
    padding-right: 4px; /* Slight adjustment for left arrow */
    padding-bottom: 5px;
}

.lightbox-next {
    right: 40px;
    padding-left: 4px; /* Slight adjustment for right arrow */
    padding-bottom: 5px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: var(--font-display);
    font-size: 1.125rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 20px;
    border-radius: 50px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        right: 20px;
        font-size: 40px;
    }
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background: #0A1628;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--glow-blue);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--metallic-silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== GALLERY ==================== */
.gallery {
    background: var(--gradient-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 3rem;
    color: white;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: #0A1628;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--glow-blue);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--metallic-silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--gradient-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-md);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--electric-blue);
    min-width: 40px;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.contact-details p {
    color: var(--metallic-silver);
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--electric-blue);
    transition: color var(--duration-normal);
}

.contact-details a:hover {
    color: var(--chrome-white);
}

.contact-form {
    background: rgba(15, 23, 42, 0.6);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-sm);
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-sm);
    color: var(--chrome-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--duration-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--electric-blue);
    background: rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
}

.form-group select {
    width: 100%;
    padding: var(--space-sm);
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-sm);
    color: var(--chrome-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--duration-normal);
    cursor: pointer;
}

.form-group select option {
    background: #0A1628; /* Dark background for dropdown options */
    color: var(--chrome-white); /* White text */
    padding: 10px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--electric-blue);
    background: rgba(14, 165, 233, 0.1);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0F172A;
    padding: var(--space-2xl) 0 var(--space-md);
    border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--electric-blue);
}

.footer-section p,
.footer-section a {
    color: var(--metallic-silver);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    display: flex;
    transition: color var(--duration-normal);
}

.footer-section a:hover {
    color: var(--chrome-white);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 50%;
    color: var(--electric-blue);
    transition: all var(--duration-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--electric-blue);
    color: white;
    transform: translateY(-2px);
}


.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    color: var(--metallic-silver);
    font-size: 0.875rem;
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

/* Gallery view more button */
.gallery-view-more {
    text-align: center;
    margin-top: var(--space-xl);
    display: none; /* Hidden by default */
}

/* Mobile: Hide extra gallery items initially */
@media (max-width: 767px) {
    .gallery-item-hidden {
        display: none;
    }
    
    .gallery-view-more {
        display: block; /* Show button on mobile */
    }
    
    .gallery-view-more.hidden {
        display: none; /* Hide button after clicking */
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}

/* Desktop: Show all images, hide button */
@media (min-width: 768px) {
    .gallery-item-hidden {
        display: block !important;
    }
    
    .gallery-view-more {
        display: none !important;
    }
}