@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #050505;
    --surface-color: rgba(14, 14, 14, 0.6);
    --surface-solid: #0e0e0e;
    --text-primary: #ffffff;
    --text-secondary: #a6a6a6;
    
    --gold-base: #B58D3D;
    --gold-light: #E2C078;
    
    --gold-gradient: linear-gradient(135deg, var(--gold-base) 0%, var(--gold-light) 50%, var(--gold-base) 100%);
    --gold-gradient-hover: linear-gradient(135deg, var(--gold-light) 0%, #f4db9a 50%, var(--gold-light) 100%);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --border-subtle: 1px solid rgba(226, 192, 120, 0.15);
    --border-glow: 1px solid rgba(226, 192, 120, 0.4);
    
    --glass-blur: blur(16px);
    --shadow-glow: 0 10px 30px rgba(181, 141, 61, 0.15);
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 10000; /* Above everything */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.preloader-logo {
    width: 55px; /* Small, refined size */
    height: auto;
    opacity: 0.9;
}

.preloader-bar {
    width: 100px;
    height: 1px; /* Very thin, minimal line */
    background: rgba(226, 192, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loading-shimmer 2.5s infinite ease-in-out;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}


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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

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

/* Ambient Spotlights */
body::before, body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 141, 61, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::before {
    top: -100px;
    left: -200px;
}

body::after {
    bottom: -100px;
    right: -200px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    padding-left: 40px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--gold-gradient);
}

/* Header Glassmorphism */
header {
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.logo-img {
    width: 45px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img-footer {
    width: 35px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img, .logo:hover .logo-img-footer {
    transform: scale(1.05);
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-logo { display: none; }

/* Corporate Dash Effect - Top & Bottom */
.nav-links a::before,
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-base);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.nav-links a::before { top: 0; }
.nav-links a::after { bottom: 0; }

.nav-links a:hover {
    color: var(--gold-light);
    letter-spacing: 3.5px; /* Subtle expansion */
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 15px; /* Minimalist dash */
    opacity: 1;
}

/* Dynamic Buttons */
.btn {
    padding: 0.65rem 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Header CTA button — tightly sized to match nav */
header .btn {
    padding: 0.55rem 1.5rem;
    font-size: 0.68rem;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-base);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: rgba(226, 192, 120, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(181, 141, 61, 0.1);
}

section {
    padding: 8rem 5%;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-title h2 span {
    font-style: italic;
    font-weight: 400;
}

/* Hero scroll wrapper — tall so video can be scrubbed */
.hero-scroll-wrapper {
    height: 300vh;   /* JS will override with duration-based height */
    position: relative;
}

/* Hero — sticky so it stays pinned while wrapper scrolls */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

/* Hero Video */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

/* Mobile fallback — use poster image, disable video rendering */
@media (max-width: 1023px) {
    #hero-video {
        display: none;
    }
    .hero {
        background-image: url('../images/hero_bg_1777650457853.png');
        background-size: cover;
        background-position: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* left dark fade */
        linear-gradient(to right, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.6) 55%, rgba(5,5,5,0.05) 100%),
        /* bottom fade to match background */
        linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.6) 25%, transparent 55%);
    z-index: 2;
}

/* Extra bottom bleed so hero flows into next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #050505 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    max-width: 760px;
    position: relative;
    z-index: 3;
    padding-top: 5rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 220px;
    margin-bottom: 2.5rem;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-slide.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.hero h1, .hero-slide h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-slide .subtitle {
    margin-bottom: 0.6rem;
}

.hero-slide p {
    font-size: 1rem;
    color: #e0e0e0;
    max-width: 580px;
    font-weight: 300;
    line-height: 1.7;
}

/* Controls row */
.hero-controls {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Slider dots */
.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(226, 192, 120, 0.25);
    border: 1px solid rgba(226, 192, 120, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold-light);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(226, 192, 120, 0.5);
}

.dot:hover {
    background: rgba(226, 192, 120, 0.6);
}

/* Overlapping Stats Banner */
.stats-banner-container {
    position: relative;
    padding: 0 5%;
    margin-top: -60px;
    z-index: 10;
}

.stats-banner {
    display: flex;
    justify-content: space-between;
    padding: 3.5rem 4rem;
    background: var(--surface-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--border-subtle);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.stats-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 192, 120, 0.3);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(226, 192, 120, 0.2), transparent);
}

.stat-item i {
    color: var(--gold-light);
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}

.stat-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.stat-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Dynamic Cards (Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--surface-solid);
    border: var(--border-subtle);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

/* Radial glow fill */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 110%, rgba(181, 141, 61, 0.12) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Top gold sweep line */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(226, 192, 120, 0.45);
    transform: translateY(-14px);
    box-shadow: 0 8px 0 rgba(181, 141, 61, 0.15),
                0 24px 48px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(226, 192, 120, 0.1);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { left: 0; }

.service-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--gold-light);
    position: relative;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
                background 0.45s ease,
                box-shadow 0.45s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    background: rgba(181, 141, 61, 0.12);
    box-shadow: 0 0 20px rgba(181, 141, 61, 0.2);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.service-card:hover h3 { color: var(--gold-light); }

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.service-card:hover p { color: rgba(255,255,255,0.75); }

/* =========================================================
   PRACTICE CARDS
   ========================================================= */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.practice-card {
    background: rgba(14, 14, 14, 0.4);
    backdrop-filter: blur(8px);
    border: var(--border-subtle);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.practice-card:hover {
    border-color: rgba(226, 192, 120, 0.4);
    background: rgba(20, 16, 6, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(226, 192, 120, 0.08);
}

.practice-card:hover::before { transform: scaleX(1); }

.practice-card i {
    color: var(--gold-light);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
}

.practice-card:hover i {
    transform: scale(1.25) translateY(-3px);
}

.practice-card h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.practice-card:hover h4 { color: var(--gold-light); }

.practice-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.practice-card:hover span { color: rgba(255,255,255,0.6); }

/* =========================================================
   STATS BANNER
   ========================================================= */
.stats-banner {
    display: flex;
    justify-content: space-between;
    padding: 3.5rem 4rem;
    background: var(--surface-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--border-subtle);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.stats-banner:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 192, 120, 0.35);
    box-shadow: 0 28px 56px rgba(0,0,0,0.6),
                0 0 0 1px rgba(226, 192, 120, 0.08);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(226, 192, 120, 0.2), transparent);
}

.stat-item i {
    color: var(--gold-light);
    width: 36px;
    height: 36px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-item:hover i {
    transform: scale(1.25) rotate(-8deg);
}

.stat-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover h4 { color: var(--gold-light); }

/* =========================================================
   TEAM CARDS
   ========================================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-card {
    text-align: center;
    position: relative;
    cursor: pointer;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: var(--border-subtle);
    border-radius: 2px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.team-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

/* Gold tint sweep on hover */
.team-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(181, 141, 61, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.team-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
                filter 0.7s ease;
    display: block;
}

.team-card:hover .team-img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.06);
}

.team-card:hover .team-img-wrapper::after { opacity: 0; }
.team-card:hover .team-img-wrapper::before { opacity: 1; }

.team-card:hover .team-img-wrapper {
    border-color: rgba(226, 192, 120, 0.5);
    box-shadow: 0 12px 32px rgba(181, 141, 61, 0.15),
                0 0 0 1px rgba(226, 192, 120, 0.1);
}

.team-name {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.team-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.team-card:hover .team-role { color: var(--gold-base); }

/* =========================================================
   CONTACT GRID & INFO ITEMS
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    background: var(--surface-solid);
    padding: 5rem;
    border: var(--border-subtle);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-grid:hover {
    border-color: rgba(226, 192, 120, 0.2);
    box-shadow: 0 28px 60px rgba(0,0,0,0.65);
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.info-item:hover { transform: translateX(6px); }

.info-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(226, 192, 120, 0.05);
    border: 1px solid var(--gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    transition: background 0.35s ease,
                transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.35s ease;
}

.info-item:hover .info-item-icon {
    background: rgba(181, 141, 61, 0.12);
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(181, 141, 61, 0.15);
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    margin-top: 4px;
    color: var(--gold-light);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-item:hover p { color: rgba(255,255,255,0.8); }

/* =========================================================
   ABOUT SECTION — Asymmetric layout
   ========================================================= */
.about-section {
    position: relative;
    padding: 10rem 5%;
}

.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.about-img-container {
    position: relative;
    z-index: 1;
    /* NO overflow:hidden here — it would clip the overlapping .about-content */
}

.about-img {
    width: 100%;
    min-height: 600px;
    background-image: url('../images/boardroom_1777650473302.png');
    background-size: cover;
    background-position: center;
    border: var(--border-subtle);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    overflow: hidden; /* clip zoom on the image div itself */
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.7s ease;
}

.about-img-container:hover .about-img {
    transform: scale(1.04);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
}

.about-content {
    background: var(--surface-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 5rem 4rem;
    border: var(--border-subtle);
    margin-left: -100px;
    z-index: 2;
    position: relative;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.6);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.about-content:hover {
    border-color: rgba(226, 192, 120, 0.25);
    box-shadow: -10px 20px 60px rgba(0,0,0,0.7),
                0 0 0 1px rgba(226, 192, 120, 0.06);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* =========================================================
   MISIÓN · VISIÓN · VALORES
   ========================================================= */
.mision-section {
    padding: 8rem 5%;
    position: relative;
}

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

.mvv-card {
    background: var(--surface-solid);
    border: var(--border-subtle);
    border-radius: 2px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* gold top accent line */
.mvv-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 2px;
    background: var(--gold-gradient);
    transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mvv-card:hover { transform: translateY(-10px); border-color: rgba(226,192,120,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.mvv-card:hover::after { left: 0; }

.mvv-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 1.8rem;
    transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1), background 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.12) rotate(6deg);
    background: rgba(181,141,61,0.1);
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mvv-card:hover h3 { color: var(--gold-light); }

.mvv-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values list inside the third card */
.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1rem;
}

.values-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.values-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-base);
    flex-shrink: 0;
}

.mvv-card:hover .values-list li { color: rgba(255,255,255,0.75); }

/* Fortalezas strip */
.fortalezas-strip {
    background: rgba(181, 141, 61, 0.04);
    border: var(--border-subtle);
    border-left: 3px solid var(--gold-base);
    border-radius: 2px;
    padding: 2.5rem 3rem;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.fortalezas-strip:hover {
    background: rgba(181, 141, 61, 0.07);
    border-color: rgba(226,192,120,0.35);
}

.fortalezas-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.fortalezas-inner h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.fortalezas-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =========================================================
   SECTORES & ACTIVIDADES
   ========================================================= */
.actividades-section {
    padding: 8rem 5%;
    background: rgba(10, 8, 3, 0.5);
    position: relative;
}

.actividades-section {
    padding: 10rem 5%;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.actividades-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
    opacity: 0.3;
}

/* Background decorative element */
.actividades-section::after {
    content: 'EXPERIENCIA';
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 15rem;
    font-family: var(--font-heading);
    color: rgba(181, 141, 61, 0.02);
    font-weight: 900;
    pointer-events: none;
    z-index: 0;
}

/* Sector badges row */
.sector-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(226, 192, 120, 0.15);
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.sector-badge i {
    color: var(--gold-base);
    transition: transform 0.4s ease;
}

.sector-badge:hover {
    background: rgba(181, 141, 61, 0.08);
    border-color: var(--gold-light);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.sector-badge:hover i {
    transform: scale(1.2);
}

/* Activities numbered grid */
.actividades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.actividad-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.actividad-item:hover {
    background: rgba(181, 141, 61, 0.03);
    border-color: rgba(226, 192, 120, 0.2);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.actividad-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold-light);
    width: 45px;
    height: 45px;
    border: 1px solid rgba(181, 141, 61, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    background: rgba(181, 141, 61, 0.02);
}

.actividad-item:hover .actividad-num {
    background: var(--gold-base);
    color: var(--bg-color);
    border-color: var(--gold-base);
    transform: scale(1.1) rotate(10deg);
}

.actividad-item h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: var(--gold-light);
    transition: color 0.3s ease;
}

.actividad-item:hover h5 {
    color: var(--text-primary);
}

.actividad-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.actividad-item:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .mvv-grid { grid-template-columns: 1fr; }
    .actividades-grid { grid-template-columns: 1fr; }
    .actividad-item { border-right: none; }
}

@media (max-width: 768px) {
    .fortalezas-inner { flex-direction: column; gap: 1rem; }
    .sector-badges { gap: 0.5rem; }
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--gold-light);
    background: rgba(255,255,255,0.02);
    padding-left: 10px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 2px;
    display: none;
    font-size: 0.9rem;
}
.form-message.success { display: block; border: 1px solid var(--gold-base); color: var(--gold-light); background: rgba(181, 141, 61, 0.1); }
.form-message.error { display: block; border: 1px solid #ff4d4d; color: #ff4d4d; background: rgba(255, 77, 77, 0.1); }

/* Footer */
footer {
    background: var(--bg-color);
    padding: 6rem 5% 2rem;
    border-top: var(--border-subtle);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

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

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border: var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--bg-color);
    border-color: transparent;
    transform: translateY(-3px);
}

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



/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/* Animations - Bi-directional Sync */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom { transform: scale(0.85); }

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 1200px) {
    .about-content { margin-left: -50px; padding: 4rem 3rem; }
    .contact-grid { padding: 3rem; gap: 4rem; }
}

@media (max-width: 1024px) {
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split { grid-template-columns: 1fr; gap: 0; }
    .about-img { min-height: 400px; }
    .about-content { margin-left: 0; margin-top: -50px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    /* Typographic & Spacing Fixes */
    section { padding: 4rem 5%; }
    .hero h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
    
    /* Fullscreen Mobile Menu */
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: radial-gradient(circle at center, rgba(25, 18, 5, 0.98) 0%, rgba(5, 5, 5, 0.98) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-logo {
        display: block;
        margin-bottom: 2rem;
    }
    
    .mobile-logo img {
        width: 85px;
        filter: drop-shadow(0 0 15px rgba(226, 192, 120, 0.4));
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-links a { 
        font-family: var(--font-heading);
        font-size: 1.2rem; 
        color: var(--text-primary);
        letter-spacing: 4px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: inline-block;
        padding: 0.5rem 1rem;
    }
    
    .nav-links a:hover, .nav-links a:active {
        color: var(--gold-light);
        letter-spacing: 6px;
        text-shadow: 0 0 15px rgba(226, 192, 120, 0.2);
    }
    header > .btn-primary { display: none; }
    body.menu-open { overflow: hidden; }

    /* Grid Layouts to 1 column */
    .services-grid { grid-template-columns: 1fr; }
    .practice-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    
    /* Stats Banner Fix */
    .stats-banner-container { margin-top: 0; padding: 2rem 5%; }
    .stats-banner { flex-direction: column; gap: 2.5rem; padding: 2.5rem; }
    .stat-item:not(:last-child)::after { width: 80%; height: 1px; right: 10%; top: auto; bottom: -1.25rem; background: linear-gradient(to right, transparent, rgba(226, 192, 120, 0.2), transparent); }
    
    /* Hero Buttons & Controls */
    .hero-controls { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons a { width: 100%; justify-content: center; }
    
    /* Slider */
    .hero-slide h1 { font-size: 2rem; }
    .hero-slider { min-height: 260px; }
    
    /* Touch optimization */
    .team-img { filter: grayscale(0%) contrast(1); }
}
