: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; }

/* Hero Section: Modern Redesign */
.HeroSection {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 4vw;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4vw;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    font-family: 'Syncopate', sans-serif;
    color: var(--text-dark);
}

.text-stroke {
    -webkit-text-stroke: 1.5px var(--primary-orange);
    color: transparent;
    font-weight: 900;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-cta-group {
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(255, 90, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 90, 0, 0.3);
    background: var(--primary-orange-hover);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-icons-grid {
    display: flex;
    gap: 3rem;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.hero-icon-item:hover .icon-circle {
    border-color: var(--primary-orange);
    transform: rotate(15deg) scale(1.1);
    background: var(--glass-bg);
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    color: var(--primary-orange);
}

.hero-icon-item span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Syncopate', sans-serif;
}

/* Image Wrap & Floating Tech */
.hero-image-wrap {
    max-height: 600px;
}

.image-container {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    max-height: 600px;
    /* Removed perspective and rotateY for a 'fixed' static look */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.image-container:hover .hero-main-img {
    transform: scale(1.05);
}

.floating-tech-tag {
    position: absolute;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Syncopate', sans-serif;
    z-index: 20;
    animation: float 4s ease-in-out infinite;
}

.floating-tech-tag.top-right { top: 10%; right: -5%; }
.floating-tech-tag.bottom-left { bottom: 15%; left: -5%; animation-delay: 2s; }

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

/* Background Graphics */
.bg-graphic-circle {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.bg-graphic-mesh {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 30vw;
    height: 30vw;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45v-30z' fill-opacity='0.03' fill='%23FF5A00' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.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; }

.HeroSection .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; }

@media (max-width: 1024px) {
    .HeroSection { padding-top: 120px; }
    .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .hero-description { margin: 0 auto 3rem; }
    .hero-icons-grid { justify-content: center; gap: 2rem; }
    .image-container { border-radius: 3rem; width: 90%; margin: 0 auto; }
    .floating-tech-tag.top-right { right: 0; }
    .floating-tech-tag.bottom-left { left: 0; }
    .ContactUI .content-wrapper, .deep-dive-container, .deep-dive-container.reverse { flex-direction: column; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    * { cursor: auto !important; } .cursor { display: none; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-icons-grid { gap: 1.5rem; flex-wrap: wrap; }
    .hero-icon-item .icon-circle { width: 50px; height: 50px; }
    .hero-icon-item span { font-size: 0.65rem; }
    .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: block; 
        background: rgba(255, 255, 255, 0.98); 
        backdrop-filter: blur(20px); 
        border-radius: 2.5rem; 
        box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
        width: calc(100% - 3rem); 
        position: absolute; 
        left: 50%; 
        top: calc(100% + 1rem); 
        transform: translate(-50%, -10px); 
        padding: 1.5rem 0; 
        opacity: 0; 
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
        pointer-events: none; 
        border: 1px solid rgba(0,0,0,0.05);
    }
    .navigation-expanded.open { 
        transform: translate(-50%, 0); 
        opacity: 1; 
        visibility: visible;
        pointer-events: auto; 
    }
    .nav-list { list-style: none; padding: 0.5rem 0; display: flex; flex-direction: column; width: 100%; filter: none !important; }
    .nav-list.glass-panel { background: transparent !important; border: none !important; box-shadow: none !important; backdrop-filter: none !important; }
    .nav-list.float-hover:hover { transform: none !important; }
    .nav-item { padding: 0.8rem 2.5rem; width: 100%; transition: transform 0.3s ease; }
    .nav-item:hover { transform: translateX(5px); }
    .nav-link { text-decoration: none; font-family: "Syncopate", sans-serif; color: var(--text-dark); font-weight: 700; font-size: 1.1rem; letter-spacing: 1px; width: 100%; display: block; border-bottom: 1px solid rgba(0,0,0,0.03); padding-bottom: 0.5rem; }
    .nav-item:last-child .nav-link { border-bottom: none; }
}
@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); }
}
