/* CSS Variables for Premium Aesthetics */
:root {
    --primary-col: #1B4965;
    /* Deep, calming blue */
    --primary-light: #62B6CB;
    /* Soft oceanic blue */
    --accent-col: #CAE9FF;
    /* Very light blue */
    --bg-color: #F8F9FA;
    /* Warm off-white */
    --bg-alt: #FFFFFF;
    /* Pure white */
    --bg-dark: #121A21;
    /* Modern rich dark blue-black */
    --text-main: #2C3E50;
    /* Soft dark grey for readable text */
    --text-muted: #5C677D;
    /* Muted text for descriptions */
    --white: #FFFFFF;

    --transition-snappy: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 60px rgba(27, 73, 101, 0.15);

    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    color: var(--primary-col);
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-snappy);
}

ul {
    list-style: none;
}

.section {
    padding: 100px 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.bg-dark h3,
.bg-dark p {
    color: var(--accent-col);
}

/* Buttons */
.btn-primary,
.btn-primary-sm {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-col), var(--primary-light));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(98, 182, 203, 0.3);
}

.btn-primary:hover,
.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(98, 182, 203, 0.4);
    color: var(--white);
}

.btn-primary-sm {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-col);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-snappy);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition-snappy);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-col), var(--primary-light));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-cta:hover {
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(98, 182, 203, 0.3);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(27, 73, 101, 0.08);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
    flex-direction: column;
}

.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown.active > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.92rem;
    color: var(--text-main) !important;
    white-space: nowrap;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(27, 73, 101, 0.04);
    color: var(--primary-col) !important;
    padding-left: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-col);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/hero_background_1772546770722.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.8), rgba(98, 182, 203, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent-col);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Layout Blocks */
.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 2px;
    margin: 1.5rem 0;
}

/* About Section */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--primary-col);
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

.help-list {
    margin-top: 1.5rem;
}

.help-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.help-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--accent-col);
    color: var(--primary-col);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-snappy);
}

.service-card:hover .service-icon {
    background: var(--primary-col);
    color: var(--white);
}

.service-card.has-bg {
    padding: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: var(--white);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 0;
}

.card-overlay {
    background: linear-gradient(to top, rgba(27, 73, 101, 0.95), rgba(27, 73, 101, 0));
    padding: 40% 2rem 2rem 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.card-overlay h3,
.card-overlay p {
    color: var(--white);
}

/* Pricing Section */
.pricing-image {
    position: relative;
}

.glass-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #BDE0FE);
    filter: blur(60px);
    z-index: 0;
    top: -50px;
    left: -50px;
    opacity: 0.6;
}

.orb-small {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFC8DD, #FFAFCC);
    top: auto;
    bottom: -50px;
    left: auto;
    right: -20px;
}

.pricing-box {
    position: relative;
    z-index: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-item:last-child {
    border-bottom: none;
}

.price-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-snappy);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-photo-wrapper {
    position: relative;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 4px solid var(--accent-col);
    transition: var(--transition-snappy);
}

.team-photo-wrapper:hover .team-photo {
    border-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(27, 73, 101, 0.25);
}

.team-photo-hint {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--primary-col);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-snappy);
    pointer-events: none;
}

.team-photo-wrapper:hover .team-photo-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-card {
    cursor: pointer;
}

/* Team Modal */
.team-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.team-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.team-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.team-modal-overlay.active .team-modal {
    transform: scale(1) translateY(0);
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-snappy);
}

.team-modal-close:hover {
    color: var(--primary-col);
}

.team-modal-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 4px solid var(--accent-col);
    margin-bottom: 1.5rem;
}

.team-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.team-modal .team-role {
    margin-bottom: 1.5rem;
}

.team-modal-desc {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    color: var(--text-main);
}

.team-role {
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-desc {
    font-size: 0.9rem;
    margin: 0;
}

/* Maps Grid */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.map-wrapper {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.map-wrapper h3 {
    margin-bottom: 0.5rem;
}

.map-wrapper iframe {
    border-radius: 12px;
    margin-top: 1rem;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.5fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-brand-name {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.footer-contact-info {
    margin: 1rem 0;
}

.footer-contact-info p {
    margin-bottom: 0.3rem;
}

.footer-contact-link {
    color: var(--primary-light) !important;
    font-weight: 500;
    font-size: 1.05rem;
}

.footer-contact-link:hover {
    color: var(--white) !important;
}

.footer-legal-ids {
    font-size: 0.85rem;
    color: var(--text-muted) !important;
    margin-top: 0.5rem;
}

.footer-online-heading {
    margin-top: 1.5rem;
}

.footer-legal-link {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-legal-link:hover {
    opacity: 1;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-muted);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-col), #1a3a52);
    color: var(--white);
}

.booking-section .section-title {
    color: var(--white);
}

.booking-section .section-subtitle {
    color: var(--accent-col);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.booking-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-snappy);
}

.booking-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.booking-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.booking-card p {
    color: var(--accent-col);
    margin-bottom: 1.5rem;
}

.booking-icon {
    color: var(--accent-col);
    margin-bottom: 1.5rem;
}

.booking-btn {
    display: inline-block;
    margin-bottom: 0.8rem;
    width: 100%;
    text-align: center;
}

.booking-contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-secondary-dark {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--accent-col);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-snappy);
}

.btn-secondary-dark:hover {
    background: var(--accent-col);
    color: var(--primary-col);
}

@media (max-width: 768px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
}

/* App Section */
.app-highlight-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-col);
}

.app-buttons {
    margin-top: 2rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.app-disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.app-image {
    text-align: center;
    position: relative;
}

.app-orb {
    top: 10%;
    right: 10%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-col));
}

.app-mockup-img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transform: rotate(3deg);
    position: relative;
    z-index: 2;
}

/* App Coming Soon Toast */
.app-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary-col);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.app-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 992px) {

    .dual-col,
    .services-grid,
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 36px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: auto;
        padding: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(27, 73, 101, 0.03);
    }

    .nav-dropdown:hover > .nav-dropdown-menu {
        max-height: 0;
        overflow: hidden;
    }

    .nav-dropdown.active > .nav-dropdown-menu {
        max-height: 300px;
    }

    .nav-dropdown-menu a {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 2.25rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.75rem;
    border: 1px solid rgba(27, 73, 101, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-snappy);
    background: var(--bg-alt);
}

.faq-item[open] {
    border-color: rgba(27, 73, 101, 0.3);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: background-color var(--transition-snappy);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-col);
    transition: transform var(--transition-snappy);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    content: '\2212';
}

.faq-question:hover {
    background-color: rgba(27, 73, 101, 0.03);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--primary-col);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: var(--primary-light);
}

/* Location description link */
.location-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.location-desc a {
    color: var(--primary-col);
    font-weight: 500;
}

.location-desc a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Inline content links */
.inline-link {
    color: var(--primary-col);
    font-weight: 500;
}

.inline-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Subpage hero (shorter) */
.subpage-hero {
    height: auto;
    min-height: 50vh;
    padding: 120px 2rem 60px;
}

.subpage-hero .hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 0;
}

.subpage-hero .hero-title {
    font-size: 2.8rem;
}

.subpage-hero .hero-description {
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--white);
}

/* Single map layout */
.single-map .map-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Article pages */
.article-content {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

/* Article typography – consistent vertical rhythm */
.article-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(27, 73, 101, 0.08);
    line-height: 1.3;
}

.article-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-light);
    line-height: 1.35;
}

.article-content p {
    margin-bottom: 1.15rem;
    line-height: 1.85;
    font-size: 1.02rem;
}

.article-content ul,
.article-content ol {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.6rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-size: 1.02rem;
    padding-left: 0.25rem;
}

.article-content ul li {
    list-style: disc;
}

.article-content ul li::marker {
    color: var(--primary-light);
}

.article-content ol li {
    list-style: decimal;
}

.article-content ol li::marker {
    color: var(--primary-col);
    font-weight: 600;
}

.article-content a {
    color: var(--primary-col);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(27, 73, 101, 0.3);
}

.article-content a:hover {
    color: var(--primary-light);
    text-decoration-color: var(--primary-light);
}

.article-content blockquote {
    border-left: 4px solid var(--primary-light);
    padding: 1.25rem 1.75rem;
    margin: 2rem 0;
    background: rgba(27, 73, 101, 0.03);
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--primary-col);
}

/* Article meta (author / category line) */
.article-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(27, 73, 101, 0.08);
}

/* Article CTA box */
.article-cta {
    background: linear-gradient(135deg, var(--primary-col), var(--primary-light));
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3.5rem;
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-cta .btn-primary {
    margin-bottom: 0.5rem;
}

.article-cta .btn-secondary {
    border-color: var(--white);
}

.related-articles {
    margin-top: 3.5rem;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 12px;
    border: 1px solid rgba(27, 73, 101, 0.08);
}

.related-articles h3 {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: var(--primary-col);
}

.related-articles ul {
    padding-left: 0;
    margin-bottom: 0;
}

.related-articles li {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.related-articles a {
    color: var(--primary-col);
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(27, 73, 101, 0.06);
    transition: var(--transition-snappy);
}

.related-articles li:last-child a {
    border-bottom: none;
}

.related-articles a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

/* Article responsive */
@media (max-width: 768px) {
    .article-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .article-content h2 {
        font-size: 1.3rem;
        margin-top: 2.25rem;
        padding-top: 1.25rem;
    }

    .article-content h3 {
        font-size: 1.08rem;
        margin-top: 1.5rem;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 1.5rem;
    }

    .subpage-hero {
        min-height: 40vh;
        padding: 100px 1.5rem 40px;
    }

    .subpage-hero .hero-title {
        font-size: 1.8rem;
    }

    .subpage-hero .hero-description {
        font-size: 1rem;
    }

    .article-cta {
        padding: 1.75rem 1.25rem;
    }

    .related-articles {
        padding: 1.5rem;
    }
}