/* ============================================
   GLOBAL RESOURCES — UNIFIED HOME + CONTACT CSS
   ============================================ */

/* ---------- GOOGLE FONT IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #1a5f4a;
    --primary-light: #2d7a62;
    --primary-dark: #0d3b2e;
    --accent: #d4a843;
    --accent-light: #fef6e0;
    --text-dark: #0e2c24;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --text-body: #475569;
    --text-muted: #64748b;
    --bg-light: #f8faf9;
    --bg-white: #fefefe;
    --bg-cream: #fafcfb;
    --border: #eef2f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

/* ============================================
   FONT SIZE NORMALIZER — Home & Contact Same Scale
   ============================================ */
h1 { font-size: clamp(34px, 4.5vw, 48px) !important; line-height: 1.2 !important; }
h2 { font-size: clamp(28px, 3.5vw, 38px) !important; line-height: 1.25 !important; }
h3 { font-size: 21px !important; line-height: 1.3 !important; }
h4 { font-size: 17px !important; line-height: 1.4 !important; }
h1 span, h2 span, h3 span, h4 span { font-size: inherit !important; }
p, li, a, label, input, textarea, button { font-size: 14px !important; }
span { font-size: 14px !important; }
small, .text-\[9px\], .text-\[10px\] { font-size: 11px !important; }
.text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl {
    font-size: clamp(28px, 3.5vw, 38px) !important;
    line-height: 1.25 !important;
}
.text-lg { font-size: 18px !important; }
.text-sm, .text-xs { font-size: 13px !important; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f0fdfa; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1000; width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
section { position: relative; z-index: 1; }
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(30deg);
    transition: all 0.6s;
}
.btn-shine:hover::after { left: 100%; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }
.reveal.delay-300 { transition-delay: 0.3s; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left i, .top-bar-right i { margin-right: 6px; color: var(--accent); font-size: 11px; }
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: 0.2s; }
.top-bar a:hover { color: var(--accent); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s; font-size: 12px; color: white; text-decoration: none;
}
.top-bar-right a:hover { background: var(--accent); transform: translateY(-1px); }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px;
    box-shadow: 0 3px 10px rgba(26,95,74,0.25);
    transition: var(--transition-bounce);
}
.logo:hover .logo-icon { transform: rotate(-3deg) scale(1.05); }
.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.2px; line-height: 1.1;
}
.logo-text span {
    font-size: 9px; color: var(--primary); font-weight: 600;
    letter-spacing: 2px; font-family: 'Space Grotesk', sans-serif;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    text-decoration: none; color: #2c3e4e; font-weight: 500;
    font-size: 14px; transition: var(--transition);
    position: relative; padding: 6px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px; background: var(--accent);
    transition: var(--transition); transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { font-weight: 700; }
.btn-quote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white; padding: 10px 22px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 13px;
    transition: var(--transition-bounce);
    box-shadow: 0 3px 12px rgba(26,95,74,0.25);
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,95,74,0.35); }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 99;
    padding: 80px 32px 32px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.active { right: 0; }
.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(3px);
    z-index: 98;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu a {
    display: block; padding: 12px 0;
    font-size: 16px; font-weight: 600;
    color: var(--text-dark); text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); padding-left: 8px; }

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25d366; color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-bounce);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a1f19;
    color: white;
    padding: 48px 32px 20px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
}
.footer-brand p {
    color: #7a9a8e;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 260px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon {
    width: 32px; height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 14px;
}
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; }
.footer h4 {
    font-size: 14px; margin-bottom: 16px;
    color: white; font-weight: 600;
    position: relative; display: inline-block;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 24px; height: 2px;
    background: var(--accent);
}
.footer a {
    color: #7a9a8e; text-decoration: none;
    font-size: 13px; display: block;
    margin-bottom: 8px;
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer a:hover { color: var(--accent); transform: translateX(3px); }
.footer a i { font-size: 10px; opacity: 0.5; }
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact i { width: 16px; color: var(--accent); font-size: 12px; }
.copyright {
    text-align: center;
    padding-top: 28px;
    font-size: 12px;
    color: #4a6a5e;
    border-top: 1px solid #14332a;
    margin-top: 28px;
}

/* ============================================
   HOME PAGE — HERO CAROUSEL
   ============================================ */
.animate-kenburns { animation: kenburns 20s ease-in-out infinite; }
@keyframes kenburns {
    0% { transform: scale(1.1) translate(0,0); }
    50% { transform: scale(1.15) translate(-1%,-1%); }
    100% { transform: scale(1.1) translate(0,0); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.carousel-slide { transition: opacity 1s ease-in-out; }

/* ============================================
   HOME PAGE — BRANDS SCROLL
   ============================================ */
@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}
@keyframes scroll-up-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.animate-scroll-up { animation: scroll-up 25s linear infinite; }
.animate-scroll-down { animation: scroll-down 30s linear infinite; }
.animate-scroll-up-slow { animation: scroll-up-slow 35s linear infinite; }
.animate-scroll-up:hover,
.animate-scroll-down:hover,
.animate-scroll-up-slow:hover { animation-play-state: paused; }

/* ============================================
   HOME PAGE — SECTIONS SHARED SCALE
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 36px;
}
.section-header .section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}
.section-header .section-title {
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 34px);
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}
.section-sub {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================
   CONTACT PAGE — HEADER (Home-scale compact)
   ============================================ */
.page-header {
    background: var(--primary);
    color: white;
    padding: 48px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}
.page-header h1 span { color: var(--accent); font-style: italic; }
.page-header p {
    font-size: 14px !important;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 12px;
    opacity: 0.8;
    position: relative;
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   CONTACT PAGE — INFO CARDS
   ============================================ */
.contact-info-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 24px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.contact-info-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition-bounce);
}
.contact-info-card:hover { transform: translateY(-6px); }
.contact-info-card .icon-box {
    width: 52px; height: 52px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    transition: var(--transition);
}
.contact-info-card:hover .icon-box { background: var(--primary); }
.contact-info-card .icon-box i {
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}
.contact-info-card:hover .icon-box i { color: white; }
.contact-info-card h4 { font-size: 16px !important; font-weight: 600; margin-bottom: 6px; }
.contact-info-card p { font-size: 13px !important; color: var(--text-light); line-height: 1.6; }
.contact-info-card a { color: var(--primary); text-decoration: none; font-weight: 600; }
.contact-info-card a:hover { color: var(--accent); }

/* ============================================
   CONTACT PAGE — FORM & DETAILS
   ============================================ */
.contact-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-form-wrapper h2,
.contact-details h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.contact-form-wrapper h2 span,
.contact-details h2 span { color: var(--primary); font-style: italic; }
.contact-form-wrapper > p,
.contact-details > p {
    font-size: 14px !important;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px !important; font-weight: 600; color: var(--text-dark); }
.form-group label span { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,95,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 14px !important;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}
.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26,95,74,0.25);
}
.detail-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.detail-block:last-child { border-bottom: none; }
.detail-block h4 {
    font-size: 15px !important;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-block h4 i {
    width: 30px; height: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}
.detail-block p {
    font-size: 14px !important;
    color: var(--text-medium);
    line-height: 1.7;
    padding-left: 40px;
}
.detail-block a { color: var(--primary); text-decoration: none; font-weight: 500; }

/* Social Links */
.social-links { display: flex; gap: 10px; padding-left: 40px; margin-top: 10px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-medium);
    font-size: 16px;
    transition: var(--transition-bounce);
    text-decoration: none;
}
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* ============================================
   CONTACT PAGE — MAP
   ============================================ */
.map-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 48px;
}
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    height: 380px;
    position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-overlay {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}
.map-overlay h4 { font-family: 'Playfair Display', serif; font-size: 16px !important; margin-bottom: 6px; }
.map-overlay p { font-size: 13px !important; color: var(--text-light); line-height: 1.5; }
.map-overlay a {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px;
    color: var(--primary); text-decoration: none;
    font-weight: 600; font-size: 13px !important;
}

/* ============================================
   CONTACT PAGE — FAQ
   ============================================ */
.faq-section { background: var(--bg-white); padding: 48px 24px; }
.faq-section .container { max-width: 1280px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item {
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px !important;
    color: var(--text-dark);
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 20px 16px; }
.faq-answer p { font-size: 13px !important; color: var(--text-light); line-height: 1.7; }

/* ============================================
   CTA SECTION (Shared)
   ============================================ */
.cta-modern {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0f4a3a 100%);
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
}
.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-modern::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-modern-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-modern-content h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 700;
}
.cta-modern-content h2 span {
    color: var(--accent);
    font-style: italic;
    position: relative;
}
.cta-modern-content p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-modern-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn-whatsapp {
    background: #25d366; color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px !important;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    border: 2px solid #25d366;
}
.cta-btn-whatsapp:hover {
    background: #128c7e; border-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}
.cta-btn-outline {
    background: transparent; color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px !important;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
}
.cta-btn-outline:hover {
    background: white; color: var(--primary); border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   MODAL (Shared)
   ============================================ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-container {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 1000;
    width: 92%;
    max-width: 640px;
    max-height: 95vh;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-container.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-content {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}
.modal-close {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    width: 2rem; height: 2rem;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.modal-close:hover { background: #e2e8f0; }
.modal-body { padding: 1.25rem 1.5rem; }
.modal-header { text-align: center; margin-bottom: 0.75rem; }
.modal-icon {
    width: 2.5rem; height: 2.5rem;
    background: linear-gradient(135deg, #ccfbf1, #e1f8e8);
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.5rem;
    color: #0d9488;
    font-size: 1rem;
}
.modal-content .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.modal-content .form-group { margin-bottom: 0; }
.modal-content .form-label {
    display: block;
    font-size: 0.7rem !important;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.modal-content .form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.8rem !important;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.modal-content .form-input:focus { border-color: #0d9488; background: #fff; }
.modal-content textarea.form-input { resize: none; min-height: 60px; }
.modal-content .submit-btn {
    width: 100%;
    padding: 0.6rem;
    background: linear-gradient(135deg, #0d9488, #268751);
    color: #fff;
    border: none;
    border-radius: 0.65rem;
    font-weight: 700;
    font-size: 0.85rem !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}
.modal-content .submit-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.modal-content .submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.success-icon {
    width: 3rem; height: 3rem;
    background: linear-gradient(135deg, #0d9488, #268751);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
}

/* ============================================
   CERTIFICATES STRIP (Home page)
   ============================================ */
.certs-strip {
    background: var(--bg-cream);
    padding: 40px 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.certs-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.certs-strip-inner::-webkit-scrollbar { display: none; }
.cert-strip-item {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.cert-strip-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--primary); }
.cert-strip-item i {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f7f4 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 16px;
}
.cert-strip-item div h4 { font-size: 13px !important; font-weight: 700; color: var(--text-dark); }
.cert-strip-item div p { font-size: 11px !important; color: var(--text-muted); }
.cert-strip-item div h4,
.cert-strip-item div p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .certs-strip-inner { flex-wrap: wrap; justify-content: center; }
    .cert-strip-item { flex: 1 1 45%; white-space: normal; }
    .cert-strip-item div h4, .cert-strip-item div p { white-space: normal; }
}

@media (max-width: 768px) {
    .contact-info-grid { grid-template-columns: 1fr; margin-top: -24px; }
    .contact-info-card { padding: 24px; }
    .map-container { height: 320px; }
    .map-overlay { display: none; }
    .page-header { padding: 36px 0 28px; }
    .cta-modern { padding: 48px 20px; }
    .cta-modern-buttons { flex-direction: column; align-items: center; }
    .cta-btn-whatsapp, .cta-btn-outline { width: 100%; max-width: 300px; justify-content: center; }
    .modal-content .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .top-bar { justify-content: center; text-align: center; padding: 8px 20px; }
    .top-bar-left { justify-content: center; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .cert-strip-item { flex: 1 1 100%; }
}

@media (max-width: 480px) {
    .contact-main { padding: 32px 16px; }
    .faq-section { padding: 36px 16px; }
    .cta-modern { padding: 40px 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
::selection { background: var(--primary); color: white; }