/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: #222222;
    background: #FAF9F5;
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C5A96A;
    margin-bottom: 12px;
    display: inline-block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a3a3c;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 640px;
    margin-bottom: 48px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #178085;
    color: #FFFFFF;
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: #FFFFFF; }
.top-bar a:hover { color: #C5A96A; }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-left span, .top-bar-right span { display: flex; align-items: center; gap: 6px; }
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
    background: #1A8A90;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 40px;
    width: auto;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C5A96A;
    transition: width 0.3s;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #FFFFFF; }
.nav-links a.active::after { width: 100%; }
.nav-links .nav-cta,
.mobile-nav .nav-cta,
.nav-cta {
    background: #C5A96A;
    color: #1a3a3c !important;
    padding: 12px 28px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #d4bc82; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A8A90;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s;
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
    color: #FFFFFF;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
}
.mobile-nav a:hover { color: #C5A96A; }
.mobile-nav a.active { color: #C5A96A; }

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}
.hero-content {
    background: #1A8A90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}
.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 160px;
    height: 100%;
    background: #1A8A90;
    transform: skewX(-4deg);
    z-index: 2;
}
.hero-content .section-label { color: #C5A96A; }
.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.15;
    position: relative;
    z-index: 3;
}
.hero h1 span {
    color: #C5A96A;
    display: block;
}
.hero-text {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    position: relative;
    z-index: 3;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #C5A96A;
    color: #1a3a3c;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.3s;
    position: relative;
    z-index: 3;
    align-self: flex-start;
}
.hero-cta:hover { background: #d4bc82; }
.hero-cta svg { width: 18px; height: 18px; }
.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,138,144,0.2) 0%, transparent 60%);
    z-index: 1;
}
.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #C5A96A 0%, #1A8A90 50%, #C5A96A 100%);
    z-index: 10;
}

/* ===== INFO STRIP ===== */
.info-strip {
    background: #FFFFFF;
    border-bottom: 1px solid #eee;
    padding: 0;
}
.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.info-card {
    padding: 40px 28px;
    border-right: 1px solid #eee;
    text-align: center;
    transition: background 0.3s;
}
.info-card:last-child { border-right: none; }
.info-card:hover { background: #FAF9F5; }
.info-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1A8A90, #2BB4BC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.info-card-icon svg { width: 24px; height: 24px; color: #FFFFFF; }
.info-card h2 {
    font-size: 1.05rem;
    color: #1a3a3c;
    margin-bottom: 12px;
}
.info-card p, .info-card ul {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}
.info-card ul li { padding: 1px 0; }
.info-card ul li strong { color: #1a3a3c; min-width: 28px; display: inline-block; }

/* ===== SERVICES VALUE PROPS ===== */
.services-section {
    padding: 100px 0;
    background: #FAF9F5;
}
.services-header {
    text-align: center;
    margin-bottom: 64px;
}
.services-header .section-subtitle { margin-left: auto; margin-right: auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-prop-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 0;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.service-prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1A8A90, #C5A96A);
}
.service-prop-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: #1A8A90; }
.service-prop-icon {
    width: 56px;
    height: 56px;
    background: rgba(26,138,144,0.08);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-prop-icon svg { width: 28px; height: 28px; color: #1A8A90; }
.service-prop-card h3 {
    font-size: 1.2rem;
    color: #1a3a3c;
    margin-bottom: 12px;
}
.service-prop-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

/* ===== ACCORDION SERVICES ===== */
.accordion-section {
    padding: 100px 0;
    background: #157075;
    position: relative;
    overflow: hidden;
}
.accordion-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(197,169,106,0.1);
    border-radius: 50%;
}
.accordion-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(26,138,144,0.1);
    border-radius: 50%;
}
.accordion-section .section-title { color: #FFFFFF; }
.accordion-section .section-subtitle { color: rgba(255,255,255,0.6); }
.accordion-header-area { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.accordion-header-area .section-subtitle { margin-left: auto; margin-right: auto; }
.accordion-list { max-width: 840px; margin: 0 auto; position: relative; z-index: 2; }
.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}
.accordion-trigger:hover { color: #C5A96A; }
.accordion-trigger .acc-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #C5A96A;
    margin-right: 20px;
    letter-spacing: 1px;
}
.accordion-trigger .acc-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, border-color 0.3s;
    flex-shrink: 0;
}
.accordion-trigger .acc-icon svg { width: 16px; height: 16px; transition: transform 0.3s; }
.accordion-item.active .accordion-trigger { color: #C5A96A; }
.accordion-item.active .acc-icon { border-color: #C5A96A; transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
}
.accordion-content-inner {
    padding: 0 0 28px 46px;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== TEAM ===== */
.team-section {
    padding: 100px 0 80px;
    background: #FFFFFF;
    overflow: hidden;
}
.team-header {
    text-align: center;
    margin-bottom: 56px;
}
.team-header .section-subtitle { margin-left: auto; margin-right: auto; }
.team-intro {
    text-align: center;
    max-width: 700px;
    margin: -24px auto 48px;
    color: #666;
    font-size: 0.95rem;
}
.team-category-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1A8A90;
    margin-bottom: 20px;
    padding-left: 24px;
}
.team-carousel-wrapper {
    position: relative;
    margin-bottom: 48px;
}
.team-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 8px 24px 16px;
    justify-content: flex-start;
}
/* Doctors: fit 6 across on wide screens */
.team-carousel--doctors .team-card {
    width: 170px;
}
.team-carousel--doctors .team-card-photo {
    width: 170px;
    height: 210px;
}
/* Hygienists: same as doctors */
.team-carousel--hygienists .team-card {
    width: 160px;
}
.team-carousel--hygienists .team-card-photo {
    width: 160px;
    height: 200px;
}
/* Staff: smaller boxes */
.team-carousel--staff .team-card {
    width: 140px;
}
.team-carousel--staff .team-card-photo {
    width: 140px;
    height: 170px;
}
.team-carousel--staff .team-card h3 {
    font-size: 0.88rem;
}
.team-carousel--staff .team-card p {
    font-size: 0.72rem;
}
.team-card {
    width: 170px;
    flex-shrink: 0;
}
.team-card-photo {
    width: 170px;
    height: 210px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 12px;
    position: relative;
    background: #e8e8e8;
}
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(26,138,144,0.3));
}
.team-card h3 {
    font-size: 0.95rem;
    color: #1a3a3c;
    margin-bottom: 3px;
}
.team-card p {
    font-size: 0.78rem;
    color: #1A8A90;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.team-card-noimg {
    width: 100%;
    height: 210px;
    border-radius: 0;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1A8A90, #2BB4BC);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-noimg svg { width: 56px; height: 56px; color: rgba(255,255,255,0.2); }

/* ===== ARTICLES ===== */
.articles-section {
    padding: 100px 0;
    background: #FAF9F5;
}
.articles-header {
    text-align: center;
    margin-bottom: 56px;
}
.articles-header .section-subtitle { margin-left: auto; margin-right: auto; }
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.article-card {
    background: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.article-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: #1A8A90; }
.article-card:nth-child(1), .article-card:nth-child(4) { grid-row: span 1; }
.article-card-visual {
    height: 180px;
    background: linear-gradient(135deg, #1A8A90, #2BB4BC);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.article-card-visual::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(197,169,106,0.15);
    border-radius: 50%;
    top: -30px;
    right: -30px;
}
.article-card-visual svg { width: 48px; height: 48px; color: rgba(255,255,255,0.3); }
.article-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-card-body h3 {
    font-size: 1.05rem;
    color: #1a3a3c;
    margin-bottom: 12px;
}
.article-card-body .article-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A8A90;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-card-body .article-link:hover { color: #C5A96A; }
.article-card-body .article-link svg { width: 14px; height: 14px; }

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
    background: #FFFFFF;
}
.contact-header {
    text-align: center;
    margin-bottom: 56px;
}
.contact-header .section-subtitle { margin-left: auto; margin-right: auto; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.branch-card {
    background: #FAF9F5;
    border-radius: 0;
    padding: 40px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1A8A90, #C5A96A);
}
.branch-card h3 {
    font-size: 1.4rem;
    color: #1a3a3c;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.branch-card h3 .branch-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #1A8A90;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 0;
}
.branch-info { display: flex; flex-direction: column; gap: 14px; }
.branch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
    color: #555;
}
.branch-info-item svg { width: 18px; height: 18px; color: #1A8A90; flex-shrink: 0; margin-top: 3px; }
.branch-info-item a { color: #1A8A90; font-weight: 500; }
.branch-info-item a:hover { color: #C5A96A; }
.branch-warning {
    margin-top: 18px;
    padding: 12px 16px;
    background: rgba(197,169,106,0.1);
    border-left: 3px solid #C5A96A;
    border-radius: 0;
    font-size: 0.85rem;
    color: #8a7340;
}

/* ===== MAP ===== */
.map-section {
    background: #1A8A90;
    padding: 0;
}
#map {
    width: 100%;
    height: 450px;
}

/* ===== FOOTER ===== */
.footer {
    background: #157075;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: #C5A96A; color: #C5A96A; }
.footer-social a svg { width: 18px; height: 18px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #1A8A90;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(26,138,144,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #C5A96A; }
.back-to-top svg { width: 22px; height: 22px; }

/* ===== MODAL SYSTEM ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active {
    display: flex;
}
.modal-card {
    background: #FFFFFF;
    max-width: 560px;
    width: 100%;
    position: relative;
    border-radius: 0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.92);
    border: 2px solid #1A8A90;
    color: #1A8A90;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: background 0.3s, color 0.3s;
    z-index: 10;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}
.modal-close:hover {
    background: #1A8A90;
    color: #FFFFFF;
}
.modal-body {
    padding: 40px 40px 36px;
}
.modal-body img {
    width: 100%;
    height: auto;
    display: block;
    margin: 16px 0;
}
.modal-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: #1A2B2D;
    margin-bottom: 16px;
    line-height: 1.3;
}
.modal-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: #1A8A90;
    margin-bottom: 12px;
    margin-top: 20px;
    line-height: 1.3;
}
.modal-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}
.modal-body p:last-child {
    margin-bottom: 0;
}
.modal-body .modal-closing {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}
.modal-body .modal-closing strong {
    display: block;
    font-style: normal;
    color: #1A8A90;
    margin-top: 4px;
}
.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.modal-body ul li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}
.modal-body ul li::before {
    content: '\2022';
    color: #C5A96A;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 7px;
}
.modal-body ul li:last-child {
    border-bottom: none;
}
.modal-body a {
    color: #1A8A90;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.modal-body a:hover {
    color: #C5A96A;
}
.modal-body .modal-emergency {
    background: #FFF8F0;
    border-left: 3px solid #C5A96A;
    padding: 16px 20px;
    margin: 20px 0;
}
.modal-body .modal-emergency p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== PAGE-SPECIFIC: CENIK ===== */
.page-hero-cenik {
    background: #1A8A90;
    padding: 60px 0 48px;
    text-align: center;
}
.page-hero-cenik h1 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.page-hero-cenik p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.cenik-content {
    padding: 64px 0 100px;
    background: #FAF9F5;
}
.cenik-category {
    margin-bottom: 48px;
}
.cenik-category h2 {
    font-size: 1.5rem;
    color: #1a3a3c;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1A8A90;
}
.cenik-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border: 1px solid #eee;
}
.cenik-table th,
.cenik-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.92rem;
}
.cenik-table th {
    background: #157075;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cenik-table tr:hover td {
    background: rgba(26,138,144,0.03);
}
.cenik-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #1a3a3c;
    white-space: nowrap;
}
.cenik-note {
    margin-top: 48px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #eee;
    border-left: 4px solid #C5A96A;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ===== PAGE-SPECIFIC: CLANKY (article listing) ===== */
.page-hero-clanky {
    background: #1A8A90;
    padding: 60px 0 48px;
    text-align: center;
}
.page-hero-clanky h1 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.page-hero-clanky p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.clanky-content {
    padding: 64px 0 100px;
    background: #FAF9F5;
}
.clanky-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ===== PAGE-SPECIFIC: ARTICLE DETAIL ===== */
.article-hero {
    background: #1A8A90;
    padding: 60px 0 48px;
    text-align: center;
}
.article-hero h1 {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}
.article-hero .breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.article-hero .breadcrumb a {
    color: #C5A96A;
}
.article-hero .breadcrumb a:hover {
    color: #FFFFFF;
}
.article-detail {
    padding: 64px 0 100px;
    background: #FAF9F5;
}
.article-detail .article-body {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 48px;
    border: 1px solid #eee;
}
.article-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}
.article-body h2 {
    font-size: 1.4rem;
    color: #1a3a3c;
    margin-top: 36px;
    margin-bottom: 16px;
}
.article-body h3 {
    font-size: 1.15rem;
    color: #1A8A90;
    margin-top: 28px;
    margin-bottom: 12px;
}
.article-body img {
    width: 100%;
    height: auto;
    margin: 24px 0;
}
.article-body ul,
.article-body ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}
.article-body ul li,
.article-body ol li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1A8A90;
}
.article-back:hover { color: #C5A96A; }
.article-back svg { width: 16px; height: 16px; }

/* ===== RESPONSIVE: MODAL (mobile) ===== */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 16px;
    }
    .modal-body {
        padding: 28px 24px 24px;
    }
    .modal-body h2 {
        font-size: 1.35rem;
        padding-right: 32px;
    }
    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 60px 40px; }
    .hero-content::after { display: none; }
    .hero-image { height: 400px; }
    .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .info-card:nth-child(2) { border-right: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .clanky-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar .container { justify-content: center; text-align: center; }
    .top-bar-left, .top-bar-right { flex-wrap: wrap; justify-content: center; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 48px 24px; }
    .hero-image { height: 300px; }
    .info-strip-grid { grid-template-columns: 1fr; }
    .info-card { border-right: none; border-bottom: 1px solid #eee; }
    .info-card:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .accordion-content-inner { padding-left: 28px; }
    .section-title { font-size: 1.8rem; }
    #map { height: 350px; }
    .footer .container { justify-content: center; text-align: center; }
    .clanky-grid { grid-template-columns: 1fr; }
    .article-body { padding: 28px 20px; }
    .cenik-table th,
    .cenik-table td { padding: 10px 12px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .top-bar { font-size: 0.72rem; }
    .nav-logo img { height: 32px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-text { font-size: 0.92rem; }
    .hero-cta { padding: 14px 28px; font-size: 0.85rem; }
    .branch-card { padding: 28px 20px; }
}

/* ===== PRINT STYLES ===== */
@media print {
    body { background: #fff; color: #000; font-size: 12pt; line-height: 1.5; }
    .top-bar, .navbar, .hamburger, .mobile-nav, .back-to-top,
    .modal-overlay, .hero-accent-line, .footer-social { display: none !important; }
    .hero { display: block; min-height: auto; }
    .hero-content { background: none; color: #000; padding: 20px 0; }
    .hero-content::after { display: none; }
    .hero h1 { color: #000; font-size: 24pt; }
    .hero h1 span { color: #333; }
    .hero-text { color: #333; }
    .hero-image { height: auto; max-height: 300px; }
    .section-label { color: #666; }
    .section-title { color: #000; }
    a { color: #000; }
    .branch-info-item a { color: #1A8A90; text-decoration: underline; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .service-prop-card, .branch-card, .article-card { break-inside: avoid; border: 1px solid #ccc; }
    .map-section, #map { display: none !important; }
    .footer { background: #fff; border-top: 1px solid #ccc; padding: 20px 0; }
    .footer-copy { color: #333; }
    .accordion-section { background: #fff; }
    .accordion-section .section-title { color: #000; }
    .accordion-trigger { color: #000; }
    .accordion-content { max-height: none !important; }
    .accordion-content-inner { color: #333; }
    .info-strip-grid { display: block; }
    .info-card { display: block; border: none; padding: 10px 0; text-align: left; }
    .services-grid, .articles-grid, .contact-grid { display: block; }
    .service-prop-card, .article-card, .branch-card { margin-bottom: 16px; }
    img { max-width: 100%; }
}
