:root {
    --primary-blue: #00227C;
    --accent-yellow: #C7D61A;
    --dark-grey: #2A2A2A;
    --light-grey: #F3F3F3;
    --white: #FFFFFF;
    --accent-orange: #FF5A00; /* For limited offer banner per brief */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-medium: 0 20px 40px rgba(0,0,0,0.12);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; position: relative; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

/* Utilities */
.fade-in { opacity: 0; transform: translateY(20px); transition: var(--transition); }
.fade-in.active { opacity: 1; transform: translateY(0); }
.fade-in-right { opacity: 0; transform: translateX(20px); transition: var(--transition); }
.fade-in-right.active { opacity: 1; transform: translateX(0); }
.scroll-reveal { opacity: 0; transform: translateY(20px); transition: var(--transition); }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }
.text-logo-yellow { color: var(--accent-yellow); }

/* 1. HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('hero_luxury_living_room_1775745353880.png') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text { flex: 1; }
.hero h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.02em; }
.hero-highlight-text { color: var(--accent-yellow); font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; letter-spacing: -0.02em; }
.hero-subtext { font-size: 1.15rem; margin-bottom: 25px; font-weight: 500; opacity: 0.95; }

/* Hero Badges */
.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px;
    margin-bottom: 25px;
    width: fit-content;
}
.hero-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 18px; border-radius: 30px;
    font-size: 0.95rem; font-weight: 600; color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.hero-badge.glow {
    border-color: var(--accent-yellow);
    background: rgba(199, 214, 26, 0.15);
    box-shadow: 0 0 15px rgba(199, 214, 26, 0.4);
    animation: glowPulse 2.5s infinite alternate;
}
@keyframes glowPulse {
    from { 
        box-shadow: 0 0 10px rgba(199, 214, 26, 0.3);
        background: rgba(199, 214, 26, 0.1);
    }
    to { 
        box-shadow: 0 0 25px rgba(199, 214, 26, 0.6);
        background: rgba(199, 214, 26, 0.25);
    }
}
.hero-badge i { width: 18px; color: var(--accent-yellow); }

.form-container { flex: 0 0 400px; }
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
}
.form-subtext-top { text-align: center; font-size: 0.9rem; margin-bottom: 12px; font-weight: 600; color: var(--white); opacity: 0.9; }

.lead-form .form-group { margin-bottom: 16px; }
.lead-form input, .lead-form select {
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.lead-form input:focus, .lead-form select:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 2px rgba(199, 214, 26, 0.3);
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(199, 214, 26, 0.6);
}

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* TRUST STRIP */
.trust-strip {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--light-grey);
}
.strip-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-grey);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}
.trust-item:hover {
    transform: translateY(-3px);
    color: var(--primary-blue);
}
.icon-yellow { color: var(--accent-yellow); width: 22px; transition: transform 0.3s ease; }
.trust-item:hover .icon-yellow { transform: scale(1.15); }
.separator { width: 1px; height: 24px; background-color: #ddd; }

/* 2. STATS BAR */
.stats-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 0;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.1);
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.stat-item span { font-size: 2.3rem; color: var(--accent-yellow); margin-bottom: 2px; font-weight: 800; display: block; }
.stat-item .price-match i { width: 32px; height: 32px; color: var(--accent-yellow); }
.stat-item p { font-weight: 600; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; }
.stats-subline { text-align: center; margin-top: 25px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
.stats-subline p { font-size: 0.95rem; font-weight: 500; opacity: 0.9; }

/* 3. LIMITED OFFER BANNER */
.offer-banner { padding: 40px 0; }
.banner-content {
    background: var(--accent-orange);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}
.banner-content .offer-banner-text { font-size: 1.5rem; margin-bottom: 5px; font-weight: 700; }
.banner-content p { opacity: 0.9; }
.btn-outline {
    padding: 12px 24px;
    border: 2px solid var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-outline:hover { 
    background: var(--white); 
    color: var(--accent-orange); 
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* 4. PORTFOLIO */
.portfolio { padding: 80px 0 40px 0; background-color: var(--white); }
.portfolio .section-title { color: var(--primary-blue); }
.section-subtitle { text-align: center; max-width: 800px; margin: 10px auto 40px; font-size: 1.15rem; color: var(--dark-grey); opacity: 0.8; font-weight: 500; }
.tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-card { 
    background: rgba(199, 214, 26, 0.08); /* Light logo yellow */
    border-radius: 16px; 
    overflow: hidden; 
    cursor: pointer; 
    transition: var(--transition);
    border: 1px solid rgba(199, 214, 26, 0.15);
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(199, 214, 26, 0.2);
    background: rgba(199, 214, 26, 0.12);
}
.portfolio-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.portfolio-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}
.portfolio-card:hover img { transform: scale(1.1); }
.portfolio-info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-info p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.4;
}

/* Lightbox */
.lightbox {
    display: none; position: fixed; z-index: 3000; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; flex-direction: column;
}
.lightbox-content { max-width: 90%; max-height: 80vh; border-radius: 8px; }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; }
#lightbox-caption { color: #fff; margin-top: 15px; font-size: 1.2rem; }

/* 5. HOW IT WORKS */
.how-it-works { padding: 40px 0; background-color: var(--white); }
.section-title { text-align: center; font-size: 2.8rem; margin-bottom: 40px; font-weight: 800; letter-spacing: -0.5px; }
.highlight-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: -8px; 
    width: calc(100% + 16px);
    height: 14px; 
    background-color: var(--accent-yellow);
    z-index: -1;
    transform: rotate(-1.5deg);
    border-radius: 2px;
}
.process-grid { margin-bottom: 20px; }
.process-card { 
    background: var(--light-grey); 
    padding: 40px 30px; 
    border-radius: 16px; 
    text-align: center; 
    box-shadow: var(--shadow-soft); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    border-top: 4px solid transparent;
}
.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(199, 214, 26, 0.4);
}
.process-card:hover { 
    transform: translateY(-15px) scale(1.03); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.1); 
    border-top: 4px solid var(--accent-yellow);
    background: var(--white);
}
.process-icon { 
    width: 70px; height: 70px; 
    background: var(--primary-blue); 
    color: var(--white); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 30px; 
    transition: transform 0.5s ease;
}
.process-card:hover .process-icon { transform: rotateY(180deg) scale(1.1); box-shadow: 0 10px 20px rgba(0, 34, 124, 0.3); }

/* 6. TESTIMONIALS */
.testimonials { padding: 40px 0 80px 0; background-color: var(--light-grey); }
.testimonial-header-split { 
    display: flex; 
    align-items: center; 
    gap: 40px; 
    margin-bottom: 50px; 
}
.testimonial-text { flex: 1; }
.testimonial-video-box { flex: 0 0 280px; }
.video-card { 
    display: block; 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}
.video-card:hover { transform: scale(1.02); }
.video-card img { width: 100%; display: block; filter: brightness(0.85); transition: var(--transition); }
.video-card:hover img { filter: brightness(1); }
.play-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--white);
}
.play-overlay i { width: 64px; height: 64px; margin-bottom: 10px; opacity: 0.9; }
.play-overlay span { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; background: rgba(0,0,0,0.4); padding: 5px 12px; border-radius: 4px; }
.pulse-shadow { animation: pulseShadow 2s infinite; }
@keyframes pulseShadow {
    0% { box-shadow: 0 0 0 0 rgba(199, 214, 26, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(199, 214, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(199, 214, 26, 0); }
}

.featured-title-branded {
    text-align: left;
    margin-bottom: 25px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 34, 124, 0.2);
}
.featured-title-branded::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 6px;
    background-color: var(--accent-yellow);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(199, 214, 26, 0.6);
}
.featured-title-branded:hover {
    text-shadow: 0 0 15px rgba(0, 34, 124, 0.3);
}

.testimonial-carousel { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; padding: 10px; }
.testimonial-slider { display: flex; transition: transform 0.5s ease; }
.testimonial-card { 
    flex: 0 0 100%; 
    display: flex;
    background: rgba(0, 34, 124, 0.08); 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 34, 124, 0.12);
}
.review-image { flex: 0 0 42%; }
.review-image img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; display: block; filter: brightness(0.9); }

.review-content { 
    flex: 1; 
    padding: 60px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    background: transparent; 
    position: relative;
    text-align: left;
}

.review-content::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 10rem;
    color: var(--accent-yellow);
    opacity: 0.1;
    font-family: 'Outfit', serif;
    line-height: 1;
}

.review-stars { 
    margin-bottom: 25px; 
    display: flex; 
    gap: 4px; 
    color: var(--accent-yellow); 
}
.review-stars i { fill: var(--accent-yellow) !important; stroke: var(--accent-yellow) !important; width: 22px; height: 22px; }

.review-text { 
    font-size: 1.4rem; 
    line-height: 1.65; 
    font-weight: 400;
    color: var(--dark-grey); 
    margin-bottom: 35px; 
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.review-author { position: relative; z-index: 1; }
.review-author h4 { font-size: 1.35rem; color: var(--primary-blue); font-weight: 700; margin-bottom: 4px; }
.review-author p { color: var(--accent-yellow); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }

.carousel-controls { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.carousel-controls button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid #ddd; background: var(--white); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.carousel-controls button:hover { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }


/* 7. FAQ */
.faq { padding: 100px 0; background-color: var(--white); }
.faq .section-title { color: var(--primary-blue); }
.accordion { max-width: 850px; margin: 0 auto; }
.accordion-item { 
    background: var(--light-grey); 
    border-radius: 12px; 
    margin-bottom: 16px; 
    overflow: hidden; 
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.accordion-item:hover { background: #f8f9fa; box-shadow: var(--shadow-soft); transform: translateX(5px); }
.accordion-item.expanded { border-left: 4px solid var(--accent-yellow); background: var(--white); box-shadow: var(--shadow-medium); transform: translateX(5px); }
.accordion-header { width: 100%; padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-size: 1.2rem; font-weight: 700; text-align: left; cursor: pointer; color: var(--primary-blue); }
.accordion-header span { font-size: inherit; font-weight: inherit; margin: 0; color: inherit; font-family: inherit; }
.accordion-header i { transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); color: var(--accent-yellow); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; padding: 0 30px; }
.accordion-content p { color: var(--dark-grey); line-height: 1.8; font-size: 1.05rem; }
.accordion-content ul { padding-left: 20px; margin: 15px 0; }
.accordion-content li { margin-bottom: 12px; color: var(--dark-grey); font-size: 1.05rem; line-height: 1.6; }
.accordion-item.expanded .accordion-content { max-height: 800px; padding-bottom: 30px; }
.accordion-item.expanded i { transform: rotate(135deg); }

/* 8. FINAL CTA */
.final-section { padding: 80px 0; }
.portfolio { padding-bottom: 40px; }
.how-it-works { padding-top: 40px; }
.final-cta { padding: 80px 0; }
.cta-wrapper { 
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.92)), url('hero_luxury_living_room_1775745353880.png') center/cover no-repeat;
    background-attachment: fixed; /* Gives a subtle parallax effect so the stencil feels deeply layered */
    padding: 80px 60px; 
    border-radius: 24px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    box-shadow: var(--shadow-medium);
}
.cta-text h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.5px; }
.cta-text p { font-size: 1.2rem; opacity: 0.8; }
.form-card.light { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px; 
    color: var(--dark-grey); 
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.form-card.light input, .form-card.light select { background: var(--white); border: 1px solid #e0e0e0; }

/* 9. STICKY MOBILE BAR */
.sticky-mobile-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white);
    display: none; justify-content: space-around; padding: 12px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 1000;
}
.bar-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--dark-grey); font-size: 0.75rem; font-weight: 600; }
.bar-item i { width: 20px; margin-bottom: 4px; }
.bar-item.highlight { background: var(--accent-yellow); padding: 8px 20px; border-radius: 30px; color: var(--primary-blue); margin-top: -5px; }

/* Modals */
.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 2000;
}
.modal-content { max-width: 550px; text-align: center; }
.modal-content.thank-you-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border-top: 6px solid var(--accent-yellow);
    color: var(--dark-grey);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.icon-success { width: 70px; height: 70px; color: var(--accent-yellow); margin-bottom: 20px; }
.modal-content h1 { font-size: 2.2rem; margin-bottom: 12px; color: var(--primary-blue); }
.modal-content p { font-size: 1.05rem; opacity: 0.8; margin-bottom: 25px; }

.next-steps {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: left;
}
.next-steps h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 1.1rem;
}
.next-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--dark-grey);
}
.next-step-item i {
    width: 18px;
    height: 18px;
    color: var(--accent-yellow);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .form-container { width: 100%; max-width: 500px; }
    .cta-wrapper { grid-template-columns: 1fr; text-align: center; padding: 40px; }
    .testimonial-header-split { flex-direction: column; text-align: center; gap: 30px; }
    .testimonial-video-box { flex: 0 0 auto; width: 100%; max-width: 600px; }
    .testimonial-text h2, .testimonial-text p { text-align: center !important; }
}

@media (max-width: 768px) {
    .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-content { flex-direction: column; gap: 20px; text-align: center; }
    .sticky-mobile-bar { display: flex; }
    .hero { padding-bottom: 80px; padding-top: 20px; min-height: auto; } /* tighter padding */
    .hero h1 { font-size: 2rem; line-height: 1.1; margin-bottom: 10px; }
    .hero-highlight-text { font-size: 2rem; line-height: 1.1; margin-bottom: 15px; }
    .hero-subtext { font-size: 1rem; margin-bottom: 15px; }
    .hero-badges { 
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 500px;
    }
    .hero-badge { font-size: 0.85rem; padding: 10px 12px; justify-content: center; }
    .form-container { padding: 30px 20px; margin: 0 10px; width: calc(100% - 20px); }
    .testimonial-card { padding: 40px 20px; margin: 10px; text-align: center; align-items: center; }
    .review-stars { justify-content: center; margin-bottom: 15px; }
    .review-text { font-size: 1.1rem; line-height: 1.5; margin-bottom: 20px; }
    .review-content::after { left: 50%; transform: translateX(-50%); top: 10px; font-size: 6rem; right: auto; }
    .tabs { flex-wrap: wrap; justify-content: center; }
    .testimonial-card { flex-direction: column; }
    .review-image { flex: 0 0 auto; min-height: 250px; width: 100%; margin-bottom: 10px; }
    .review-content { padding: 10px; }
}

@media (max-width: 480px) {
    .grid-4, .grid-5 { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.6rem; }
    .hero-highlight-text { font-size: 1.6rem; }
    .hero-badges { gap: 8px; margin-bottom: 15px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 8px; }
}

/* MICRO-INTERACTIONS & ENTRANCE ANIMATIONS */
.hero-anim-text { animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) backwards; }
.hero-anim-form { animation: slideInRight 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) backwards; animation-delay: 0.3s; }

/* WHY THE NEO STUDIO SECTION */
.why-neo {
    padding: 40px 0 100px 0;
    background-color: #f0f4ff; /* Light logo blue tint */
    overflow: hidden;
    position: relative;
}

.why-title {
    color: var(--primary-blue) !important;
    line-height: 1.2;
    font-size: 2.8rem;
    margin-bottom: 25px; 
    text-align: left;
}

.brand-underline {
    position: relative;
    display: inline-block;
}

.brand-underline::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.why-neo .section-subtitle {
    color: var(--primary-blue);
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 50px;
    text-align: left; /* Aligned to left */
    margin-left: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns for single row */
    gap: 15px;
    margin-top: 50px;
}

.why-item {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 34, 124, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 34, 124, 0.05);
    /* Spotlight Variables */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(199, 214, 26, 0.2); /* Logo Lime Spotlight */
}

/* Spotlight Effect Layer */
.why-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.why-item:hover::after {
    opacity: 1;
}

.why-item > * {
    position: relative;
    z-index: 1;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(199, 214, 26, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(0, 34, 124, 0.1), 0 0 20px rgba(199, 214, 26, 0.1);
}

.why-item:hover::before {
    opacity: 1;
}


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll reveal overrides for high-impact entrance */
.why-item.scroll-reveal { opacity: 0; filter: blur(5px); }
.why-item.scroll-reveal.active { 
    opacity: 1; 
    filter: blur(0);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-vibe-1.active { transition-delay: 0.05s; }
.card-vibe-2.active { transition-delay: 0.1s; }
.card-vibe-3.active { transition-delay: 0.15s; }
.card-vibe-4.active { transition-delay: 0.2s; }
.card-vibe-5.active { transition-delay: 0.25s; }
.card-vibe-6.active { transition-delay: 0.3s; }

.why-icon {
    width: auto;
    height: auto;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.why-icon i {
    width: 36px;
    height: 36px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.why-item:hover .why-icon i {
    color: var(--accent-yellow);
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 8px rgba(199, 214, 26, 0.5));
}

.why-item h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-item p {
    font-size: 0.75rem;
    color: var(--dark-grey);
    line-height: 1.4;
    opacity: 0.7;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-title { font-size: 2rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Form Social Proof Strip */
.form-trust-proof {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.confidential {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}
.confidential i { width: 14px; height: 14px; opacity: 0.7; }
.proof-items-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.proof-mini {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.mini-stars { color: var(--accent-yellow); font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 4px; }
.proof-mini strong { display: block; font-size: 0.95rem; color: var(--accent-yellow); line-height: 1.2; font-family: 'Outfit', sans-serif; }
.proof-mini span { font-size: 0.7rem; color: #777; line-height: 1.2; font-family: 'Inter', sans-serif; }

@media (max-width: 480px) {
    .proof-items-row { flex-wrap: wrap; }
    .proof-mini { flex: 0 0 45%; margin-bottom: 15px; }
}

/* PRICING TABLE STYLES */
.pricing-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 34, 124, 0.1);
}

.pricing-section .section-subtitle {
    margin-top: 0;
    margin-bottom: 50px;
}

.pricing-table-container {
    max-width: 900px;
    margin: 40px auto 0;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-table th, .pricing-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background-color: rgba(199, 214, 26, 0.05);
}

.pricing-table td:first-child {
    font-weight: 700;
    color: var(--primary-blue);
    width: 60%;
}

.location-heading {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .pricing-table td, .pricing-table th {
        padding: 15px;
        font-size: 0.9rem;
    }
}
