/* =============================================================
   NANO KITCHENS - HORIZONTAL SINGLE-VIEW EXPERIENCE
   Awwwards-style Immersive Design
   ============================================================= */

:root {
    --brand-blue: #00365f;
    --brand-blue-light: #004a82;
    --brand-blue-dark: #001a2e;
    --gold: #c9a962;
    --gold-light: #e0c078;
    --gold-dark: #a88a4a;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-light: #e0e5eb;
    --gray: #6c757d;
    --text-dark: #0a1628;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Readex Pro', sans-serif;
    background: var(--brand-blue-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* =============================================================
   SECTION BASE STYLES - VERTICAL SCROLLING LAYOUT
   ============================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 26, 46, 0.85) 0%, rgba(0, 54, 95, 0.75) 100%);
    z-index: 2;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-cta.secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.hero-cta.secondary:hover {
    background: var(--gold);
    color: var(--brand-blue-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(6px);
        opacity: 0.3;
    }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.features {
    position: relative;
    padding: 6rem 2rem;
    background: var(--off-white);
}

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

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    color: var(--brand-blue);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.features-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    perspective: 1000px;
}

.feature-item {
    position: relative;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 54, 95, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 54, 95, 0.2);
}

.feature-item.large {
    grid-row: span 2;
}

.feature-item.large .feature-image {
    height: 100%;
    min-height: 350px;
}

.feature-item.large .feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 26, 46, 0.95) 0%, transparent 100%);
    padding: 2rem;
    transform: translateZ(30px);
}

.feature-item.large .feature-info h3,
.feature-item.large .feature-info p {
    color: var(--white);
}

.feature-item.large .feature-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-item.wide {
    grid-column: span 2;
}

.feature-image {
    position: relative;
    height: 180px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transform: translateZ(10px);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .feature-image img {
    transform: scale(1.08);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 26, 46, 0.2) 100%);
}

.feature-info {
    padding: 1.5rem;
    text-align: right;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    transform: translateZ(20px);
}

/* Fix for large card info background not needing white bg */
.feature-item.large .feature-info {
    background: linear-gradient(to top, rgba(0, 26, 46, 0.95) 0%, transparent 100%);
    border-radius: 0 0 20px 20px;
}

.feature-number {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.6rem;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 4px;
    transform: translateZ(30px);
}

.feature-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    transform: translateZ(25px);
}

.feature-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.4) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 10;
    border-radius: 20px;
}

.feature-item:hover .feature-shine {
    opacity: 1;
}

.feature-tags span {
    padding: 0.35rem 0.85rem;
    background: rgba(0, 54, 95, 0.06);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-blue);
    transition: all 0.3s;
}

.feature-item:hover .feature-tags span {
    background: rgba(201, 169, 98, 0.15);
    color: var(--gold-dark);
}

.transform {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    overflow: hidden;
}

.transform-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.transform-text {
    text-align: right;
    order: 2;
}

.transform-visual {
    order: 1;
}

.transform-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.transform-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.transform-stats {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
}

.t-stat {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 54, 95, 0.08);
    transition: all 0.3s;
}

.t-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 54, 95, 0.12);
}

.t-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.t-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.transform-visual {
    position: relative;
}

.before-after-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 54, 95, 0.15);
    aspect-ratio: 4/3;
    cursor: ew-resize;
}

.before-image,
.after-image {
    position: absolute;
    inset: 0;
}

.before-image svg,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.handle-line {
    flex: 1;
    width: 3px;
    background: var(--gold);
}

.handle-circle {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-dark);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.4);
}

.gallery {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    padding: 1rem 0;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide {
    flex: 0 0 420px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.gallery-slide.active {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.gallery-slide a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.slide-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide:hover .slide-image img {
    transform: scale(1.15);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 26, 46, 0.95) 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: right;
}

.slide-number {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.25rem 0.6rem;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.slide-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-prev,
.gallery-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brand-blue-dark);
    transform: scale(1.1);
}

.gallery-progress {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.gallery-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.trust {
    position: relative;
    padding: 6rem 2rem;
    background: var(--off-white);
}

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

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h2 {
    color: var(--brand-blue);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 54, 95, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 54, 95, 0.05);
}

.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 54, 95, 0.12);
    border-color: rgba(201, 169, 98, 0.2);
}

.trust-icon {
    margin-bottom: 1.25rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon img {
    height: 55px;
    transition: transform 0.4s;
}

.trust-card:hover .trust-icon img {
    transform: scale(1.1);
}

.icon-emoji {
    font-size: 3rem;
    transition: transform 0.4s;
}

.trust-card:hover .icon-emoji {
    transform: scale(1.15);
}

.trust-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.process {
    position: relative;
    padding: 5rem 2rem;
    background: var(--brand-blue-dark);
}

.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    right: 26px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.timeline-progress {
    width: 100%;
    background: var(--gold);
    transition: height 0.5s;
}

.process-steps {
    position: relative;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-marker {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.15);
    border: 2px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.step-marker span {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.step.active .step-marker {
    background: var(--gold);
    border-color: var(--gold);
}

.step.active .step-marker span {
    color: var(--brand-blue-dark);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.contact {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
}

.contact-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    margin-bottom: 2rem;
}

.contact-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-direct {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer {
    position: relative;
    padding: 4rem 2rem 2rem;
    background: var(--brand-blue-dark);
    border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* =============================================================
   CURSOR GLOW
   ============================================================= */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

body:hover .cursor-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* =============================================================
   NAVIGATION - FIXED
   ============================================================= */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--brand-blue-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-mobile-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* =============================================================
   PANEL NAVIGATION DOTS
   ============================================================= */
.panel-nav {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.panel-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.panel-dot:hover::after {
    opacity: 1;
}

.panel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

/* =============================================================
   HORIZONTAL PANELS SYSTEM
   ============================================================= */
.panels-wrapper {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

.panels-container {
    display: flex;
    height: 100%;
    will-change: transform;
}

.panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.panel-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 26, 46, 0.9) 0%, rgba(0, 54, 95, 0.8) 100%);
    z-index: 2;
}

.panel-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =============================================================
   PANEL 1: HERO
   ============================================================= */
.panel-hero {
    background: var(--brand-blue-dark);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em;
}

.hero-title .word {
    display: inline-block;
}

.hero-title .word.accent {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    color: var(--gold);
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--brand-blue-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
    transition: all 0.4s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.4);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }
}

/* =============================================================
   SECTION COMMON STYLES
   ============================================================= */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.section-header.light h2 {
    color: var(--white);
}

.gold {
    color: var(--gold);
}

/* =============================================================
   PANEL 2: FEATURES
   ============================================================= */
.panel-features {
    background: var(--off-white);
}

.panel-features .section-header h2 {
    color: var(--brand-blue);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    width: 100%;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 54, 95, 0.1);
    transition: all 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 54, 95, 0.15);
}

.feature-image {
    height: 140px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-info {
    padding: 1.25rem;
    text-align: right;
}

.feature-num {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.feature-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.35rem;
}

.feature-info p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}

/* =============================================================
   PANEL 3: TRANSFORM
   ============================================================= */
.panel-transform {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    text-align: right;
    max-width: 1100px;
}

.split-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.transform-stats {
    display: flex;
    gap: 2.5rem;
}

.t-stat {
    text-align: center;
}

.t-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.t-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.before-after-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 54, 95, 0.15);
    aspect-ratio: 4/3;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-after {
    clip-path: inset(0 50% 0 0);
}

.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blueprint-svg {
    width: 100%;
    height: 100%;
}

.ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gold);
    cursor: ew-resize;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-dark);
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.4);
}

/* =============================================================
   PANEL 4: GALLERY
   ============================================================= */
.panel-gallery {
    background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    width: 100%;
    height: 50vh;
    max-height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.gallery-item.large {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 26, 46, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
}

.gallery-num {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =============================================================
   PANEL 5: PROCESS
   ============================================================= */
.panel-process {
    background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
}

.process-flow {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 0 0 200px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.15);
    border: 2px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.4s;
}

.process-step:hover .step-icon {
    background: var(--gold);
    color: var(--brand-blue-dark);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.4);
}

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.step-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.step-connector {
    position: absolute;
    top: 35px;
    left: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.process-step:first-child .step-connector {
    display: none;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.trust-item img {
    height: 35px;
    filter: brightness(0) saturate(100%) invert(72%) sepia(52%) saturate(398%) hue-rotate(6deg) brightness(91%) contrast(85%);
}

.trust-item .emoji {
    font-size: 1.5rem;
}

/* =============================================================
   PANEL 6: CONTACT
   ============================================================= */
.panel-contact {
    background: var(--brand-blue-dark);
}

.panel-contact .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    margin: 0 auto 1.5rem auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

.form-group label {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label {
    top: 0;
    font-size: 0.7rem;
    background: var(--brand-blue-dark);
    padding: 0 0.4rem;
    color: var(--gold);
}

.form-group select option {
    background: var(--brand-blue-dark);
    color: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: 10px;
    color: var(--brand-blue-dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.35);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.contact-link.whatsapp:hover {
    background: #25d366;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--brand-blue-dark);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* =============================================================
   MOBILE RESPONSIVE - GODLY PERFECT
   ============================================================= */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .transform-stats {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        max-height: 350px;
    }

    .gallery-item.large {
        grid-row: span 1;
    }
}

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

    .nav-logo {
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-btn {
        display: flex;
    }

    .panel-nav {
        left: 1rem;
        gap: 0.75rem;
    }

    .panel-dot {
        width: 10px;
        height: 10px;
    }

    .panel-content {
        padding: 5rem 1.25rem 2rem;
    }

    /* Hero Mobile */
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-cta {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Features Mobile */
    .features-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .feature-image {
        height: 100px;
    }

    .feature-info {
        padding: 0.75rem;
    }

    .feature-info h3 {
        font-size: 0.85rem;
    }

    .feature-info p {
        font-size: 0.7rem;
    }

    /* Transform Mobile */
    .before-after-card {
        max-width: 100%;
    }

    .t-number {
        font-size: 2rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        height: 45vh;
    }

    .gallery-overlay {
        padding: 0.75rem;
    }

    .gallery-overlay h3 {
        font-size: 0.9rem;
    }

    /* Process Mobile */
    .process-flow {
        gap: 1rem;
    }

    .process-step {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 0.95rem;
    }

    .step-info h4 {
        font-size: 0.95rem;
    }

    .step-info p {
        font-size: 0.75rem;
    }

    .step-connector {
        display: none;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .trust-item img {
        height: 28px;
    }

    /* Contact Mobile */
    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
    }

    .footer-social a svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }

    .gallery-item {
        height: 150px;
    }
}

/* Mobile Menu */
.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: linear-gradient(180deg, #001a2e 0%, #00365f 100%);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}