:root {
    --primary-orange: #FF5A00;
    --primary-orange-hover: #fa6c1d;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    
    /* TRUE FROST GLASSMORPHISM OVER MESH BACKGROUND */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shadow: 0 25px 50px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
html.lenis, html.lenis body { height: auto; width: 100vw; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* THE COMPLEX VIBRANT FLUID GRADIENT BACKGROUND */
body { 
    font-family: "Manrope", sans-serif; 
    color: var(--text-dark); 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
    
    background-color: #f0f2f5;
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 90, 0, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 255, 255, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 90, 0, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(230, 232, 237, 1) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
}

/* MICRO ANIMATIONS & GLASS FIXTURES */
.float-hover { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.float-hover:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,0.08); }

.shimmer-btn {
    position: relative; overflow: hidden;
}
.shimmer-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: shimmer 4s infinite; z-index: 1; pointer-events: none;
}
@keyframes shimmer { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

/* SVG Icons Uniform Theme */
.service-icon {
    width: 3.5rem; height: 3.5rem; color: var(--primary-orange); margin-bottom: 2rem;
    stroke-width: 1.5px; filter: drop-shadow(0 4px 10px rgba(255, 90, 0, 0.2));
}

.flex-center-left { display: flex; align-items: center; gap: 1rem; justify-content: flex-start;}

/* Typography */
h1, h2, h3, h4, h5, h6, .logo-mobile, .badge-font { font-family: "Syncopate", sans-serif; text-transform: uppercase; font-weight: 700; letter-spacing: -0.02em; }
.text-orange { color: var(--primary-orange); }
.text-dark { color: var(--text-dark); }
.text-mask-wrap { overflow: hidden; display: block; }
.text-mask-wrap-small { overflow: hidden; padding-bottom: 5px; }
.line-tight { line-height: 1.1; }

/* Custom Cursor */
.cursor { position: fixed; top: 0; left: 0; width: 20px; height: 20px; background-color: var(--primary-orange); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background-color 0.3s; }
.cursor.hovered { width: 50px; height: 50px; background-color: rgba(255, 90, 0, 0.15); border: 1px solid var(--primary-orange); backdrop-filter: blur(2px); }

/* Layout Classes */
.pt-32 { padding-top: 6rem; }
.pb-32 { padding-bottom: 6rem; }
.mt-2 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.block { display: block; }

/* PEARL WHITE DOORS ANIMATION CONTAINER */
.door-scroll-container { position: relative; width: 100%; }
.doors-wrapper { position: relative; width: 100vw; height: 100vh; overflow: hidden; z-index: 900; background: #ffffff; }

/* Frosty Pearl Metal Doors */
.door { 
    position: absolute; top: 0; width: 50vw; height: 100%; overflow: hidden; pointer-events: none; 
    background: linear-gradient(135deg, #ffffff 0%, #e6e8ed 100%); 
    box-shadow: inset 0 0 40px rgba(0,0,0,0.03); 
}
.door-left { left: 0; border-right: 3px solid var(--primary-orange); transform-origin: left top; }
.door-right { right: 0; border-left: 3px solid var(--primary-orange); transform-origin: right top; }

.door-inner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(255,255,255,0.6) 0%, transparent 80%); }
.door-detail-line { position: absolute; top: 25%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent); }

/* Aluminum Door Handles */
.door-handle { position: absolute; top: 55%; width: clamp(60px, 15vw, 140px); height: clamp(10px, 2vw, 20px); background: linear-gradient(to bottom, #f0f0f0, #d4d4d4); border-radius: 20px; box-shadow: inset 0 2px 3px rgba(255,255,255,0.8), 0 5px 15px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
.door-left .door-handle { right: 8%; transform: rotate(-5deg); }
.door-right .door-handle { left: 8%; transform: rotate(5deg); }
.door-center-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--primary-orange); z-index: 901; transform: translateX(-50%); box-shadow: 0 0 15px var(--primary-orange); }

.glass-text-plate { padding: 0.8rem 1.5rem; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border-radius: 100px; border: 1px solid rgba(255,90,0,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.05);}
.door-title { position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); z-index: 902; font-size: clamp(0.9rem, 4vw, 2rem); letter-spacing: 0.1em; text-align: center; width: 85%; max-width: 600px; }
.door-scroll-hint { position: absolute; bottom: 3rem; left: 50%; z-index: 902; transform: translateX(-50%); }

.doors-content-reveal { position: relative; z-index: 10; }

/* Hero */
.hero-title { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.05; margin-bottom: 1rem; will-change: transform; }

/* GLOBALLY INTENSIFIED GLASSMORPHISM REDESIGN */
.glass-panel { 
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border); 
    backdrop-filter: blur(30px); 
    -webkit-backdrop-filter: blur(30px); 
    border-radius: 2rem; 
    box-shadow: var(--glass-shadow); 
}

/* Stat row */
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-number { font-family: 'Syncopate', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--text-dark);}
.stat-label { font-size: 0.95rem; color: var(--text-dark); font-weight: 700; text-transform: uppercase; }
.stat-divider { width: 2px; height: 35px; background: rgba(0,0,0,0.05); align-self: center; }

.ContactUI { position: relative; width: 100%; min-height: 100vh; padding: 120px 4vw 0; display: flex; flex-direction: column; }
.ContactUI .container { width: 100%; max-width: 1500px; margin: 0 auto; flex: 1; display: flex; align-items: center;}
.ContactUI .content-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 4vw; width: 100%; }
.ContactUI .left-section { flex: 1; max-width: 45rem; display: flex; flex-direction: column; gap: 2rem; }
.tank-description { font-size: 1.25rem; line-height: 1.6; color: var(--text-muted); font-weight: 400; }

.glass-button { background: rgba(255, 255, 255, 0.9); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); padding: 1.5rem; display: flex; justify-content: center; align-items: center; text-decoration: none; border-radius: 1rem; transition: all 0.3s ease; }
.social-btn { flex: 1; height: 4.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 700; gap: 0.75rem; font-size: 1.1rem; transition: all 0.3s ease; }

/* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 90, 0, 0.3);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-orange 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-orange-hover);
    box-shadow: 0 15px 35px rgba(255, 90, 0, 0.4);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 90, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0); }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
    }
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

.phone-section { position: relative; pointer-events: auto; flex-shrink: 0; }
.phone-container { width: 30rem; aspect-ratio: 9/16; position: relative; }
.phone-frame { width: 100%; height: 100%; background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,1); border-radius: 3rem; padding: 0.75rem; backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.phone-screen { width: 100%; height: 100%; border-radius: 2.25rem; overflow: hidden; position: relative; background: #fff; }
.img-parallax { width: 100%; height: 115%; position: relative; top: -7.5%; }
.phone-image, .media-image { width: 100%; height: 100%; object-fit: cover; }

/* Grid Services Overview */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.metadata-label { font-size: 1.1rem; color: var(--text-dark); }

/* DEEP DIVE SECTIONS */
.deep-dive-section { width: 100%; }
.deep-dive-container { display: flex; align-items: center; justify-content: space-between; gap: 6vw; max-width: 1500px; margin: 0 auto; }
.deep-dive-container.reverse { flex-direction: row-reverse; }
.deep-dive-text { flex: 1; max-width: 600px; }
.project-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin: 0; }
.description-paragraph { font-size: 1.25rem; line-height: 1.7; color: var(--text-muted); font-weight: 400; }
.deep-dive-media { flex: 1.2; width: 100%; }
.media-item { position: relative; width: 100%; border-radius: 2rem; overflow: hidden; background: #f0f0f0; aspect-ratio: 4/3; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }

/* Book A Slot CTA Element */
.separator-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5vw; padding: 4vw; position: relative; z-index: 2; width: 100%; text-align: center; }
.next-label { font-family: 'Syncopate', sans-serif; font-size: 0.9rem; letter-spacing: 0.25em; font-weight: 700; color: var(--text-dark); opacity: 0.5; display: block; text-transform: uppercase; }
.project-name { font-family: 'Syncopate', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text-dark) !important; display: block; transition: all 0.3s ease; }
.project-name:hover { color: var(--primary-orange) !important; transform: translateY(-5px); }

/* SITE FOOTER LIGHT THEME EXTENSION */
.frosted-footer { background: var(--glass-bg); backdrop-filter: blur(30px); border-top: 1px solid var(--glass-border); padding: 5rem 4vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 4rem; max-width: 1500px; margin: 0 auto; margin-bottom: 4rem; }
.logo-inline { font-size: 2rem; margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); line-height: 1.6; max-width: 300px; }
.footer-heading { font-size: 1rem; margin-bottom: 1.5rem; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a, .footer-link { color: var(--text-muted); text-decoration: none; transition: color 0.3s; display: block; margin-bottom: 0.8rem; font-weight: 600; }
.footer-col ul a:hover, .footer-link:hover { color: var(--primary-orange); }
.footer-col p { color: var(--text-muted); line-height: 1.6; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1rem; }
.social-cir { width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.9rem; font-family: "Syncopate"; transition: all 0.3s; }
.social-cir:hover { background-color: var(--primary-orange); color: white; border-color: var(--primary-orange); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; font-weight: 600; color: var(--text-muted);}

/* Scroll Icons for Light Doors */
@keyframes arrowFlow { 0% { top: 4px; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; top: 22px; } 100% { top: 26px; opacity: 0; } }
.scroll-icon { position: relative; width: 52px; display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 0 auto; color: var(--primary-orange);}
.icon-container { position: relative; width: 26px; height: 36px; display: flex; align-items: center; justify-content: center; }
.scroll-border { position: absolute; width: 26px; height: 36px; border: 1.6px solid var(--primary-orange); border-radius: 26px; }
.scroll-arrow { position: absolute; width: 6px; height: 7px; border-right: 2px solid var(--primary-orange); border-bottom: 2px solid var(--primary-orange); transform: rotate(45deg); top: 2px; opacity: 0; }
.scroll-arrow.animate { animation: arrowFlow 1.4s ease-in-out infinite; }
.gs-reveal, .gs-fade-up, .gs-stagger, .gs-hero-img { visibility: hidden; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ContactUI .content-wrapper, .deep-dive-container, .deep-dive-container.reverse { flex-direction: column; gap: 3rem; }
    .phone-container { width: 100%; max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    * { cursor: auto !important; } .cursor { display: none; }
    .ContactUI { padding: 90px 4vw 0; }
    .ContactUI .container { align-items: flex-start; }
    .ContactUI .content-wrapper { 
        flex-direction: column !important; 
        text-align: center; 
        padding: 3rem 6vw !important; 
        gap: 3rem;
        height: auto;
    }
    
    .left-section { 
        max-width: 100% !important; 
        align-items: center; 
        flex: none !important;
    }
    
    .hero-title { font-size: 2.4rem; }
    .tank-description { font-size: 1.1rem; }
    
    .hero-stats { 
        gap: 1.5rem !important; 
        justify-content: center !important;
        width: 100%;
    }
    
    .stat-item { align-items: center; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.8rem; }
    .stat-divider { display: none; }
    
    .phone-section { 
        width: 100%; 
        display: flex; 
        justify-content: center; 
    }
    
    .phone-container { 
        width: 80% !important; 
        max-width: 320px !important; 
        aspect-ratio: 9/16; 
    }
    
    .MobileMenu { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
    .header-mobile { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
    .menu-toggle { background: none; border: none; width: 30px; height: 20px; position: relative; }
    .hamburger-icon, .hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 100%; height: 3px; background: var(--text-dark); position: absolute; transition: all 0.3s ease; }
    .hamburger-icon { top: 50%; transform: translateY(-50%); }
    .hamburger-icon::before { top: -8px; } .hamburger-icon::after { top: 8px; }
    .menu-toggle[aria-expanded="true"] .hamburger-icon { background: transparent; }
    .menu-toggle[aria-expanded="true"] .hamburger-icon::before { top: 0; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .hamburger-icon::after { top: 0; transform: rotate(-45deg); }
    .navigation-expanded { display: none; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 40px rgba(0,0,0,0.1); width: 100%; position: absolute; left: 0; top: 100%; padding-bottom: 2rem; transform: translateY(-10px); opacity: 0; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); pointer-events: none; }
    .navigation-expanded.open { display: block; transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-list { list-style: none; padding: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
    .nav-item { padding: 0.75rem 2rem; width: 100%; }
    .nav-link { text-decoration: none; font-family: "Syncopate", sans-serif; color: var(--text-dark); font-weight: 700; font-size: 1rem; letter-spacing: 1px; width: 100%; display: block; }
}
@media (min-width: 769px) {
    .header-mobile { display: flex; justify-content: space-between; align-items: center; padding: 2rem 4rem; z-index: 1000; position: fixed; width: 100%; pointer-events: none; }
    .logo-mobile { pointer-events: auto; color: var(--text-dark); }
    .menu-toggle { display: none; }
    .navigation-expanded { display: block !important; position: fixed; top: 2rem; right: 4rem; z-index: 1000; pointer-events: auto; }
    .nav-list { display: flex; gap: 3rem; list-style: none; padding: 0;}
    .nav-list.glass-panel { padding: 1rem 2rem; border-radius: 2rem; }
    .nav-link { text-decoration: none; font-family: "Syncopate", sans-serif; color: var(--text-dark); font-weight: 700; font-size: 0.9rem; transition: color 0.3s ease;}
    .nav-link:hover { color: var(--primary-orange); }
}
