@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;600;800&display=swap');

/* ==========================================================================
   CSS VARIABLES - LUXURY ORGANIC THEME
   ========================================================================== */
:root {
    --bg-deep: #020b0d;
    /* Very deep dark green/teal */
    --bg-surface: #06161a;
    --accent-gold: #D4AF37;
    --accent-glow: rgba(212, 175, 55, 0.2);
    --text-light: #F4F0EA;
    --text-dim: #9FA8A9;
    --border-thin: rgba(244, 240, 234, 0.1);

    --font-heading: 'Instrument Serif', serif;
    --font-body: 'Outfit', sans-serif;

    --nav-height: 100px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg-deep);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Ambient Liquid Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at 50% 50%, rgba(5, 41, 48, 0.4), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05), transparent 40%);
    z-index: -2;
    pointer-events: none;
    animation: slowDrift 20s infinite alternate linear;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 10rem);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 6rem);
}

h3 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-family: var(--font-body);
    font-weight: 300;
}

h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.125rem;
    color: var(--text-dim);
}

a {
    color: var(--text-light);
    text-decoration: none;
    cursor: none;
}

ul {
    list-style: none;
}

/* Custom Cursor System */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring.hovered {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(2px);
}

/* Layout Utils */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.py-large {
    padding: 12rem 0;
}

.text-center {
    text-align: center;
}

.italic {
    font-style: italic;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-deep);
    background: var(--accent-gold);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: 0.5s var(--ease-out-expo);
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.btn-gold:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-gold:hover {
    color: var(--bg-deep);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* ==========================================================================
   HEADER & HAMBURGER NAV (ALL PAGES, ALL DEVICES)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 2000;
    transition: background 0.4s, height 0.4s;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(2, 11, 13, 0.85);
    backdrop-filter: blur(10px);
    height: 80px;
    border-bottom: 1px solid var(--border-thin);
}

.logo img {
    height: 50px;
    filter: invert();
}

/* Hamburger Button */
.hamburger-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-thin);
    border-radius: 50%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: none;
    transition: border-color 0.3s;
    z-index: 2001;
}

.hamburger-btn:hover {
    border-color: var(--accent-gold);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-light);
    transition: 0.4s var(--ease-in-out);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--accent-gold);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--accent-gold);
}

/* Full Screen Menu Overlay */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-deep);
    z-index: 1999;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at 95% 5%);
    transition: clip-path 0.8s var(--ease-in-out);
}

.fullscreen-nav.open {
    clip-path: circle(150% at 95% 5%);
}

.nav-menu-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-menu-list a {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s var(--ease-out-expo);
}

.fullscreen-nav.open .nav-menu-list a {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-nav.open .nav-menu-list a:nth-child(1) {
    transition-delay: 0.2s;
}

.fullscreen-nav.open .nav-menu-list a:nth-child(2) {
    transition-delay: 0.3s;
}

.fullscreen-nav.open .nav-menu-list a:nth-child(3) {
    transition-delay: 0.4s;
}

.fullscreen-nav.open .nav-menu-list a:nth-child(4) {
    transition-delay: 0.5s;
}

.nav-menu-list a:hover {
    color: var(--accent-gold);
    font-style: italic;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-tag {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: block;
    animation: fadeUp 1s 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeUp 1s 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-light);
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeUp 1s 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================================================
   ABOUT / PHILOSOPHY
   ========================================================================== */
.about-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-thin);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-3d-element {
    width: 100%;
    height: 500px;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s;
}

.about-3d-element:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-3d-element h2 {
    font-size: 8rem;
    opacity: 0.1;
    color: var(--accent-gold);
}

/* ==========================================================================
   SERVICES (ACCORDION / GRID)
   ========================================================================== */
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.service-card {
    padding: 4rem;
    border: 1px solid var(--border-thin);
    border-radius: 15px;
    background: var(--bg-deep);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.4s;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ==========================================================================
   INDUSTRIES (HOVER EXPAND)
   ========================================================================== */
.industries-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-thin);
}

.ind-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
}

.ind-row {
    padding: 3rem;
    border: 1px solid var(--border-thin);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s var(--ease-out-expo);
    cursor: none;
}

.ind-row h4 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: none;
    margin: 0;
    transition: 0.3s;
}

.ind-row:hover {
    background: var(--accent-gold);
    color: var(--bg-deep);
    padding-left: 5rem;
}

.ind-row:hover h4 {
    color: var(--bg-deep);
    font-style: italic;
}

/* ==========================================================================
   INTERACTIVE: LUXURY CALCULATOR
   ========================================================================== */
.calc-section {
    position: relative;
    border-bottom: 1px solid var(--border-thin);
}

.calc-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 5rem;
    backdrop-filter: blur(10px);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.range-group {
    margin-bottom: 3rem;
}

.range-group label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    background: var(--border-thin);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    margin-top: -9px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.calc-result {
    text-align: center;
    border-left: 1px solid var(--border-thin);
    padding-left: 4rem;
}

.calc-result h5 {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.roi-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent-gold);
    line-height: 1;
}

/* ==========================================================================
   INTERACTIVE: DYNAMIC REPORTING
   ========================================================================== */
.report-section {
    background: var(--bg-surface);
}

.report-container {
    border: 1px solid var(--border-thin);
    border-radius: 20px;
    padding: 4rem;
    margin-top: 4rem;
}

.chart-row {
    margin-bottom: 2rem;
}

.chart-label {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.chart-track {
    width: 100%;
    height: 10px;
    background: var(--bg-deep);
    border-radius: 10px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    transition: width 1.5s var(--ease-out-expo);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.testi-card {
    padding: 4rem 3rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-thin);
    border-radius: 15px;
    text-align: center;
}

.testi-card p {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testi-card h6 {
    color: var(--accent-gold);
}

/* ==========================================================================
   CONTACT CTA SECTION
   ========================================================================== */
.cta-section {
    text-align: center;
    border-top: 1px solid var(--border-thin);
}

.cta-title {
    font-size: clamp(4rem, 8vw, 8rem);
    margin-bottom: 2rem;
}

.cta-form {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: left;
}

.input-line {
    margin-bottom: 2rem;
    position: relative;
}

.input-line input,
.input-line textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-thin);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.2rem;
    outline: none;
    transition: 0.3s;
}

.input-line input:focus,
.input-line textarea:focus {
    border-bottom-color: var(--accent-gold);
}

.input-line label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-dim);
    pointer-events: none;
    transition: 0.3s;
}

.input-line input:focus~label,
.input-line input:valid~label,
.input-line textarea:focus~label,
.input-line textarea:valid~label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */
.chat-btn-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.chat-btn-fixed:hover {
    transform: scale(1.1);
}

.chat-btn-fixed svg {
    width: 30px;
    height: 30px;
    fill: var(--bg-deep);
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--bg-surface);
    border: 1px solid var(--accent-gold);
    border-radius: 15px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.4s var(--ease-out-expo);
}

.chat-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-head {
    background: var(--accent-gold);
    padding: 1rem;
    color: var(--bg-deep);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chat-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bg-deep);
    cursor: none;
}

.chat-body {
    padding: 1.5rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.chat-input {
    display: flex;
    border-top: 1px solid var(--border-thin);
}

.chat-input input {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: white;
    outline: none;
}

.chat-input button {
    padding: 0 1rem;
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-weight: bold;
    cursor: none;
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border-thin);
    padding: 6rem 0 2rem;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.footer-logo {
    margin-bottom: 3rem;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-thin);
}

.footer-col h6 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a {
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.giant-footer-bg {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-header {
    padding: 12rem 0 4rem;
    background: var(--bg-surface);
    text-align: center;
    border-bottom: 1px solid var(--border-thin);
}

.legal-content-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content-wrap h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
}

.legal-content-wrap p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowDrift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments (Mobile full-screen nav works perfectly) */
@media (max-width: 1024px) {

    .about-grid,
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-result {
        border-left: none;
        border-top: 1px solid var(--border-thin);
        padding-left: 0;
        padding-top: 3rem;
    }

    .service-list,
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .service-list,
    .testi-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(3rem, 12vw, 4rem);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about-3d-element {
        height: 300px;
    }
}