/* ============================================
   Veterinaria Los Certales - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Colors --- */
:root {
    --navy-50: #e8ecf4;
    --navy-100: #c5cfe4;
    --navy-200: #8fa0c9;
    --navy-300: #5970ae;
    --navy-400: #2d4993;
    --navy-500: #002878;
    --navy-600: #002060;
    --navy-700: #001948;
    --navy-800: #001130;
    --navy-900: #000a18;

    --orange-50: #fff6eb;
    --orange-100: #ffe8cc;
    --orange-200: #ffd199;
    --orange-300: #ffb966;
    --orange-400: #ffa233;
    --orange-500: #ff8200;
    --orange-600: #cc6800;
    --orange-700: #994e00;
    --orange-800: #663400;
    --orange-900: #331a00;

    --olive-50: #f7f7f0;
    --olive-100: #eeeedd;
    --olive-200: #ddddb8;
    --olive-300: #c8c88e;
    --olive-400: #b3b368;
    --olive-500: #9e9e4c;
    --olive-600: #84843d;
    --olive-700: #6b6b33;
    --olive-800: #56562c;
    --olive-900: #474728;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

/* --- Utilities --- */
.vlc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.vlc-text-orange {
    color: var(--orange-500);
}

.vlc-text-olive {
    color: var(--olive-500);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.vlc-animate {
    opacity: 0;
}

.vlc-animate--visible {
    animation-fill-mode: both;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}

.vlc-animate--visible[data-animation="fadeInUp"] {
    animation-name: fadeInUp;
}

.vlc-animate--visible[data-animation="fadeIn"] {
    animation-name: fadeIn;
}

/* --- Topbar --- */
.vlc-topbar {
    background: var(--navy-600);
    color: #fff;
    font-size: 0.875rem;
}

.vlc-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.vlc-topbar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vlc-topbar__item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.vlc-topbar__item a:hover {
    color: var(--orange-400);
}

@media (max-width: 767px) {
    .vlc-topbar {
        display: none;
    }
}

/* --- Header --- */
.vlc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.vlc-header--scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.vlc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.vlc-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vlc-header__logo-img {
    width: 9rem;
    height: 9rem;
    object-fit: contain;
}

.vlc-header__logo .custom-logo {
    width: 9rem;
    height: 9rem;
    object-fit: contain;
}

.vlc-header__logo-text {
    line-height: 1.2;
}

.vlc-header__logo-title {
    display: block;
    font-weight: 900;
    color: var(--navy-600);
    font-size: 1.125rem;
    letter-spacing: -0.025em;
}

.vlc-header__logo-subtitle {
    display: block;
    font-weight: 300;
    color: var(--olive-600);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* --- Navigation --- */
.vlc-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vlc-nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-600);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.vlc-nav__link:hover {
    color: var(--navy-600);
    background: var(--navy-50);
}

.vlc-nav__cta {
    margin-left: 1rem;
    padding: 0.625rem 1.5rem;
    background: var(--orange-500);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.2s;
}

.vlc-nav__cta:hover {
    background: var(--orange-600);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,130,0,0.25);
}

.vlc-header__toggle {
    display: none;
    padding: 0.5rem;
    color: var(--navy-600);
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.vlc-header__toggle:hover {
    background: var(--navy-50);
}

@media (max-width: 1023px) {
    .vlc-nav {
        display: none;
    }
    .vlc-header__toggle {
        display: block;
    }
}

/* --- Mobile Menu --- */
.vlc-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--gray-100);
}

.vlc-mobile-menu--open {
    display: block;
}

.vlc-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.vlc-mobile-menu__link {
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.vlc-mobile-menu__link:hover {
    color: var(--navy-600);
    background: var(--navy-50);
}

.vlc-mobile-menu__cta {
    display: block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--orange-500);
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 9999px;
    transition: background 0.2s;
}

.vlc-mobile-menu__cta:hover {
    background: var(--orange-600);
    color: #fff;
}

/* --- Section Header --- */
.vlc-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vlc-section-header__tag {
    color: var(--orange-500);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vlc-section-header__tag--light {
    color: var(--orange-400);
}

.vlc-section-header__title {
    margin-top: 0.75rem;
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--navy-600);
    text-wrap: balance;
}

.vlc-section-header__desc {
    margin-top: 1rem;
    color: var(--gray-500);
    font-weight: 300;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .vlc-section-header__title {
        font-size: 2.25rem;
    }
}

/* ===========================
   HERO
   =========================== */
.vlc-hero {
    position: relative;
    overflow: hidden;
}

.vlc-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--navy-600), var(--navy-500), var(--navy-700));
}

.vlc-hero__glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.vlc-hero__glow--orange {
    top: 0; right: 0;
    width: 600px; height: 600px;
    background: var(--orange-500);
    filter: blur(160px);
    transform: translate(25%, -50%);
}

.vlc-hero__glow--olive {
    bottom: 0; left: 0;
    width: 400px; height: 400px;
    background: var(--olive-500);
    filter: blur(120px);
    transform: translate(-25%, 50%);
}

.vlc-hero__inner {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.vlc-hero__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.vlc-hero__title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    text-wrap: balance;
}

.vlc-hero__subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--navy-100);
    font-weight: 300;
    line-height: 1.6;
    max-width: 36rem;
}

.vlc-hero__actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.vlc-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s;
    font-size: 1rem;
}

.vlc-btn--primary {
    background: var(--orange-500);
    color: #fff;
}

.vlc-btn--primary:hover {
    background: var(--orange-600);
    color: #fff;
    box-shadow: 0 12px 32px rgba(255,130,0,0.3);
    transform: translateY(-2px);
}

.vlc-btn--outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
}

.vlc-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Hero Image */
.vlc-hero__image-wrap {
    display: none;
    position: relative;
}

.vlc-hero__image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to bottom right, rgba(255,130,0,0.2), rgba(158,158,76,0.2));
    border-radius: 1.5rem;
    filter: blur(16px);
}

.vlc-hero__image {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.vlc-hero__badge {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vlc-hero__badge--left {
    bottom: -1.5rem;
    left: -1.5rem;
}

.vlc-hero__badge--right {
    top: -1rem;
    right: -1rem;
}

.vlc-hero__badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vlc-hero__badge-icon--olive {
    background: var(--olive-100);
    color: var(--olive-600);
}

.vlc-hero__badge-icon--orange {
    background: var(--orange-100);
    color: var(--orange-500);
}

.vlc-hero__badge-title {
    font-weight: 900;
    color: var(--navy-600);
    font-size: 0.875rem;
}

.vlc-hero__badge-desc {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .vlc-hero__inner {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .vlc-hero__grid {
        grid-template-columns: 1fr 1fr;
    }
    .vlc-hero__title {
        font-size: 3.75rem;
    }
    .vlc-hero__image-wrap {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vlc-hero__title {
        font-size: 3rem;
    }
}

/* Hero Cards */
.vlc-hero__cards {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.vlc-hero__card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: background 0.3s;
}

.vlc-hero__card:hover {
    background: rgba(255,255,255,0.15);
}

.vlc-hero__card svg {
    margin-bottom: 1rem;
}

.vlc-hero__card h3 {
    font-weight: 900;
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.vlc-hero__card p {
    color: var(--navy-200);
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .vlc-hero__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   ABOUT
   =========================== */
.vlc-about {
    padding: 6rem 0;
    background: var(--gray-50);
}

.vlc-about__grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.vlc-about__image-wrap {
    position: relative;
}

.vlc-about__image-bg {
    position: absolute;
    inset: -0.75rem;
    background: linear-gradient(to bottom right, rgba(0,40,120,0.1), rgba(255,130,0,0.1));
    border-radius: 1.5rem;
}

.vlc-about__image {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.vlc-about__subtitle {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy-600);
    margin-bottom: 1rem;
}

.vlc-about__text {
    color: var(--gray-600);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .vlc-about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Milestones */
.vlc-milestones {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vlc-milestone {
    display: flex;
    gap: 1rem;
}

.vlc-milestone__icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--navy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-500);
    transition: all 0.3s;
}

.vlc-milestone:hover .vlc-milestone__icon {
    background: var(--orange-500);
    color: #fff;
}

.vlc-milestone__year {
    color: var(--orange-500);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vlc-milestone__title {
    font-weight: 700;
    color: var(--navy-700);
    margin-top: 0.125rem;
}

.vlc-milestone__desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 300;
}

/* ===========================
   SERVICES
   =========================== */
.vlc-services {
    padding: 6rem 0;
    background: #fff;
}

.vlc-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .vlc-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vlc-services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vlc-service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.vlc-service-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.vlc-service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

/* Service card colors */
.vlc-service-card[data-color="navy"] .vlc-service-card__icon {
    background: var(--navy-50); color: var(--navy-500);
}
.vlc-service-card[data-color="navy"]:hover .vlc-service-card__icon {
    background: var(--navy-500); color: #fff;
}

.vlc-service-card[data-color="orange"] .vlc-service-card__icon {
    background: var(--orange-50); color: var(--orange-500);
}
.vlc-service-card[data-color="orange"]:hover .vlc-service-card__icon {
    background: var(--orange-500); color: #fff;
}

.vlc-service-card[data-color="olive"] .vlc-service-card__icon {
    background: var(--olive-50); color: var(--olive-600);
}
.vlc-service-card[data-color="olive"]:hover .vlc-service-card__icon {
    background: var(--olive-600); color: #fff;
}

.vlc-service-card[data-color="red"] .vlc-service-card__icon {
    background: #fef2f2; color: #ef4444;
}
.vlc-service-card[data-color="red"]:hover .vlc-service-card__icon {
    background: #ef4444; color: #fff;
}

.vlc-service-card[data-color="teal"] .vlc-service-card__icon {
    background: #f0fdfa; color: #14b8a6;
}
.vlc-service-card[data-color="teal"]:hover .vlc-service-card__icon {
    background: #14b8a6; color: #fff;
}

.vlc-service-card[data-color="blue"] .vlc-service-card__icon {
    background: #eff6ff; color: #3b82f6;
}
.vlc-service-card[data-color="blue"]:hover .vlc-service-card__icon {
    background: #3b82f6; color: #fff;
}

.vlc-service-card[data-color="amber"] .vlc-service-card__icon {
    background: #fffbeb; color: #d97706;
}
.vlc-service-card[data-color="amber"]:hover .vlc-service-card__icon {
    background: #d97706; color: #fff;
}

.vlc-service-card[data-color="emerald"] .vlc-service-card__icon {
    background: #ecfdf5; color: #10b981;
}
.vlc-service-card[data-color="emerald"]:hover .vlc-service-card__icon {
    background: #10b981; color: #fff;
}

.vlc-service-card h3 {
    font-weight: 700;
    color: var(--navy-700);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.vlc-service-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ===========================
   PHILOSOPHY
   =========================== */
.vlc-philosophy {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.vlc-philosophy__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--navy-600), var(--navy-700));
}

.vlc-philosophy__glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 800px;
    height: 800px;
    background: var(--orange-500);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(200px);
    transform: translate(-50%, -50%);
}

.vlc-philosophy__inner {
    position: relative;
}

.vlc-philosophy__header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.vlc-philosophy__title {
    margin-top: 0.75rem;
    font-size: 1.875rem;
    font-weight: 900;
    color: #fff;
    text-wrap: balance;
}

.vlc-philosophy__desc {
    margin-top: 1.5rem;
    color: var(--navy-200);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .vlc-philosophy__title {
        font-size: 2.25rem;
    }
}

/* Stats */
.vlc-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .vlc-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vlc-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: background 0.3s;
}

.vlc-stat:hover {
    background: rgba(255,255,255,0.15);
}

.vlc-stat__icon {
    color: var(--orange-400);
    margin: 0 auto 1rem;
    transition: transform 0.3s;
}

.vlc-stat:hover .vlc-stat__icon {
    transform: scale(1.1);
}

.vlc-stat__value {
    font-weight: 900;
    color: #fff;
    font-size: 1.875rem;
}

@media (min-width: 768px) {
    .vlc-stat__value {
        font-size: 2.25rem;
    }
}

.vlc-stat__label {
    color: var(--navy-200);
    font-weight: 300;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ===========================
   FACILITIES
   =========================== */
.vlc-facilities {
    padding: 6rem 0;
    background: var(--gray-50);
}

.vlc-facilities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .vlc-facilities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vlc-facilities__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vlc-facility-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.vlc-facility-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.vlc-facility-card__image-wrap {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.vlc-facility-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vlc-facility-card:hover .vlc-facility-card__image {
    transform: scale(1.05);
}

.vlc-facility-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,24,0.6), transparent);
}

.vlc-facility-card__title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-weight: 900;
    color: #fff;
    font-size: 1.125rem;
}

.vlc-facility-card__features {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vlc-facility-card__feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.vlc-facility-card__feature svg {
    flex-shrink: 0;
}

.vlc-facility-card__feature span {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 300;
}

/* ===========================
   TEAM
   =========================== */
.vlc-team {
    padding: 6rem 0;
    background: #fff;
}

.vlc-team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vlc-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vlc-team-card {
    background: var(--gray-50);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.vlc-team-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.vlc-team-card__image-wrap {
    position: relative;
    height: 18rem;
    overflow: hidden;
}

.vlc-team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.vlc-team-card:hover .vlc-team-card__image {
    transform: scale(1.05);
}

.vlc-team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,24,0.8), rgba(0,10,24,0.2), transparent);
}

.vlc-team-card__info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.vlc-team-card__info h3 {
    font-weight: 900;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
}

.vlc-team-card__role {
    color: var(--orange-300);
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.vlc-team-card__body {
    padding: 1.5rem;
}

.vlc-team-card__bio {
    color: var(--gray-600);
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vlc-team-card__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vlc-team-card__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vlc-team-card__highlight-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: var(--navy-50);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-500);
    margin-top: 0.125rem;
}

.vlc-team-card__highlight span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===========================
   CONTACT
   =========================== */
.vlc-contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.vlc-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .vlc-contact__grid {
        grid-template-columns: 3fr 2fr;
    }
}

.vlc-contact__form-wrap {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.vlc-contact__form-title {
    font-weight: 900;
    color: var(--navy-600);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Contact Success */
.vlc-contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
}

.vlc-contact__success-icon {
    width: 4rem;
    height: 4rem;
    background: var(--olive-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-600);
    margin-bottom: 1rem;
}

.vlc-contact__success h4 {
    font-weight: 900;
    color: var(--navy-600);
    font-size: 1.125rem;
}

.vlc-contact__success p {
    color: var(--gray-500);
    font-weight: 300;
    margin-top: 0.5rem;
}

.vlc-contact__success button {
    margin-top: 1.5rem;
    color: var(--orange-500);
    font-weight: 700;
    font-size: 0.875rem;
}

.vlc-contact__success button:hover {
    text-decoration: underline;
}

/* Contact Form */
.vlc-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vlc-contact__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .vlc-contact__form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.vlc-contact__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.vlc-contact__field input,
.vlc-contact__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.vlc-contact__field input:focus,
.vlc-contact__field textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(255,130,0,0.2);
}

.vlc-contact__field textarea {
    resize: none;
}

.vlc-contact__privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vlc-contact__privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    accent-color: var(--orange-500);
    cursor: pointer;
    flex-shrink: 0;
}

.vlc-contact__privacy label {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.vlc-contact__privacy a {
    color: var(--orange-500);
    font-weight: 600;
}

.vlc-contact__privacy a:hover {
    text-decoration: underline;
}

.vlc-contact__error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    font-size: 0.875rem;
}

.vlc-contact__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--orange-500);
    color: #fff;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s;
    font-size: 1rem;
}

.vlc-contact__submit:hover {
    background: var(--orange-600);
    box-shadow: 0 8px 24px rgba(255,130,0,0.25);
}

.vlc-contact__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Sidebar */
.vlc-contact__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vlc-contact__info-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.vlc-contact__info-card h3 {
    font-weight: 900;
    color: var(--navy-600);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.vlc-contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vlc-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vlc-contact__info-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--navy-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-500);
}

.vlc-contact__info-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vlc-contact__info-value {
    font-weight: 700;
    color: var(--navy-700);
    font-size: 0.875rem;
    transition: color 0.2s;
}

a.vlc-contact__info-value:hover {
    color: var(--orange-500);
}

.vlc-contact__info-value--static {
    cursor: default;
}

/* Schedule Card */
.vlc-contact__schedule-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.vlc-contact__schedule-card h3 {
    font-weight: 900;
    color: var(--navy-600);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vlc-contact__schedule-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vlc-contact__schedule-rows hr {
    border: none;
    border-top: 1px solid var(--gray-100);
}

.vlc-contact__schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.vlc-contact__schedule-day {
    color: var(--gray-500);
    font-weight: 300;
}

.vlc-contact__schedule-time {
    color: var(--navy-700);
    font-weight: 700;
}

.vlc-contact__schedule-time--closed {
    color: #ef4444;
}

/* Emergency Card */
.vlc-contact__emergency-card {
    background: linear-gradient(to bottom right, var(--navy-500), var(--navy-600));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.vlc-contact__emergency-title {
    color: #fff;
    font-weight: 900;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.vlc-contact__emergency-desc {
    color: var(--navy-200);
    font-weight: 300;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.vlc-contact__emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-500);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: background 0.2s;
}

.vlc-contact__emergency-btn:hover {
    background: var(--orange-600);
    color: #fff;
}

/* ===========================
   FOOTER
   =========================== */
.vlc-footer {
    background: var(--navy-700);
    color: #fff;
    padding: 4rem 0;
}

.vlc-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .vlc-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vlc-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vlc-footer__brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.vlc-footer__brand-title {
    display: block;
    font-weight: 900;
    color: #fff;
}

.vlc-footer__brand-subtitle {
    display: block;
    font-weight: 300;
    color: var(--navy-300);
    font-size: 0.875rem;
}

.vlc-footer__desc {
    color: var(--navy-300);
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
}

.vlc-footer__heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.vlc-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vlc-footer__links a {
    color: var(--navy-300);
    font-weight: 300;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.vlc-footer__links a:hover {
    color: var(--orange-400);
}

.vlc-footer__services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vlc-footer__services p {
    color: var(--navy-300);
    font-weight: 300;
    font-size: 0.875rem;
}

.vlc-footer__bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--navy-600);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .vlc-footer__bottom {
        flex-direction: row;
    }
}

.vlc-footer__bottom p {
    color: var(--navy-400);
    font-weight: 300;
    font-size: 0.875rem;
}

/* --- Kit Digital --- */
.vlc-kit-digital {
    background: #fff;
    padding: 2.5rem 1.5rem;
}

.vlc-kit-digital__inner {
    max-width: 56rem;
    text-align: center;
}

.vlc-kit-digital__text {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vlc-kit-digital__img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
