/* CSS Variables - V2 Luxury Tech */
:root {
    /* Colors */
    --brand-teal: #263b36;
    --brand-teal-dark: #1a2824;
    --brand-teal-light: #3a564f;
    --brand-gold: #c5a880;
    --brand-gold-light: #dfc8a6;
    --brand-gold-dark: #a18356;
    
    --text-main: #2b2b2b;
    --text-muted: #5f6368;
    --text-light: #f5f5f7;
    
    --bg-main: #ffffff;
    --bg-alt: #fcfbfa;
    --bg-gray: #f2f2f4;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Borders */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-tilt: transform 0.1s ease-out;
    --border-radius-soft: 24px;
    --border-radius-btn: 30px;
    
    /* Shadow */
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-float: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.15);
    --shadow-strong: 0 30px 60px rgba(38, 59, 54, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--brand-teal);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.relative-z {
    position: relative;
    z-index: 5;
}

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

/* 3D & Tilt Utilities */
.tilt-card {
    will-change: transform;
    transition: var(--transition-tilt);
    transform-style: preserve-3d;
}

.parallax-element {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    will-change: transform;
    z-index: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: var(--transition-medium);
    text-align: center;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--brand-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--brand-gold-dark);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
}

.btn-secondary:hover {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--brand-gold);
}

.btn-nav {
    background-color: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold) !important;
    padding: 8px 20px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-nav:hover {
    background-color: var(--brand-gold);
    color: #fff !important;
}

.full-width {
    width: 100%;
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--brand-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.section-header.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--brand-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-medium);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo img {
    height: 52px;
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a:not(.btn) {
    color: var(--brand-teal);
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--brand-teal);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* For parallax bounds */
    padding-top: 50px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 2;
    padding-top: 60px;
}

.hero-bg {
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    height: 120%; /* Extra height for parallax */
    top: -10%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(38, 59, 54, 0.95) 0%, rgba(26, 40, 36, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(245, 245, 247, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero p em {
    color: var(--brand-gold);
    font-style: normal;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Hero Photo Composition */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 550px;
    position: relative;
}

.hero-photo-composition {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.photo-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--brand-gold) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    z-index: 0;
    animation: pulseGlow 4s infinite alternate;
}

.hero-profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-soft);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: var(--border-radius-soft);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: float3d 6s ease-in-out infinite;
}

.badge-top {
    top: 40px;
    right: -30px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 0px;
    left: -40px;
    animation-delay: 1.5s;
}

.floating-badge i {
    font-size: 1.8rem;
    color: var(--brand-gold);
}

.floating-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.floating-badge small {
    color: var(--brand-gold-light);
    font-size: 0.85rem;
}

@keyframes pulseGlow {
    0% { opacity: 0.2; transform: scale(0.95); }
    100% { opacity: 0.4; transform: scale(1.05); }
}

/* About / 360 Section */
.about {
    background-color: var(--bg-main);
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.about-text, .about-image {
    flex: 1;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--brand-teal);
    font-weight: 500;
}

.features-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background-color: var(--bg-alt);
    padding: 30px;
    border-radius: var(--border-radius-soft);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* 3D Glass Composition */
.about-image {
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.base-layer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-strong);
}

.glass-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 40px;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-float);
    max-width: 320px;
}

.glass-card h4 {
    font-size: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 1rem;
    color: var(--brand-teal);
    font-weight: 500;
    margin: 0;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.shape-left {
    width: 600px; height: 600px;
    left: -200px; top: 10%;
}
.shape-right {
    width: 800px; height: 800px;
    right: -300px; top: 40%;
}

/* Global Section */
.global {
    background-color: var(--brand-teal-dark);
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

.map-bg {
    background-image: url('assets/global_scale_auth.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* native fallback */
    opacity: 0.6;
}

.global-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(26, 40, 36, 0.85);
    z-index: 1;
}

.global .container {
    z-index: 2;
}

.global-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.g-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: var(--border-radius-soft);
    flex: 1;
    max-width: 450px;
    text-align: center;
    box-shadow: var(--shadow-float);
}

.g-card-icon {
    font-size: 3rem;
    color: var(--brand-gold);
    margin-bottom: 25px;
}

.g-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.g-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Sectors Section */
.experience {
    background-color: var(--bg-gray);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-card {
    background-color: var(--bg-main);
    padding: 50px 30px;
    border-radius: var(--border-radius-soft);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 5px;
    background: var(--brand-gold);
}

.sector-icon {
    font-size: 3rem;
    color: var(--brand-teal);
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.sector-card:hover .sector-icon {
    transform: translateZ(20px);
    color: var(--brand-gold);
}

.sector-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Areas / Compliance Section */
.areas {
    background-color: var(--brand-teal);
    position: relative;
    overflow: hidden;
}

.areas-bg-img {
    background: radial-gradient(circle at center, rgba(197,168,128,0.15), transparent 60%);
    width: 150%; height: 150%; left: -25%; top:-25%;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.area-item {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--border-radius-soft);
}

.area-item h3 {
    color: var(--brand-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.area-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

/* Team Marquee Gallery */
.team {
    background-color: var(--bg-main);
    overflow: hidden;
}

.team-marquee-container {
    width: 100%;
    overflow: inherit;
    padding: 20px 0 40px 0;
    position: relative;
    display: flex;
}

.team-marquee-container::before, .team-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.team-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.team-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.team-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    align-items: flex-start;
    animation: scrollTeam 40s linear infinite;
}

.team-marquee:hover {
    animation-play-state: paused;
}

.team-card {
    width: 350px;
    background-color: var(--bg-alt);
    border-radius: var(--border-radius-soft);
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.team-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    text-align: left;
    width: 100%;
    color: #000;
}

.team-details * {
    color: #000;
}

.team-details .details-content {
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 15px;
}

.team-details p {
    font-size: 0.95rem;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
}

.team-card.expanded .team-details {
    max-height: 1500px; /* arbitrary high value for expansion */
    opacity: 1;
}

.toggle-icon {
    margin-top: 15px;
    color: var(--brand-gold);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.team-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

.team-img-placeholder {
    width: 100%;
    height: 340px;
    background-color: var(--bg-gray);
    border-radius: 16px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    margin-bottom: 25px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-img-placeholder::after {
    content: '\f007'; /* FontAwesome user icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(38, 59, 54, 0.08); /* Faint teal color */
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 1rem;
    color: var(--brand-gold);
    font-weight: 500;
}

/* Contact Form */
.contact {
    background-color: var(--bg-alt);
}

.contact-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.15rem;
    color: var(--brand-teal);
    margin-bottom: 20px;
}

.method i {
    color: var(--brand-gold);
    font-size: 1.8rem;
}

.luxury-form {
    background-color: #fff;
    padding: 60px;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--brand-teal);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--bg-gray);
    background-color: var(--bg-alt);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    background-color: #fff;
}

/* Footer */
footer {
    background-color: var(--bg-alt);
    color: var(--text-muted);
    padding-top: 100px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 70px;
}

.sitemap-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
}

.footer-logo {
    height: 78px;
    margin-bottom: 25px;
}

.brand-desc {
    max-width: 350px;
    font-size: 1.05rem;
}

.footer-links h4, .footer-legal h4 {
    color: var(--brand-teal);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links a, .footer-legal a {
    display: block;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--brand-gold);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: var(--bg-main);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 65px; height: 65px;
    bottom: 40px; right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex; align-items: center; justify-content: center;
}

/* Animations */
.floating-scale {
    animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {
    0% {
        transform: translateZ(40px) translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    33% {
        transform: translateZ(50px) translateY(-15px) rotateX(5deg) rotateY(-5deg);
    }
    66% {
        transform: translateZ(40px) translateY(5px) rotateX(-5deg) rotateY(5deg);
    }
    100% {
        transform: translateZ(40px) translateY(0px) rotateX(0deg) rotateY(0deg);
    }
}

@keyframes scrollTeam {
    0% { transform: translateX(0); }
    /* Shifts left by 50% of total width minus half gap */
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Scroll Revealer */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.scroll-reveal.right { transform: translateX(50px); }
.scroll-reveal.active { opacity: 1; transform: translateY(0) translateX(0); }
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

/* Hero Specific Entrada Animations (Blur Reveal) */
.hero-reveal {
    opacity: 0;
    animation: blurReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-reveal-delay {
    opacity: 0;
    animation: blurReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.hero-actions-delay {
    opacity: 0;
    animation: blurReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes blurReveal {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(40px) scale(0.98);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUpAnim { to { opacity: 1; transform: translateY(0); } }

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

/* Mobile Responses */
@media (max-width: 992px) {
    .about-container, .contact-container, .global-cards { flex-direction: column; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-container h1 { font-size: 3rem; }
    .hero-actions { justify-content: center; }
    .hero-photo-composition { max-width: 400px; margin: 0 auto; margin-top: 50px; }
    .badge-top { right: -10px; }
    .badge-bottom { left: -10px; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .sitemap-columns { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
    .glass-card { position: relative; bottom: 0; left: 0; width: 100%; max-width: 100%; margin-top: -30px; }
}

@media (max-width: 1100px) {
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: var(--bg-main);
        flex-direction: column; padding: 20px 0; gap: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
    .hero { min-height: 100vh; padding-top: 80px; }
    .hero h1 { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .section { padding: 80px 0; }
    .sectors-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .luxury-form { padding: 30px; }
}

/* Founder Highlight CSS */
.founder-highlight {
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.founder-card {
    background-color: var(--bg-alt);
    border-radius: var(--border-radius-soft);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.founder-photo {
    flex: 0 0 350px;
}

.founder-photo .team-img-placeholder {
    height: 400px;
    margin-bottom: 0;
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--brand-teal);
}

.founder-role {
    font-size: 1.1rem;
    color: var(--brand-gold);
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.founder-bio p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    .founder-photo {
        flex: 1;
        width: 100%;
    }
}

/* Drop-Aside Layout for Team Cards */
.team-card.drop-aside {
    display: flex;
    flex-direction: row;
    width: 350px;
    height: 590px;
    padding: 25px;
    align-items: flex-start;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.team-card-primary {
    min-width: 300px;
    width: 300px;
    height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-primary .team-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    justify-content: flex-start;
}

.team-card-primary .team-info .toggle-icon {
    margin-top: auto;
    padding-top: 10px;
}

.team-card.drop-aside .team-details-side {
    width: 0;
    opacity: 0;
    overflow: hidden;
    padding-left: 0;
    margin-left: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: normal;
    text-align: left;
}

.team-card.drop-aside.expanded {
    width: 750px;
    height: max-content;
    min-height: 590px;
}

.team-card.drop-aside.expanded .team-details-side {
    width: 350px;
    opacity: 1;
    padding-left: 30px;
    border-left: 1px solid rgba(0,0,0,0.05);
    margin-left: 30px;
}

.side-content {
    width: 290px;
}

.side-content h3 {
    font-size: 1.4rem;
    color: var(--brand-teal);
    margin-bottom: 5px;
}

.side-content .role-title {
    font-size: 0.95rem;
    color: var(--brand-gold);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.side-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .team-card.drop-aside {
        flex-direction: column;
        width: 320px;
        height: auto;
        transition: transform 0.4s ease;
    }
    .team-card-primary {
        width: 100%;
        min-width: unset;
        height: auto;
    }
    .team-card.drop-aside .team-details-side {
        width: 100%;
        max-height: 0;
        opacity: 0;
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        transition: max-height 0.5s ease-in-out, opacity 0.4s ease, margin-top 0.4s ease, padding 0.4s ease;
    }
    .team-card.drop-aside.expanded {
        width: 320px;
        height: auto;
    }
    .team-card.drop-aside.expanded .team-details-side {
        width: 100%;
        max-height: 1500px;
        opacity: 1;
        margin-left: 0;
        margin-top: 20px;
        padding-top: 15px;
        padding-left: 0;
        border-top: 1px solid rgba(0,0,0,0.05);
        border-left: none;
    }
    .team-card.drop-aside.expanded .side-content {
        width: 100%;
    }
    .team-card.drop-aside.expanded .team-info .toggle-icon {
        transform: rotate(90deg);
    }
}
