:root {
    /* Advanced Deep Palette */
    --navy-deep: #02040a;
    --navy-main: #050a18;
    --navy-light: #0a1128;
    --gold: #c5a028;
    --gold-bright: #f1d262;
    --gold-glow: rgba(197, 160, 40, 0.3);
    --white: #fafafa;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    
    /* Advanced Glassmorphism */
    --glass-bg: rgba(10, 17, 40, 0.4);
    --glass-border: rgba(197, 160, 40, 0.15);
    /* Improved inner-glow visibility */
    --glass-inner-light: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(40px);
    
    /* Spacing & Motion */
    --container-width: 1440px;
    --section-padding: 160px 0;
    --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.4s ease-out;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth; /* Standard browser smooth scrolling */
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--navy-deep);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Premium CSS Noise Generator (Replacing broken SVG) */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAApb+/vAAAABlBMVEUAAAD///+l2Z/dAAAAbUlEQVR4Xu3XMQoAIAxDUe/+N+6W0i0InS7vXyBghvAr6qq6eZ6Z6ZkZmZl5mZmZ6ZkZmZl5mZmZ6ZkZmZl5mZmZ6ZkZmZl5mZmZ6ZkZmZl5mZmZ6ZkZmZl5mZmZ6f8f8AJm8A/Y/wAAAABJRU5ErkJggg==');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Floating Anti-Gravity Background Icons */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: var(--gold);
    opacity: 0.1;
    font-size: 2rem;
    filter: blur(1px);
    animation: float-around 20s linear infinite;
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(100px, 150px) rotate(120deg); }
    66% { transform: translate(-150px, 200px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

h1, h2, h3, h4, .badge {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold-bright);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--gold-bright);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out, background 0.3s ease;
}

.cursor-follower.active {
    transform: scale(1.5);
    background: rgba(212, 175, 55, 0.1);
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--gold));
    animation: loaderPulse 2s infinite ease-in-out;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
    animation: loaderBar 2s infinite linear;
}

.loader-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Video Background */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    transition: transform 0.1s ease-out; /* For smooth parallax */
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(2, 4, 10, 0.2) 0%, var(--navy-deep) 100%);
    z-index: -2;
    pointer-events: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(2, 4, 10, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(to right, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(to right, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.logo img {
    height: 45px;
    filter: drop-shadow(0 0 5px var(--gold));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.contact-nav {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.contact-nav:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.contact-nav::after {
    display: none;
}

/* Section Components */
section {
    padding: var(--section-padding);
}

.section-header {
    max-width: 800px;
    margin-bottom: 5rem;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.text-gold {
    color: var(--gold);
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    transition: var(--transition-smooth);
    box-shadow: 
        inset 0 1px 1px var(--glass-inner-light),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
    border-color: var(--gold-bright);
    box-shadow: 
        inset 0 1px 1px var(--glass-inner-light),
        0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Service Card Enhancements */
.service-card {
    padding: 3rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content h1 {
    margin-bottom: 2rem;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.cta-primary {
    padding: 1.2rem 2.5rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
}

.cta-primary:hover {
    background: var(--gold-bright);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.cta-secondary {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-border);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
}

.hero-visual {
    position: relative;
    height: 500px;
}

#ai-core-canvas {
    width: 100%;
    height: 100%;
}

.core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
}

/* Trust Bar */
.trust-bar {
    margin-top: 10rem;
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    background: rgba(5, 10, 24, 0.5);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    gap: 4rem;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.marquee-content .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    align-self: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Before/After Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    margin: 4rem auto;
    padding: 0;
    overflow: hidden;
    user-select: none;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.after-img, .before-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--gold);
    z-index: 5;
}

.before-img {
    width: 1000px; /* Base width matching container max */
}

/* Glowing Slider Handle */
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 2px;
    background: var(--gold-bright);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 20px var(--gold-glow), 0 0 5px var(--gold-bright);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--navy-deep);
    box-shadow: 0 0 30px var(--gold-glow), inset 0 0 10px rgba(255,255,255,0.4);
    border: 2px solid var(--white);
}

.label {
    position: absolute;
    bottom: 2rem;
    padding: 0.6rem 1.4rem;
    background: rgba(5, 10, 24, 0.8);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-glow);
    z-index: 12;
}

.label-before { left: 2rem; }
.label-after { right: 2rem; }

/* Success Protocol: Dual Talent Transformation */
.talent-evolution-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.talent-card-v2 {
    position: relative;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.talent-card-v2:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.card-label {
    padding: 1.5rem 3rem;
    font-family: 'Outfit';
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(212, 175, 55, 0.05);
}

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

.pillar-item-h {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
}

.pillar-item-h i {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.pillar-item-h h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.pillar-item-h p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .talent-evolution-dual { grid-template-columns: 1fr; }
    .evolution-pillars-horizontal { grid-template-columns: 1fr; }
}

/* Services Section - Transformed to Grid for Maximum Visibility */
.services-section {
    position: relative;
    padding: var(--section-padding);
}

.services-grid-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

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

.service-card {
    position: relative;
    padding: 0; /* Remove padding to allow image to take full width at top */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--glass-bg), transparent);
}

.service-card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-icon {
    position: absolute;
    top: -2.5rem;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy-deep);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.card-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover .card-bg-glow {
    opacity: 0.2;
}

.card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--gold-bright);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    flex-grow: 1;
}

.card-link {
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-link i {
    transition: var(--transition-fast);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.luxe-card {
    border: 1px solid rgba(197, 160, 40, 0.3);
    overflow: visible;
}

/* Founder Card Centered Layout */
.founder-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: 100%;
    max-width: 750px;
    margin: 6rem auto 0;
    padding: 0; /* Removing card padding to allow image to fill edges */
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.founder-img-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a1428; /* Deep Midnight Blue to match the new logo backdrop */
    border-bottom: 1px solid var(--gold-glow);
    overflow: hidden;
}

.founder-img-wrapper img.main-portrait {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founder-card-logo {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: auto;
    z-index: 10;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.founder-card:hover .founder-card-logo {
    opacity: 1;
    transform: scale(1.1);
}

.founder-card:hover .founder-img-wrapper img {
    transform: scale(1.02);
}

.founder-info {
    width: 100%;
    padding: 3rem 4rem 4rem;
}

.founder-info h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -1.5px;
}

.founder-title {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.founder-bio {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.founder-actions {
    margin-bottom: 3rem;
}

.founder-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.founder-whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    color: white;
}

.founder-whatsapp-btn span {
    font-weight: 900;
}

.founder-signature {
    font-family: 'Outfit';
    font-style: italic;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.4;
    font-weight: 300;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .founder-info {
        padding: 2rem 1.5rem 3rem;
    }
    
    .founder-info h3 {
        font-size: 2.2rem;
    }
    
    .founder-img-wrapper {
        height: 250px;
    }
    
    .founder-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .founder-card.half-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .founder-img-column, .founder-info-column {
        width: 100%;
        flex: none;
    }
    
    .founder-img-column {
        height: 400px;
    }
    
    .founder-info-column {
        padding: 3rem 2rem;
    }
}

/* Contact Section */
.contact-interface {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.contact-pane-left {
    padding: 5rem;
}

.contact-pane-right {
    background: rgba(212, 175, 55, 0.05);
    padding: 5rem;
    border-left: 1px solid var(--glass-border);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--text-muted);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    position: relative;
}

.floating-label input, .floating-label textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.floating-label label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.floating-label input:focus, .floating-label textarea:focus {
    border-bottom-color: var(--gold);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.3rem;
}

.detail-text h4 {
    color: var(--gold-bright);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.detail-text p {
    font-size: 1rem;
    line-height: 1.5;
}

.social-block {
    margin-top: 5rem;
}

.social-block h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
}

/* Footer */
.main-footer {
    padding: 8rem 0 4rem;
    background: var(--navy-deep);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.footer-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.footer-whatsapp-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.footer-whatsapp-link i {
    font-size: 1.4rem;
}

.footer-social .social-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    background: rgba(212, 175, 55, 0.05);
}

.footer-address {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-grid h4 {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 1rem;
}

.footer-grid ul a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.mini-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
}

.mini-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: white;
    outline: none;
}

.mini-form button {
    background: var(--gold);
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    color: var(--navy-deep);
}

.footer-bottom {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mobile-nav-item {
    font-size: 2.5rem;
    font-family: 'Outfit';
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition-fast);
}

.mobile-nav-item:hover {
    color: var(--gold);
}

.mobile-contact-nav {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.5rem;
}

.overlay-bg-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: -1;
}

/* Responsive Grid & Layout */
@media (max-width: 1200px) {
    :root {
        --container-width: 95%;
    }
    
    .section-title { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
    .hero-grid, .about-grid, .contact-interface {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .about-content {
        order: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .section-title { font-size: 2.8rem; }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-pane-left, .contact-pane-right {
        padding: 4rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title { font-size: 2.2rem; }
    
    .badge { font-size: 0.7rem; }
    
    .service-card {
        min-width: 100%;
    }

    .service-card-content {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        left: 1.5rem;
    }
}

/* Premium Scroll Indicator */
.scroll-down-indicator {
    position: relative;
    margin-top: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    pointer-events: none;
    opacity: 0; /* Hidden initially for GSAP reveal */
    z-index: 10;
}

.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s ease-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
}


@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

