/* ===========================
   VIGHNESH HEALTH CARE - STYLE.CSS
   Teal Healthcare Theme
   =========================== */

/* === CSS VARIABLES === */
:root {
    --primary: #00897B;
    --primary-dark: #00695C;
    --primary-light: #4DB6AC;
    --primary-xlight: #B2DFDB;
    --primary-bg: #E0F2F1;
    --secondary: #26C6DA;
    --secondary-light: #80DEEA;
    --white: #FFFFFF;
    --off-white: #F8FFFE;
    --text-dark: #1A2E2C;
    --text-medium: #455A58;
    --text-light: #78909C;
    --bg-light: #F0FAF9;
    --border: #CFE8E6;
    --shadow-sm: 0 2px 8px rgba(0, 137, 123, 0.08);
    --shadow-md: 0 6px 24px rgba(0, 137, 123, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 137, 123, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-medium); }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section.bg-light { background: var(--bg-light); }

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--primary-dark); line-height: 1; }
.logo-sub { font-size: 0.62rem; color: var(--primary-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-bg); }
.nav-cta { margin-left: 0.5rem; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 137, 123, 0.4); }
.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { border-color: rgba(255,255,255,0.6); color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.section-title { color: var(--text-dark); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-medium); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* === HERO === */
.hero {
    position: relative;
    background: linear-gradient(135deg, #004D40 0%, #00695C 40%, #00897B 70%, #26C6DA 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 70%),
        radial-gradient(circle at 10% 80%, rgba(0,137,123,0.4) 0%, transparent 50%);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}
.hero-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; font-weight: 800; }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.15rem; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.hero-card-main {
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    color: white; gap: 0.5rem; text-align: center;
}
.hero-icon-main { font-size: 3.5rem; opacity: 0.9; }
.hero-card-main p { font-size: 0.82rem; font-weight: 600; opacity: 0.85; }
.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    display: flex; align-items: center; gap: 0.4rem;
    animation: float 3s ease-in-out infinite;
}
.hero-card-1 { top: 20px; right: 0; animation-delay: 0s; }
.hero-card-2 { bottom: 20px; left: 0; animation-delay: 1s; }
.hero-card-3 { top: 50%; left: -20px; transform: translateY(-50%); animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-3 { animation-name: float3; }
@keyframes float3 { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 8px)); } }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-xlight); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 58px; height: 58px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: white; }
.service-card h3 { color: var(--text-dark); margin-bottom: 0.6rem; font-size: 1.05rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex; align-items: center; gap: 0.35rem;
    transition: gap var(--transition);
}
.service-link:hover { gap: 0.65rem; }
.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-color: var(--primary);
}
.service-card-highlight h3, .service-card-highlight p { color: rgba(255,255,255,0.95); }
.service-card-highlight .service-icon { background: rgba(255,255,255,0.2); color: white; }
.service-card-highlight .service-link { color: rgba(255,255,255,0.9); }
.service-card-highlight:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.service-card-highlight::before { background: rgba(255,255,255,0.4); }

/* === ABOUT SHORT === */
.about-short { background: var(--bg-light); }
.about-short-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-icon-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.about-icon-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-icon-item i { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.5rem; }
.about-icon-item span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.about-short-content h2 { margin: 0.5rem 0 1rem; color: var(--text-dark); }
.about-features { margin: 1.25rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.about-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--text-medium); }
.about-features li i { color: var(--primary); font-size: 0.9rem; }

/* === TESTIMONIALS === */
.testimonials { background: var(--primary-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #FFB300; font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; font-style: italic; margin-bottom: 1.5rem; color: var(--text-medium); }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700;
    font-family: var(--font-head);
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, #004D40, #00897B, #26C6DA);
    padding: 4rem 0;
}
.cta-content { text-align: center; }
.cta-content h2 { color: white; margin-bottom: 0.75rem; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, #004D40 0%, #00897B 60%, #26C6DA 100%);
    padding: 4rem 0;
    text-align: center;
}
.page-hero-content h1 { color: white; margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb i { font-size: 0.65rem; }

/* === ABOUT PAGE === */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-intro-content h2 { color: var(--text-dark); margin: 0.5rem 0 1.25rem; }
.about-intro-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.info-cards-stack { display: flex; flex-direction: column; gap: 1rem; }
.info-card-stack {
    display: flex; align-items: center; gap: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: all var(--transition);
}
.info-card-stack:hover { background: white; box-shadow: var(--shadow-sm); }
.info-card-stack i { font-size: 1.5rem; color: var(--primary); width: 36px; text-align: center; }
.info-card-stack strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.info-card-stack span { font-size: 0.8rem; color: var(--text-light); }
.text-content-box { max-width: 800px; margin: 0 auto; }
.text-content-box p { margin-bottom: 1.25rem; font-size: 0.95rem; line-height: 1.8; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mvv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvv-mission { border-top: 4px solid var(--primary); }
.mvv-vision { border-top: 4px solid var(--secondary); }
.mvv-values { border-top: 4px solid #80CBC4; }
.mvv-icon {
    width: 64px; height: 64px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary);
    margin: 0 auto 1.25rem;
}
.mvv-card h3 { color: var(--text-dark); margin-bottom: 1rem; }
.mvv-card p { font-size: 0.9rem; }
.values-list { text-align: left; }
.values-list li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-medium); }
.values-list li i { color: var(--primary); font-size: 0.8rem; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col-grid h2 { color: var(--text-dark); margin: 0.5rem 0 1.25rem; }
.two-col-grid p { font-size: 0.95rem; margin-bottom: 1rem; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--primary-xlight); min-width: 36px; }
.step strong { display: block; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 0.2rem; }
.step p { font-size: 0.85rem; margin: 0; }
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.coverage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition);
}
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-xlight); }
.coverage-card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.coverage-card h4 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 1rem; }
.coverage-card p { font-size: 0.85rem; }

/* === WHY US PAGE === */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-xlight); }
.why-num {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
    color: var(--primary-bg); line-height: 1;
}
.why-icon {
    width: 52px; height: 52px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
    margin-bottom: 1rem;
    transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); color: white; }
.why-card h3 { color: var(--text-dark); margin-bottom: 0.6rem; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.why-features { display: flex; flex-direction: column; gap: 0.4rem; }
.why-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-medium); }
.why-features li i { color: var(--primary); font-size: 0.75rem; }
.stats-bar { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 3rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stats-bar-num { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: white; line-height: 1; }
.stats-bar-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 0.3rem; }

/* === CONTACT PAGE === */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 0; }
.contact-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); background: white; }
.contact-info-icon {
    width: 54px; height: 54px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
    margin: 0 auto 1rem;
}
.contact-info-card h4 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
.contact-info-card p { font-size: 0.88rem; }
.contact-info-card a { color: var(--primary); font-weight: 600; }
.small-text { font-size: 0.78rem !important; color: var(--text-light) !important; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form-wrapper {}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.required { color: #E53935; }
.optional { color: var(--text-light); font-weight: 400; font-size: 0.8rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.12);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #E53935; }
.error-msg { font-size: 0.78rem; color: #E53935; display: none; }
.error-msg.show { display: block; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; display: flex; align-items: center; gap: 0.35rem; justify-content: center; }
.form-note i { color: var(--primary); }
.map-container { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-address-card {
    display: flex; align-items: flex-start; gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}
.map-address-card i { color: var(--primary); font-size: 1.2rem; margin-top: 0.1rem; }
.map-address-card strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.map-address-card p { font-size: 0.82rem; margin: 0; }

/* === FOOTER === */
.footer { background: #0A2926; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.footer-logo i { font-size: 1.8rem; color: var(--primary-light); }
.footer-logo .logo-main { color: white; }
.footer-logo .logo-sub { color: var(--primary-light); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-links i { font-size: 0.65rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-contact li i { color: var(--primary-light); margin-top: 0.2rem; min-width: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* === ANIMATE ON SCROLL === */
.animate-card { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-card.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hamburger { display: flex; }
    .nav {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0.25rem;
        z-index: 999;
    }
    .nav.open { display: flex; }
    .nav-link { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
    .nav-cta { width: 100%; justify-content: center; margin: 0.5rem 0 0; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .about-short-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .mvv-grid { grid-template-columns: 1fr; }
    .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-badge { display: none; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-icon-grid { grid-template-columns: 1fr 1fr; }
}
