/* ===== CAPELAMED - Main Stylesheet ===== */
:root {
    --primary-teal: #0A5C5C;
    --dark-navy: #0A2540;
    --gold: #D4A853;
    --light-gold: #E8C87A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --med-gray: #6B7280;
    --dark-gray: #1F2937;
    --body-text: #374151;
    --border: #E5E7EB;
    --teal-light: #E6F2F2;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--body-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: var(--primary-teal); transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-navy);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}
.top-bar a { color: var(--light-gold); font-weight: 500; }
.top-bar a:hover { color: #fff; }

/* ===== NAVIGATION ===== */
nav {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    width: 36px; height: 36px;
    background: var(--primary-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; justify-content: center; }
.nav-links li { position: relative; }
.nav-links a {
    display: block;
    padding: 8px 12px;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 13px;
    border-radius: 6px;
}
.nav-links a:hover { background: var(--teal-light); color: var(--primary-teal); }
.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 100;
}
.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0;
}
.dropdown a:hover { background: var(--teal-light); }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gold);
    color: var(--dark-navy);
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.cta-btn:hover { background: var(--light-gold); color: var(--dark-navy); }
.cta-btn svg { width: 16px; height: 16px; }

/* Premium Nav CTA */
.nav-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-teal);
    color: white;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(10,92,92,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-premium-btn:hover {
    background: var(--dark-navy);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(10,92,92,0.4);
}
.nav-premium-btn svg { width: 14px; height: 14px; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-navy);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.7);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
}
.hero .subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--light-gray); }
.section-dark {
    background: var(--dark-navy);
    color: var(--white);
}
.section-teal {
    background: var(--primary-teal);
    color: var(--white);
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', serif;
}
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--med-gray);
    margin-bottom: 48px;
}
.section-dark .section-title,
.section-teal .section-title { color: var(--white); }
.section-dark .section-subtitle,
.section-teal .section-subtitle { color: rgba(255,255,255,0.8); }

/* ===== GRIDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-teal);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
}
.card p { color: var(--med-gray); font-size: 15px; }

/* ===== TESTIMONIALS ===== */
.testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
}
.testimonial-text {
    font-style: italic;
    color: var(--body-text);
    margin-bottom: 16px;
    line-height: 1.7;
}
.testimonial-author {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.video-section img { width: 100%; display: block; }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 24px; height: 24px; fill: var(--primary-teal); margin-left: 4px; }

/* ===== LISTS ===== */
.feature-list { list-style: none; }
.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-teal);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-logo .logo-icon { background: var(--gold); color: var(--dark-navy); }
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--light-gold);
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 5px 0;
    font-size: 14px;
}
.footer-col a:hover { color: var(--white); }
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.7); display: inline; }
.footer-bottom a:hover { color: var(--white); }

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}
.btn-submit {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}
.btn-submit:hover { background: var(--dark-navy); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.img-fluid { max-width: 100%; height: auto; border-radius: 12px; }
.booking-cta { background: var(--light-gold); color: var(--dark-navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 36px; }
    .nav-cta { display: none; }
}
@media (max-width: 576px) {
    .hero h1 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .section-title { font-size: 28px; }
}


