/* =========================================================
   SourceOne Property — Modern Theme
   Brand Color (Light): #5FE2D2
   Background (Dark):   #14242B
   ========================================================= */

:root {
    --brand: #5FE2D2;
    --brand-dark: #2BC9B4;
    --brand-light: #E2FAF6;
    --brand-deep: #14242B;
    --on-brand: #14242B;
    --accent: #FFB400;
    --bg: #FFFFFF;
    --bg-alt: #F4FBFA;
    --text: #14242B;
    --text-muted: #4A5C66;
    --border: #DCEAE7;
    --card: #FFFFFF;
    --shadow: 0 10px 30px rgba(20, 36, 43, 0.08);
    --shadow-hover: 0 14px 40px rgba(20, 36, 43, 0.18);
    --radius: 14px;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --brand: #5FE2D2;
    --brand-dark: #2BC9B4;
    --brand-light: #1A3438;
    --brand-deep: #0A1418;
    --on-brand: #14242B;
    --accent: #FFC745;
    --bg: #14242B;
    --bg-alt: #1B2F36;
    --text: #E9F4F2;
    --text-muted: #9FB4B0;
    --border: #25404A;
    --card: #1B2F36;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

a { color: var(--brand); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-dark); }

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--brand-deep);
    color: #fff;
    font-size: 0.88rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar a { color: #fff; }
.topbar .top-info { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .top-info span i { margin-right: 6px; }
.topbar .top-social a { margin-left: 12px; font-size: 1rem; }

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.navbar .container {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; padding-bottom: 14px;
}
.logo img { height: 56px; width: auto; object-fit: contain; }
.logo .logo-dark { display: none; }
[data-theme="dark"] .logo .logo-light { display: none; }
[data-theme="dark"] .logo .logo-dark { display: block; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    position: relative;
}
.nav-menu > li { position: relative; }
.nav-menu > li.has-dropdown { position: static; }
.nav-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.96rem;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background: var(--brand-light);
    color: var(--brand);
}

/* Mega-dropdown for Services */
.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.75rem;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: min(820px, calc(100vw - 40px));
    max-width: 820px;
    padding: 26px;
    box-shadow: var(--shadow-hover);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 999;
}
.has-dropdown:hover .mega-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-col h4 {
    color: var(--brand);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-light);
}
.mega-col ul { list-style: none; }
.mega-col ul li a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 6px;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 6px;
}
.mega-col ul li a i {
    color: var(--brand);
    font-size: 0.9rem;
    width: 18px;
}
.mega-col ul li a:hover {
    background: var(--brand-light);
    color: var(--brand);
    padding-left: 12px;
}
.mega-col .show-all {
    display: inline-block;
    margin-top: 12px;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}
.theme-toggle:hover { background: var(--brand); color: var(--on-brand); border-color: var(--brand); }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand);
    color: var(--on-brand) !important;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
}
.btn:hover { background: var(--brand-dark); color: var(--on-brand) !important; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
    background: transparent;
    color: var(--brand-dark) !important;
    border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--on-brand) !important; }

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: linear-gradient(120deg, var(--brand-deep) 0%, #1F3A45 100%);
    color: #fff;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/gallery-1.webp') center/cover;
    opacity: 0.18;
}
.hero .container {
    position: relative;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
    padding: 80px 24px;
}
.hero-content h1 { color: #fff; margin-bottom: 18px; }
.hero-content .badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 6px 16px; border-radius: 30px; font-size: 0.85rem;
    margin-bottom: 18px; font-weight: 600; backdrop-filter: blur(8px);
}
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-outline { color: #fff !important; border-color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: var(--brand) !important; }

.hero-image-wrap {
    position: relative;
    padding-bottom: 50px;
}
.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: rotate(2deg);
}
.hero-image img { width: 100%; height: 460px; object-fit: cover; display: block; }
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--bg);
    color: var(--text);
    padding: 18px 26px;
    border-radius: 14px;
    box-shadow: var(--shadow-hover);
    transform: rotate(-2deg);
    display: flex;
    gap: 28px;
    align-items: center;
    z-index: 3;
}
.hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.1;
    white-space: nowrap;
}
.hero-stats .stat + .stat {
    padding-left: 28px;
    border-left: 1px solid var(--border);
}
.hero-stats .stat strong {
    color: var(--brand);
    font-size: 1.7rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin: 0;
}
.hero-stats .stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin: 0;
}

/* ===== SECTION COMMONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 12px;
    display: inline-block;
}
.section-head p { font-size: 1.05rem; }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 0; background: var(--brand);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { height: 100%; }
.service-icon {
    width: 64px; height: 64px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--brand); color: var(--on-brand); transform: rotate(-6deg) scale(1.06); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; margin-bottom: 14px; }
.service-card a { font-weight: 600; font-size: 0.9rem; }
.service-card a i { transition: var(--transition); }
.service-card a:hover i { transform: translateX(4px); }

/* ===== ABOUT / FEATURE BLOCK ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image img { width: 100%; height: 480px; object-fit: cover; }
.about-content .eyebrow { color: var(--brand); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; }
.about-content h2 { margin: 10px 0 18px; }
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
    display: flex; gap: 14px; align-items: start;
    margin-bottom: 16px;
}
.feature-list li i {
    background: var(--brand-light);
    color: var(--brand);
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.feature-list li strong { display: block; color: var(--text); margin-bottom: 4px; }
.feature-list li span { color: var(--text-muted); font-size: 0.92rem; }

/* ===== STATS ===== */
.stats-band {
    background: var(--brand);
    color: #fff;
    padding: 60px 0;
}
.stats-band .stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
.stats-band .stat-item h3 { color: #fff; font-size: 2.6rem; }
.stats-band .stat-item p { color: rgba(255,255,255,0.85); margin: 0; font-weight: 500; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,103,127,0.85) 100%);
    opacity: 0; transition: var(--transition);
}
.gallery-item .gallery-info {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    color: #fff; z-index: 2;
    transform: translateY(20px); opacity: 0;
    transition: var(--transition);
}
.gallery-item .gallery-info h4 { color: #fff; margin: 0; font-size: 1.1rem; }
.gallery-item .gallery-info span { font-size: 0.85rem; opacity: 0.9; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-info { transform: translateY(0); opacity: 1; }

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 70px 0;
    border-radius: 20px;
    margin: 90px auto;
    max-width: 1180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 50%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 26px; font-size: 1.1rem; }
.cta-band .btn { background: var(--brand); color: var(--on-brand) !important; }
.cta-band .btn:hover { background: var(--accent); color: var(--text) !important; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.testimonial .quote-icon { color: var(--brand); font-size: 1.5rem; margin-bottom: 12px; }
.testimonial p { font-style: italic; color: var(--text); }
.testimonial .meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial .meta .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--brand); color: var(--on-brand);
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.testimonial .meta strong { display: block; }
.testimonial .meta span { color: var(--text-muted); font-size: 0.85rem; }
.stars { color: var(--accent); margin-bottom: 8px; font-size: 0.9rem; }

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}
.blog-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card .blog-img { height: 220px; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-body { padding: 22px; }
.blog-card .blog-meta { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 8px; display: flex; gap: 12px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.92rem; }
.blog-card a { font-weight: 600; font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
}
.contact-info-card .info-item {
    display: flex; gap: 14px; align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-card .info-item:last-child { border-bottom: none; }
.contact-info-card .info-item i {
    background: var(--brand-light);
    color: var(--brand);
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-card .info-item strong { display: block; color: var(--text); margin-bottom: 2px; }
.contact-info-card .info-item span, .contact-info-card .info-item a { color: var(--text-muted); font-size: 0.95rem; }

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0,103,127,0.15);
}
.form-msg {
    padding: 12px 16px; border-radius: 8px;
    margin-bottom: 16px; font-size: 0.92rem; display: none;
}
.form-msg.success { background: #DEF7EC; color: #03543F; display: block; }
.form-msg.error { background: #FDE2E2; color: #9B1C1C; display: block; }

/* ===== FOOTER ===== */
.footer {
    background: #08171C;
    color: #B5C5CC;
    padding: 70px 0 0;
}
[data-theme="dark"] .footer { background: #050E12; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer .footer-logo img { height: 60px; margin-bottom: 16px; background: #fff; padding: 8px 12px; border-radius: 8px; }
.footer p { color: #B5C5CC; font-size: 0.92rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: #B5C5CC; font-size: 0.92rem; }
.footer ul li a:hover { color: var(--brand); padding-left: 4px; }
.footer-contact .info-item {
    display: flex; gap: 12px; align-items: start; margin-bottom: 14px; font-size: 0.92rem;
}
.footer-contact .info-item i { color: var(--brand); width: 16px; margin-top: 4px; }
.footer .social-icons {
    display: flex; gap: 12px; margin-top: 18px;
}
.footer .social-icons a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer .social-icons a:hover { background: var(--brand); color: var(--on-brand); transform: translateY(-3px); }
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.88rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/gallery-3.webp') center/cover;
    opacity: 0.15;
}
.page-banner .container { position: relative; }
.page-banner h1 { color: #fff; }
.page-banner .breadcrumb {
    margin-top: 12px;
    font-size: 0.95rem;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-banner .breadcrumb i { font-size: 0.7rem; margin: 0 8px; opacity: 0.7; }

/* ===== SERVICE DETAIL ===== */
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; right: 24px; bottom: 24px;
    width: 46px; height: 46px;
    background: var(--brand);
    color: #fff;
    border: none; border-radius: 50%;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999; box-shadow: var(--shadow-hover);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 320px; max-width: 85vw; height: 100vh;
        background: var(--bg);
        flex-direction: column; align-items: stretch;
        gap: 0;
        padding: 80px 24px 24px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li > a { padding: 14px; border-bottom: 1px solid var(--border); border-radius: 0; }
    .nav-menu > li.has-dropdown { position: relative; }
    .mega-menu {
        position: static;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
        opacity: 1; visibility: visible;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: none;
        padding: 12px 0 12px 14px;
    }
    .has-dropdown.open .mega-menu { display: grid; transform: none; }
    .hero .container { grid-template-columns: 1fr; padding: 60px 24px; }
    .hero-image { margin-top: 30px; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band .stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    /* Mobile header polish */
    .navbar .container { padding-top: 10px; padding-bottom: 10px; }
    .nav-actions { gap: 8px; }
    .logo img { height: 44px; }
    .theme-toggle { width: 38px; height: 38px; font-size: 0.95rem; }
    .menu-toggle { width: 42px; height: 42px; }
    /* Hide Get Quote button on mobile — Contact link is in the menu */
    .nav-actions > .btn { display: none; }
}

@media (max-width: 900px) {
    .hero-image-wrap { padding-bottom: 0; }
    .hero-image img { height: 340px; }
    .hero-stats {
        position: static;
        transform: none;
        margin: 18px auto 0;
        width: max-content;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .topbar .top-info span:nth-child(3) { display: none; }
}

@media (max-width: 600px) {
    .topbar .top-info { font-size: 0.78rem; gap: 10px; }
    .topbar .top-info span:nth-child(2) { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .stats-band .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero-image img { height: 280px; }
    .hero-stats { padding: 14px 18px; gap: 18px; }
    .hero-stats .stat + .stat { padding-left: 18px; }
    .hero-stats .stat strong { font-size: 1.4rem; }
}
