/* ============================================
   NELLY SOCIAL IMPACT — LUXURY 2026
   Clean, Refined, No Pricing, Fully Luxurious
   Mobile + Desktop Optimized
   ============================================ */

:root {
    --royal-navy: #0F1B33;
    --regal-gold: #D4AF37;
    --heritage-teal: #2D6F6A;
    --ivory: #F7F5EF;
    --charcoal: #28282B;
    --deep-navy: #080f1f;
    --soft-gold: #F4E4BC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ivory);
    background: var(--deep-navy);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION — DESKTOP + MOBILE
   ============================================ */
.navbar {
    background: rgba(15, 27, 51, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--regal-gold);
    font-size: 1.4rem;
    font-weight: 700;
}

/* Desktop nav */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--regal-gold);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--regal-gold);
    transition: all 0.3s ease;
}

/* Mobile nav */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .logo {
        height: 38px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 27, 51, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   HERO SECTION — DESKTOP + MOBILE
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--deep-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(45, 111, 106, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-photo {
    position: absolute;
    right: 5%;
    top: 15%;
    max-width: 350px;
    width: 30%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 3px solid var(--regal-gold);
    z-index: 2;
    opacity: 0.95;
    transition: all 0.4s ease;
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--regal-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile hero */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        flex-direction: column;
    }
    
    .hero-photo {
        position: relative;
        right: auto;
        top: auto;
        max-width: 250px;
        width: 80%;
        margin: 30px auto 0;
        display: block;
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(45, 111, 106, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-photo {
    position: absolute;
    right: 8%;
    top: 20%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 3px solid var(--regal-gold);
    z-index: 2;
    opacity: 0.95;
    transition: all 0.4s ease;
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--regal-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--regal-gold);
    color: var(--royal-navy);
    border-color: var(--regal-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--regal-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
    background: var(--ivory);
    color: var(--royal-navy);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1rem;
}

/* ============================================
   SECTIONS — DARK LUXURY BACKGROUND
   ============================================ */
.section-dark {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--royal-navy) 0%, var(--deep-navy) 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(45, 111, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--regal-gold);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: -30px auto 60px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Gold divider */
.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--regal-gold), transparent);
    margin: 30px auto;
    position: relative;
}

.gold-divider::before,
.gold-divider::after {
    content: '◆';
    position: absolute;
    top: -8px;
    color: var(--regal-gold);
    font-size: 0.8rem;
}

.gold-divider::before { left: -15px; }
.gold-divider::after { right: -15px; }

/* ============================================
   SERVICE CARDS — LUXURY GLASS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--regal-gold), var(--soft-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--regal-gold), #B8960C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--royal-navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-gold {
    color: var(--regal-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-gold:hover {
    color: var(--heritage-teal);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--regal-gold), #B8960C);
    color: var(--royal-navy);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.about-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--regal-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 500;
}

.about-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid var(--regal-gold);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: var(--regal-gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stars {
    color: var(--regal-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.testimonial-author strong {
    display: block;
    color: var(--royal-navy);
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   BRAND SHOWCASE
   ============================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.showcase-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: var(--regal-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.showcase-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.showcase-caption {
    color: var(--regal-gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--regal-gold);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    color: var(--regal-gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   TRUSTED BY
   ============================================ */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.logo-placeholder {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1rem;
    color: var(--ivory);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: var(--regal-gold);
    background: rgba(255,255,255,0.12);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--heritage-teal) 0%, var(--royal-navy) 100%);
    text-align: center;
    position: relative;
}

.newsletter-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--ivory);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    border-color: var(--regal-gold);
    background: rgba(255,255,255,0.15);
}

.btn-gold {
    background: var(--regal-gold);
    color: var(--royal-navy);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--soft-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.social-proof {
    color: var(--regal-gold);
    margin-top: 20px;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--deep-navy) 0%, #050a14 100%);
    padding: 80px 0 30px;
    border-top: 3px solid var(--regal-gold);
    position: relative;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--regal-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer h4 {
    color: var(--regal-gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--regal-gold);
}

.footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

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

.social-link {
    background: rgba(212, 175, 55, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--regal-gold);
    color: var(--royal-navy) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE — COMPREHENSIVE MOBILE + DESKTOP
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-photo {
        max-width: 280px;
        right: 3%;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
        flex-direction: column;
    }
    
    .hero-photo {
        position: relative;
        right: auto;
        top: auto;
        max-width: 220px;
        width: 70%;
        margin: 25px auto 0;
        display: block;
        order: 2;
    }
    
    .hero-content {
        order: 1;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Sections */
    .section-dark {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    .about-badge {
        font-size: 0.75rem;
        padding: 10px 18px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Showcase */
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .showcase-img {
        height: 140px;
    }
    
    /* Trusted By */
    .logo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .logo-placeholder {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input {
        min-width: unset;
        width: 100%;
    }
    
    .newsletter-text {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer h4 {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Buttons */
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 16px 30px;
    }
    
    .btn-gold {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .logo {
        height: 35px;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }
    
    .hero-photo {
        max-width: 420px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--regal-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--soft-gold);
}

::selection {
    background: var(--regal-gold);
    color: var(--royal-navy);
}
