/* ============================================================
   MC HSEQ CONSULTING — Premium Corporate Website
   Brand Colors: Navy #1C3766 | Gold #C4973A | Green #2E6B45
   ============================================================ */

/* CSS Custom Properties */
:root {
    /* Brand Palette */
    --navy: #1C3766;
    --navy-dark: #0F2347;
    --navy-deeper: #0A1A38;
    --gold: #C4973A;
    --gold-light: #D4AB56;
    --gold-glow: rgba(196, 151, 58, 0.3);
    --green: #2E6B45;
    --green-light: #3A8556;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8F9FB;
    --gray-100: #F0F2F5;
    --gray-200: #E2E5EA;
    --gray-300: #C8CDD5;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --font-body: 'Montserrat', Arial, Helvetica, sans-serif;

    /* Spacing */
    --container-max: 1240px;
    --section-padding: 7rem 0;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 4rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 8px rgba(28, 55, 102, 0.06);
    --shadow-md: 0 8px 30px rgba(28, 55, 102, 0.1);
    --shadow-lg: 0 20px 60px rgba(28, 55, 102, 0.15);
    --shadow-gold: 0 8px 30px rgba(196, 151, 58, 0.25);

    /* WhatsApp */
    --wa-green: #25D366;
    --wa-dark: #128C7E;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

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

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

ul { list-style: none; }

::selection {
    background: var(--gold);
    color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.section { padding: var(--section-padding); }
.section-light { background: var(--gray-50); }
.section-dark { background: var(--navy-dark); }
.section-accent {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.section-label.center {
    justify-content: center;
}

.section-label span {
    color: var(--gold);
}

.label-hex {
    width: 12px;
    height: 12px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.label-hex.light { background: var(--gold-light); }

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-title.light { color: var(--white); }

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.section-desc.light { color: rgba(255,255,255,0.7); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.hexagon-loader {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: hex-rotate 2s linear infinite;
}

.hex-side {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hex-pulse 2s ease-in-out infinite;
}

.hex-side:nth-child(2) { animation-delay: 0.3s; transform: scale(0.8); opacity: 0.6; }
.hex-side:nth-child(3) { animation-delay: 0.6s; transform: scale(0.6); opacity: 0.3; }

@keyframes hex-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes hex-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.preloader-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 6px;
    font-weight: 700;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(28, 55, 102, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 10001;
}

.nav-brand-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar.scrolled .nav-brand-text {
    color: var(--navy);
}

.nav-logo {
    height: 55px;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1));
}

.navbar.scrolled .nav-logo {
    height: 42px;
    filter: none;
}

.nav-logo {
    height: 52px;
    width: auto;
    transition: var(--transition);
    mix-blend-mode: screen;
}

.navbar.scrolled .nav-logo {
    height: 42px;
    mix-blend-mode: multiply;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0.75rem;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
}

.navbar.scrolled .nav-link {
    color: var(--navy);
}

.nav-brand-text {
    transition: var(--transition);
}
.navbar.scrolled .nav-brand-text {
    color: var(--navy) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link.cta-nav {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.nav-link.cta-nav::after { display: none; }

.nav-link.cta-nav:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 10001;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--navy); }

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 35, 71, 0.92) 0%,
        rgba(28, 55, 102, 0.88) 40%,
        rgba(10, 26, 56, 0.95) 100%
    );
}

/* Floating hexagons */
.hex-decoration {
    position: absolute;
    border: 1px solid rgba(196, 151, 58, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    animation: float-hex 20s ease-in-out infinite;
}

.hex-1 {
    width: 300px; height: 300px;
    top: 10%; right: -5%;
    animation-delay: 0s;
}

.hex-2 {
    width: 200px; height: 200px;
    bottom: 15%; left: -3%;
    animation-delay: -7s;
}

.hex-3 {
    width: 150px; height: 150px;
    top: 40%; right: 15%;
    animation-delay: -14s;
    border-color: rgba(196, 151, 58, 0.08);
}

@keyframes float-hex {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
    75% { transform: translateY(-40px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    margin-top: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto 2rem;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-badge span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 151, 58, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.15rem 2.75rem;
    font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    margin: 0 auto 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { top: 8px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.about-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-hex {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0 !important;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.floating-badge {
    position: absolute;
    bottom: -25px;
    left: -20px;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--gold);
    animation: float-badge 5s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-badge-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.fb-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.fb-subtitle {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ============================================================
   METHODOLOGY SECTION (Timeline)
   ============================================================ */
.methodology-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 3rem;
}

.timeline-line {
    position: absolute;
    top: calc(3rem + 36px);
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(196, 151, 58, 0.3));
}

.phase-card {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* Double hexagon matching the MC HSEQ isotipo */
.phase-hex-outer {
    width: 72px;
    height: 72px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-hex-outer::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.phase-hex-inner {
    width: 58px;
    height: 58px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-hex-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.phase-hex-inner span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.phase-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.phase-content:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.phase-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: rgba(196, 151, 58, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}

.phase-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.phase-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 1 1 340px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(196, 151, 58, 0.02) 0%, var(--white) 100%);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.service-hex-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}

.service-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(196, 151, 58, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.service-card h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 0.6rem;
}

.service-card > p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
    margin-bottom: 1.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.15rem 0;
    font-size: 0.7rem;
    color: var(--gray-700);
    line-height: 1.2;
}

.service-features li i {
    color: var(--green);
    font-size: 0.8rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.service-cta:hover {
    color: var(--navy);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

/* ============================================================
   SECTORS SECTION
   ============================================================ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.sector-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sector-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-glow);
    transform: translateY(-8px);
}

.sector-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1.25rem;
    background: rgba(196, 151, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    background: var(--gold);
    color: var(--white);
}

.sector-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.sector-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================================
   POLICIES SECTION
   ============================================================ */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.policy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.policy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    transform: scaleX(0);
    transition: var(--transition);
}

.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.policy-card:hover::after {
    transform: scaleX(1);
}

.policy-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(28, 55, 102, 0.06) 0%, rgba(196, 151, 58, 0.06) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
}

.policy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.policy-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 71, 0.93) 0%, rgba(28, 55, 102, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy-deeper);
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1.25rem;
    mix-blend-mode: screen;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-social a:hover .fa-spotify { color: #1DB954; }
.footer-social a:hover .fa-instagram { color: #E4405F; }
.footer-social a:hover .fa-tiktok { color: #000000; background: white; border-radius: 50%; }
.footer-social a:hover .fa-linkedin-in { color: #0077B5; }
.footer-social a:hover .fa-whatsapp { color: #25D366; }
.footer-social a:hover .fa-envelope { color: var(--gold); }

.footer-nav h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--gold);
    width: 18px;
    font-size: 0.9rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

.contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-legal {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 9000;
    width: 62px;
    height: 62px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    background: var(--wa-dark);
    transform: scale(1.1);
    animation: none;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.92);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .methodology-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line { display: none; }

    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
        width: 100%;
        padding: 2rem; /* Increased padding */
        flex: none !important; /* Stop flex-basis from restricting height */
        height: auto !important; /* Force height to grow with content */
        min-height: min-content !important;
    }

    .service-card-header {
        margin-bottom: 1rem;
        gap: 0.8rem;
    }

    .service-hex-icon {
        width: 55px; /* Restored size */
        height: 55px;
        min-width: 55px;
        font-size: 1.25rem;
    }

    .featured-badge {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .service-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .service-card h3 {
        font-size: 1.4rem; /* Larger title */
    }

    .service-card h4 {
        font-size: 0.85rem; /* Larger subtitle */
        margin-bottom: 0.8rem;
    }

    .service-card > p {
        font-size: 0.95rem; /* Larger text */
        margin-bottom: 1.2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .service-features li {
        font-size: 0.9rem; /* Larger list items */
        padding: 0.25rem 0;
    }
    
    .service-cta {
        font-size: 1rem; /* Larger button */
        margin-top: auto;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .nav-brand-text {
        font-size: 0.9rem !important;
        letter-spacing: 0px !important;
        white-space: nowrap;
    }

    .hamburger {
        display: flex !important;
        margin-left: auto;
        width: 30px;
        height: 22px;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        background-color: var(--gold) !important;
        height: 2px;
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--white) !important;
        font-size: 1.3rem;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.3rem !important;
        margin-top: 7rem !important;
        line-height: 1.2 !important;
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .methodology-timeline {
        grid-template-columns: 1fr;
    }

    .sectors-grid, .policies-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .page-header {
        padding: 8rem 1rem 4rem;
    }

    .analysis-hero {
        min-height: 280px;
        padding-top: 60px;
    }

    .cta-content h2 { font-size: 2rem; }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .floating-badge {
        left: 0;
        bottom: -15px;
    }

    .about-img-accent { display: none; }

    .whatsapp-float {
        bottom: 25px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 30px;
        z-index: 10002;
    }
}

@media (max-width: 480px) {
    .hero-title { 
        font-size: 2.2rem; 
        margin-top: 4.5rem;
    }
    .hero-badge span { font-size: 0.65rem; letter-spacing: 2px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
}

/* ============================================================
   NEW CUSTOM CLASSES (TWEAKS)
   ============================================================ */
/* ============================================================
   NEW CUSTOM CLASSES (TWEAKS)
   ============================================================ */
.simple-icon-gold {
    color: var(--gold);
    font-size: 2.2rem;
    transition: var(--transition);
}

.about-feature:hover .simple-icon-gold {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(196, 151, 58, 0.4));
}

.simple-service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.animated-blue-hover {
    transition: var(--transition);
}

.service-card:hover .animated-blue-hover {
    color: var(--navy);
    transform: scale(1.1);
}

.animated-hex-hover {
    transition: var(--transition);
}

.phase-card:hover .animated-hex-hover {
    transform: scale(1.15);
}
.phase-card:hover .animated-hex-hover::before,
.phase-card:hover .animated-hex-hover .phase-hex-inner::before {
    border-color: #ffffff;
}
.phase-card:hover .animated-hex-hover .phase-hex-inner span {
    color: #ffffff;
}

/* Continuidad entre fases */
@media (min-width: 769px) {
    .phase-card {
        position: relative;
    }
    .phase-card:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 36px;
        left: calc(50% + 36px);
        width: calc(100% + 2rem - 72px);
        height: 2px;
        background: var(--gold);
        opacity: 0.5;
        z-index: 1;
    }
}
@media (max-width: 768px) {
    .phase-card:not(:last-child) .phase-number::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 100%;
        width: 2px;
        height: 1.5rem;
        background: var(--gold);
        transform: translateX(-50%);
        opacity: 0.5;
    }
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news-card {
        margin-bottom: 1rem;
    }
}

/* ============================================================
   ARTICLE SYSTEM (Premium Analysis Format)
   ============================================================ */

.analysis-hero {
    height: 45vh;
    min-height: 350px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.analysis-hero h1 {
    color: white !important;
}

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 12rem 0 6rem;
    text-align: center;
    color: var(--white);
}

.analysis-hero.green-hero {
    background: linear-gradient(135deg, #1a3c34 0%, #2d5a27 100%);
}

.analysis-hero.red-hero {
    background: linear-gradient(135deg, #4b1a1a 0%, #8b2c2c 100%);
}

.analysis-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.03' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.analysis-container {
    max-width: 1200px;
    margin: -60px auto 100px;
    background: white;
    padding: 5rem 6rem;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.analysis-content h1, .analysis-content h2, .analysis-content h3 {
    color: var(--navy);
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
}

.analysis-content h1 { font-size: 2.8rem; line-height: 1.2; margin-top: 2rem; }
.analysis-content h2 { font-size: 2rem; margin-top: 3.5rem; border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: 0.5rem; }
.analysis-content h3 { font-size: 1.4rem; margin-top: 2rem; color: var(--gold); }

.analysis-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.analysis-content ul, .analysis-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.analysis-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--gray-700);
    position: relative;
    list-style: none;
}

.analysis-content ul li::before {
    content: "◈";
    color: var(--gold);
    position: absolute;
    left: -1.8rem;
    font-size: 0.8rem;
    top: 0.2rem;
}

.analysis-table-container {
    overflow-x: auto;
    margin: 2.5rem 0;
    border: 1px solid #eee;
    border-radius: 8px;
}

.analysis-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.analysis-table th {
    background: #f8f9fa;
    color: var(--navy);
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--gold);
}

.analysis-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.analysis-table tr:nth-child(even) {
    background: #fafafa;
}

.important-box {
    background: #fdfaf0;
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.important-box h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-cta-block {
    background: var(--navy);
    color: white;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .download-cta-block {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }
    .download-cta-block h3 {
        font-size: 1.5rem;
    }
}

.download-cta-block h3 {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 0;
}

.download-cta-block p {
    color: white !important;
    opacity: 0.9;
    font-size: 1.1rem;
    margin-top: 10px;
}

.analysis-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analysis-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .analysis-container {
        padding: 2.5rem 1.5rem;
        margin: -40px 1rem 60px;
    }
    .analysis-content h1 { font-size: 2rem; }
    .analysis-content h2 { font-size: 1.6rem; }
    .download-cta-block { padding: 2rem 1.5rem; }
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-card {
    background: var(--navy-dark);
    padding: 3rem;
    border-radius: var(--radius-lg);
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 151, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method-item:hover .method-icon {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.method-icon.wa-icon {
    color: var(--wa-green);
    background: rgba(37, 211, 102, 0.1);
}

.contact-method-item:hover .method-icon.wa-icon {
    background: var(--wa-green);
    color: var(--white);
}

.method-text h4 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.method-text p, .method-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Form Styles */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(196, 151, 58, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.privacy-checkbox a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.2rem !important;
        margin: 0 auto 2.5rem !important;
        width: 88% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    .contact-info-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: -0.5px;
    }

    .contact-info-card p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        opacity: 0.9;
    }

    .method-text h4 {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
    }

    .method-text p, .method-text a {
        font-size: 0.9rem !important;
        letter-spacing: 0;
    }

    .method-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .contact-form-wrapper {
        padding: 1.8rem 1.2rem !important;
        margin: 0 auto !important;
        width: 88% !important;
        max-width: 100% !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
    }

    .form-group label {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-control {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}


.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .lang-switcher {
    border-left-color: rgba(28, 55, 102, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar.scrolled .lang-btn {
    color: var(--navy);
}

.lang-btn i {
    font-size: 0.9rem;
    color: var(--gold-light);
}

.navbar.scrolled .lang-btn i {
    color: var(--gold);
}

.lang-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.navbar.scrolled .lang-btn:hover {
    background: rgba(196, 151, 58, 0.05);
}

.lang-btn.active {
    opacity: 1;
    color: var(--gold);
    background: rgba(196, 151, 58, 0.1);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    font-size: 0.8rem;
}

.navbar.scrolled .lang-divider {
    color: rgba(28, 55, 102, 0.2);
}

@media (max-width: 991px) {
    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1.5rem;
        justify-content: center;
        width: 100%;
    }
    .lang-btn {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
}

