/* ═══════════════════════════════════════════════════════════════
   Korab International Consulting — Design System
   Brand Colors: #1B4032 (primary) · #06403E (deep) · #C8A96E (gold)
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    /* Brand Palette */
    --color-primary: #1B4032;
    --color-primary-deep: #06403E;
    --color-primary-light: #2a5a47;
    --color-primary-lighter: #3a7060;
    --color-gold: #C8A96E;
    --color-gold-light: #d4ba85;
    --color-gold-dark: #b09558;

    /* Neutrals — Warm Light */
    --color-bg: #FBF8F3;
    --color-bg-alt: #F3EDE4;
    --color-surface: rgba(27, 64, 50, 0.06);
    --color-surface-hover: rgba(27, 64, 50, 0.10);
    --color-border: rgba(27, 64, 50, 0.12);
    --color-border-hover: rgba(27, 64, 50, 0.25);

    /* Text — Dark on light */
    --color-text: #4a4540;
    --color-text-secondary: #6e675e;
    --color-text-muted: #9e9688;
    --color-text-heading: #1B4032;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --nav-height: 72px;

    /* Effects */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    --shadow-sm: 0 2px 8px rgba(27, 64, 50, 0.06);
    --shadow-md: 0 8px 32px rgba(27, 64, 50, 0.10);
    --shadow-lg: 0 16px 64px rgba(27, 64, 50, 0.12);
    --shadow-glow: 0 0 40px rgba(27, 64, 50, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════ NAVIGATION ═══════════════ */
/* ═══════════════ NAVIGATION ═══════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: transparent;
    /* Initial transparency for Hero section */
    border-bottom: 0.5px solid transparent;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background: rgba(10, 30, 24, 0.95);
    /* Deep dark green luxury background, nearly solid */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(200, 169, 110, 0.3);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: flex-end;
    gap: 0;
    text-decoration: none;
    color: var(--color-text-heading);
}

.logo-k-principal {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Slightly larger as requested */
    color: #E8D9C5;
    /* Light Beige */
    margin-right: 12px;
    line-height: 0.75;
    /* Better bottom alignment */
    font-weight: 700;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-think {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 6px;
    /* Increased for authority and elegance */
    color: #E8D9C5;
    /* Light Beige */
    line-height: 1;
    transition: letter-spacing 0.5s ease;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #E8D9C5;
    font-weight: 400;
    opacity: 0.85;
}

/* -- Navigation Menu -- */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    /* Changed from --space-lg to --space-xl to match existing gap */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #E8D9C5;
    /* Same tone as logo */
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: var(--space-sm) 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link--cta {
    background: var(--color-gold);
    color: var(--color-primary-deep) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-gold-light);
    color: var(--color-primary-deep) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--color-primary-deep) 0%, var(--color-primary) 40%, var(--color-primary-light) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridShift 20s linear infinite;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('Imagen_2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: normal;
    filter: brightness(0.7);
}

@keyframes gridShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

.hero-globe {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 700px;
    opacity: 0.7;
    /* Increased for presence */
    animation: globeRotate 60s linear infinite;
    filter: drop-shadow(0 0 60px rgba(200, 169, 110, 0.3));
    /* Gold Glow */
    backdrop-filter: blur(10px);
    /* Crystal glass effect */
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(200, 169, 110, 0.1) 50%,
            transparent 100%);
    border-radius: 50%;
    z-index: 1;
}

.hero-globe--left {
    right: auto;
    left: -8%;
    width: 45%;
    /* ~75% of original 60% */
    max-width: 500px;
    opacity: 0.5;
    /* Slightly dimmer for depth hierarchy */
    animation-delay: -15s;
    filter: drop-shadow(0 0 40px rgba(200, 169, 110, 0.2));
}

@media (max-width: 768px) {
    .hero-globe {
        display: none;
    }
}

@keyframes globeRotate {
    0% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-50%) rotate(180deg) scale(1.06);
        /* Subtle depth oscillation */
    }

    100% {
        transform: translateY(-50%) rotate(360deg) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    padding: calc(var(--nav-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
}

.hero-header {
    margin-bottom: var(--space-3xl);
    text-align: center;
}

.hero-header .section-line {
    background: var(--color-gold);
    margin: 0 auto var(--space-lg) auto;
}

.hero-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E8D9C5;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.hero-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.86rem, 5.72vw, 4.29rem);
    /* Aumentado 10% respecto a (2.6rem, 5.2vw, 3.9rem) */
    font-weight: 600;
    color: #f3ede4;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero-body {
    width: 100%;
}

.hero-services-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 20px;
    list-style: none;
    margin-bottom: var(--space-2xl);
    padding: 0;
    width: 100%;
}

.hero-services-list li {
    font-family: var(--font-body);
    font-size: 1.36rem;
    font-weight: 700;
    color: #E8D9C5;
    opacity: 0.9;
    letter-spacing: 0.9px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.4;
    text-align: center;
}

.hero-services-list li:not(:last-child)::after {
    content: '•';
    margin-left: 20px;
    color: #E8D9C5;
    opacity: 0.6;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-services-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .hero-services-list li:not(:last-child)::after {
        content: none;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    /* Reducido 25% de 1rem (var(--space-md)) */
    margin-bottom: var(--space-3xl);
    width: 100%;
}

.hero-cta .btn {
    padding: 10.5px 21px;
    /* Reducido 25% de 14px 28px */
    font-size: 0.675rem;
    /* Reducido 25% de 0.9rem */
    border-radius: 4.5px;
    /* Reducido 25% de 6px (var(--radius-sm)) */
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: #f3ede4;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #e8d9c5;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 237, 228, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Values */
/* Hero Values Styles - Archived as they are now merged into hero-section-title */
.hero-values {
    margin-bottom: var(--space-2xl);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ═══════════════ SECTION HEADERS ═══════════════ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary-light);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: var(--space-md);
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto var(--space-lg);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg-alt);
    overflow: hidden;
    min-height: 100vh;
    /* Ensures it fills the screen so the Hero disappears */
    display: flex;
    align-items: center;
    /* Vertically centers the About content in the full screen */
}

.about-bg-image {
    display: none;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: stretch;
    margin-bottom: var(--space-4xl);
}

.about-text {
    padding-right: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-heading);
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
}

.about-text p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.value-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.value-card:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    transform: translateX(4px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(27, 64, 50, 0.08);
    border: 1px solid rgba(27, 64, 50, 0.12);
    color: var(--color-primary);
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-heading);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Stats Ribbon */
.stats-ribbon {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.stats-grid {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    justify-content: space-around !important;
    align-items: flex-start !important;
    gap: 0 !important;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-md);
    position: relative;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(27, 64, 50, 0.15);
    /* Fine vertical divider */
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-sm);
}


/* ═══════════════ SERVICES ═══════════════ */
.services {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(27, 64, 50, 0.12);
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('personas trabando.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: #f3ede4;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    background: #e8d9c5;
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-primary-light);
    opacity: 0.5;
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
    font-weight: 600;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    color: #b29472;
    margin-bottom: var(--space-lg);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(200, 169, 110, 0.15);
    border-color: rgba(200, 169, 110, 0.3);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary-deep);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding-top: 0;
}

.service-details li {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.service-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.4;
    transform: translateY(-50%);
}

.service-card.expanded .service-details {
    max-height: 200px;
    padding-top: var(--space-md);
}

.service-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(27, 64, 50, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    cursor: pointer;
    margin-top: var(--space-md);
    transition: all var(--transition);
}

.service-toggle:hover {
    background: rgba(27, 64, 50, 0.12);
}

.service-card.expanded .service-toggle svg {
    transform: rotate(180deg);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    padding-top: var(--space-md);
    transition: all var(--transition);
    text-decoration: none;
}

.service-link:hover {
    color: var(--color-primary-light);
    gap: var(--space-sm);
}

.service-card[data-href] {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* ═══════════════ TEAM ═══════════════ */
.team {
    padding: var(--space-5xl) 0;
    background: #ffffff;
    /* Requested light/white background */
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: #ffffff;
    border: 1px solid rgba(27, 64, 50, 0.05);
    border-radius: 12px;
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    width: calc(33.333% - 2.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.5s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 64, 50, 0.06);
    border-color: rgba(200, 169, 110, 0.2);
}

.team-card:hover::after {
    width: 80px;
}

.team-avatar {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    flex-shrink: 0;
    margin-bottom: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    filter: grayscale(100%);
    transition: all 0.6s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card:hover .team-avatar {
    filter: grayscale(0%);
    transform: scale(1.05);
    border-color: var(--color-gold);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary-deep);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-gold);
    /* Corporate Gold #c8a96e */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
    flex-grow: 1;
    /* Permite que la descripción ocupe el espacio disponible central */
}

/* ── Team Accordion ── */
.team-accordion {
    width: 100%;
    margin-top: auto;
    /* Empuja el acordeón al final de la tarjeta */
}

.team-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: #eceae7;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #5e534d;
    text-transform: uppercase;
}

.team-accordion-toggle:hover {
    background: #e0ddd9;
}

.team-accordion-toggle[aria-expanded="true"] {
    background: #5e534d;
    color: #ffffff;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.team-accordion-toggle[aria-expanded="true"]:hover {
    background: #4e443f;
}

.accordion-chevron {
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.team-accordion-toggle[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

.team-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s ease;
    background: #f9f7f5;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 0 16px;
}

.team-accordion-content.open {
    padding: 16px;
}

.team-accordion-content p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    text-align: left;
    margin: 0;
}

/* 3-3-2 logic for desktop: The flex justify-content: center naturally handles this
   if we ensure the container width fits exactly 3 items at most. 
   Otherwise, we can use flex-basis. */

@media (max-width: 1024px) {
    .team-card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .team-card {
        width: 100%;
    }
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--color-bg);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: start;
}

.contact-info-column .section-header {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.contact-info-column .section-line {
    margin: 0 0 var(--space-lg);
}

.contact-info-column .section-subtitle {
    margin-bottom: var(--space-xl);
    max-width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(27, 64, 50, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.contact-address-link {
    color: #b29472;
    text-decoration: none;
    transition: opacity var(--transition), text-decoration var(--transition);
    cursor: pointer;
}

.contact-address-link:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    color: #b29472;
}

/* Contact Form */
.contact-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 24px 16px 10px;
    /* More top padding for labels */
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    outline: none;
    transition: all var(--transition);
}

/* Hide actual browser placeholder to avoid double text */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.1);
}

.form-group label {
    position: absolute;
    top: 24px;
    /* Align with input text initially */
    left: 16px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all var(--transition);
    transform-origin: left top;
}

/* Float logic */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: 8px;
    transform: scale(0.75);
    color: var(--color-gold-dark);
    font-weight: 600;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 28px;
}

.form-group textarea~label {
    top: 28px;
}

.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: 8px;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    background: var(--color-primary-deep);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer .logo-k-principal {
    color: #E8D9C5;
}

.footer .logo-think {
    color: #E8D9C5;
}

.footer .logo-sub {
    color: #E8D9C5;
    opacity: 0.85;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-md);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}

.footer-contact a:hover {
    color: var(--color-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    /* About — Tablet: single column */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-text {
        padding-right: 0;
        padding: 0 var(--space-md);
    }

    .about-lead {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}

@media (max-width: 768px) {

    /* ── Navigation (Hamburger Menu) ── */
    .nav-toggle {
        display: flex;
    }

    .nav-toggle span {
        background: var(--color-text);
    }

    /* ── Logo: compact left-aligned block ── */
    .nav-logo {
        align-items: center;
        gap: 6px;
    }

    .logo-k-principal {
        font-size: 2rem;
        margin-right: 6px;
        line-height: 0.85;
    }

    .logo-think {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .logo-sub {
        font-size: 0.45rem;
        letter-spacing: 1.5px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FBF8F3;
        /* Solid cream — no transparency for max readability */
        backdrop-filter: none;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: var(--space-3xl) var(--space-2xl);
        gap: var(--space-xl);
        transition: right var(--transition-slow);
        border-left: 1px solid var(--color-border);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
        z-index: 1001;
    }

    .nav-menu.open {
        right: 0;
    }

    /* Dark corporate text for max contrast on light background */
    .nav-menu .nav-link {
        color: var(--color-primary-deep);
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        padding: var(--space-md) 0;
        /* Larger tap target */
        width: 100%;
        border-bottom: 1px solid rgba(27, 64, 50, 0.08);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--color-gold-dark);
    }

    .nav-menu .nav-link::after {
        background: var(--color-gold);
    }

    /* Dropdown toggle arrow color */
    .nav-menu .dropdown-toggle::after {
        color: var(--color-primary-deep);
        opacity: 1;
    }

    .nav-link--cta {
        margin-top: var(--space-md);
        text-align: center;
        width: 100%;
        border-bottom: none;
        color: #000000 !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border: 1.5px solid #000000 !important;
        font-weight: 700 !important;
    }

    .nav-link--cta:hover {
        background: #000000 !important;
        color: #ffffff !important;
    }

    /* ── Hero ── */
    .hero-content {
        padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
    }

    .hero-globe {
        width: 100%;
        right: -20%;
        opacity: 0.3;
    }

    .hero-values {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* ══ About — Mobile 6.1" Optimization ══ */
    .about {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .about .section-header {
        padding: 0 var(--space-md);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    /* ── Text block: readable on 6.1” screens ── */
    .about-text {
        padding: 0;
        order: 1;
    }

    .about-lead {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.45;
        margin-bottom: var(--space-md);
        text-align: left;
    }

    .about-text p {
        font-family: var(--font-body);
        font-size: 0.88rem;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: var(--space-md);
        text-align: left;
    }

    /* ── Value Cards: Consultoría Estratégica pillar style ── */
    .about-values {
        padding: 0;
        gap: var(--space-lg);
        order: 2;
    }

    .value-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        background: #f3ede4;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        padding: var(--space-2xl) var(--space-xl);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(27, 64, 50, 0.06);
        transition: all var(--transition);
    }

    /* Gold accent top border — service card style */
    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    }

    /* Larger icon container — matching pillar number style */
    .value-icon {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-md);
        background: rgba(200, 169, 110, 0.1);
        border: 1px solid rgba(200, 169, 110, 0.2);
        color: #b29472;
        margin-bottom: var(--space-lg);
    }

    .value-icon svg {
        width: 26px;
        height: 26px;
    }

    .value-card h3 {
        font-size: 1.1rem;
        color: var(--color-primary-deep);
        margin-bottom: var(--space-sm);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .value-card p {
        font-size: 0.88rem;
        color: var(--color-text-secondary);
        line-height: 1.7;
        max-width: 320px;
        margin: 0 auto;
    }

    /* ── Stats ribbon — same width as value cards ── */
    .stats-ribbon {
        flex-direction: column;
        padding: var(--space-xl) !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        background: #f3ede4;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        box-shadow: 0 4px 20px rgba(27, 64, 50, 0.06);
    }

    .stats-grid {
        flex-direction: column !important;
        gap: var(--space-lg) !important;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(27, 64, 50, 0.1);
        padding-bottom: var(--space-lg);
    }

    /* ── Services ── */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* ── Team ── */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    /* ── Contact — centered on mobile ── */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .contact-info-column .section-header {
        text-align: center;
    }

    .contact-info-column .section-line {
        margin: 0 auto var(--space-lg);
    }

    .contact-info-column .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        align-items: center;
        width: 100%;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--space-md);
        width: 100%;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-item>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-label {
        text-align: center;
    }

    .contact-value {
        text-align: center;
        word-break: break-word;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Dropdown Menus (Symmetric Design) ── */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #f3ede4;
    /* Light Cream */
    border: 1px solid rgba(27, 64, 50, 0.1);
    /* Subtle border */
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    width: max-content;
    /* Adapted to text */
    min-width: 200px;
    box-shadow: var(--shadow-md);
    /* Soft shadow */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.dropdown-item:hover {
    background: rgba(200, 169, 110, 0.05);
    /* Very subtle gold tint */
    border-bottom-color: var(--color-gold);
    /* Fine gold line */
    transform: translateX(5px);
}

.dropdown-icon-wrapper {
    flex-shrink: 0;
    width: 14px;
    /* Reduced by 50% from 28px */
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.dropdown-icon-wrapper svg {
    width: 7px;
    /* Reduced by ~50% from 12px */
    height: 7px;
}

.dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-title {
    font-family: var(--font-body);
    /* Unified typography */
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    /* Dark text */
    line-height: 1.2;
}

.dropdown-item:hover .dropdown-title {
    color: var(--color-gold-dark);
}

/* Reduced icons for Services (Specific targeting) */
.services-dropdown .dropdown-icon-wrapper {
    width: 12px;
    height: 12px;
}

.services-dropdown .dropdown-icon-wrapper svg {
    width: 6px;
    height: 6px;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Dropdown indicators */
/* ── Navigation CTA Button ── */
.nav-link--cta {
    border: 1.5px solid #c8a96e !important;
    border-radius: 50px !important;
    padding: 0.7rem 2rem !important;
    margin-left: 1.5rem;
    color: #ffffff !important;
    background: rgba(200, 169, 110, 0.15) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease !important;
}

.nav-link--cta:hover {
    background: #c8a96e !important;
    color: #1a1a1a !important;
    box-shadow: 0 0 25px rgba(200, 169, 110, 0.4);
    transform: translateY(-2px);
}

.nav-link--cta:active {
    transform: translateY(0);
}

/* ── Language Selector ── */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0.6;
    padding: 4px 0;
}

.lang-option:hover {
    opacity: 1;
    color: var(--color-gold-light);
}

.lang-option.active {
    opacity: 1;
    color: var(--color-gold);
}

.lang-divider {
    opacity: 0.2;
    font-weight: 300;
}

.flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .lang-selector {
        margin-left: 1rem;
        margin-top: 1.5rem;
        justify-content: flex-start;
        width: 100%;
        font-size: 0.85rem;
    }

    .flag-icon {
        width: 22px;
        height: 22px;
    }
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform var(--transition);
    display: inline-block;
    opacity: 0.7;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile Dropdown (Responsive adaptation) */
@media (max-width: 820px) {
    .logo-k-principal {
        font-size: 2.2rem;
        margin-right: 10px;
    }

    .logo-think {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
        margin-top: var(--space-sm);
        border-left: 1px solid #c8a96e;
        margin-left: var(--space-md);
    }

    .dropdown.active .dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-menu.open .dropdown-menu li a {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.85rem;
        color: var(--color-text-secondary);
    }

    /* Mobile CTA adaptation */
    .nav-link--cta {
        margin-left: 0 !important;
        margin-top: 1.5rem;
        display: inline-block !important;
        text-align: center;
        width: calc(100% - 2rem);
        margin-inline: 1rem;
        background: rgba(200, 169, 110, 0.05);
    }
}

/* Stats Ribbon Responsive Fix */
@media (max-width: 600px) {
    .stats-ribbon {
        padding: var(--space-xl);
    }

    .stats-grid {
        flex-direction: column !important;
        gap: var(--space-xl) !important;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(27, 64, 50, 0.1);
        padding-bottom: var(--space-md);
        width: 100%;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Contact Redesign Responsive */
@media (max-width: 820px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .contact-info-column .section-header {
        text-align: center;
    }

    .contact-info-column .section-line {
        margin: 0 auto var(--space-lg);
    }

    .contact-details {
        align-items: center;
        width: 100%;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .team-card {
        width: 100%;
        min-width: unset;
    }
}

/* ── Contact Section Styles ── */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 148, 114, 0.1);
    color: var(--color-gold);
    border-radius: 50%;
    transition: all var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--color-gold);
    color: #fff;
    transform: scale(1.1);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--color-text-heading);
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
    display: block;
}

.contact-value:hover {
    color: var(--color-gold);
}