* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    direction: rtl;
    font-family: "Cairo", Arial, sans-serif;
    background: #f8fafc;
    color: #172033;
    line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(100% - 32px, 1180px); margin-inline: auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(144,13,123,.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}
.header-grid {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}
.brand small {
    display: block;
    color: var(--primary);
    font-size: 12px;
    line-height: 1.2;
}
.brand-mark {
    color: var(--primary);
    font-size: 26px;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: #f8ecf6;
    border: 1px solid rgba(144,13,123,.15);
    border-radius: 999px;
    overflow: visible;
}
.main-nav a, .main-nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 14px;
}
.main-nav a:hover, .main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.main-nav ul,
.main-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav li::marker {
    content: "";
}
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav li { position: relative; }
.main-nav > ul > .menu-item-has-children {
    display: flex;
    align-items: center;
}
.main-nav .submenu-toggle {
    position: relative;
    width: 32px;
    height: 32px;
    margin-inline-start: -12px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--primary-dark);
    cursor: pointer;
    flex: 0 0 32px;
}
.main-nav .submenu-toggle::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 11px;
    width: 8px;
    height: 8px;
    border-inline-end: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease, top .2s ease;
}
.main-nav .submenu-toggle:hover,
.main-nav .submenu-toggle:focus-visible {
    background: rgba(144,13,123,.1);
    outline: 0;
}
.main-nav li.is-open > .submenu-toggle::before {
    top: 13px;
    transform: rotate(225deg);
}
.main-nav .sub-menu {
    position: absolute;
    z-index: 100;
    top: calc(100% - 2px);
    inset-inline-start: 0;
    display: block;
    min-width: 250px;
    padding: 10px;
    border: 1px solid rgba(144,13,123,.16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15,23,42,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.main-nav .sub-menu .sub-menu {
    top: 0;
    inset-inline-start: calc(100% + 8px);
}
.main-nav .sub-menu li {
    display: block;
    width: 100%;
}
.main-nav .sub-menu a,
.main-nav .sub-menu li a {
    display: flex;
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 8px;
    justify-content: flex-start;
    white-space: nowrap;
}
.main-nav li.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
@media (min-width: 981px) {
    .main-nav li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}
.header-cta, .btn, .package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(144,13,123,.18);
}
.header-cta { border-radius: 999px; min-height: 42px; padding-inline: 22px; }
.btn.accent { background: var(--accent); }
.btn.ghost {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid rgba(144,13,123,.24);
    box-shadow: none;
}
.hero-section {
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(240,248,255,.92), rgba(255,255,255,.7)),
        radial-gradient(circle at 10% 15%, rgba(144,13,123,.08), transparent 30%);
}
.hero-slider {
    position: relative;
}
.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 42px;
    align-items: center;
    min-height: 520px;
}
.hero-slide.active {
    display: grid;
}
.hero-copy {
    max-width: 760px;
}
.hero-media {
    min-height: 390px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #f8ecf6);
    box-shadow: 0 24px 80px rgba(104, 9, 89, .10);
    color: var(--primary);
    font-size: 70px;
    overflow: hidden;
}
.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--primary);
    background: #f8ecf6;
    font-weight: 900;
    font-size: 14px;
}
.hero-copy h1 {
    margin: 24px 0 12px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.25;
    font-weight: 900;
}
.hero-copy h1 span {
    color: var(--primary);
    border-bottom: 4px solid var(--primary);
}
.hero-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 34px);
}
.hero-copy h2, .hero-copy h2 strong { color: #273449; }
.hero-copy p { color: #48566a; font-size: 18px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.slider-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(144,13,123,.28);
    cursor: pointer;
}
.slider-dots button.active {
    width: 28px;
    background: var(--primary);
}
.hero-actions, .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}
.trust-row { color: #607086; font-size: 14px; }
.features-strip {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    box-shadow: 0 4px 18px rgba(15,23,42,.04);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-block: 42px;
    text-align: center;
}
.feature-grid span {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f8ecf6;
    color: var(--primary);
    font-size: 24px;
}
.feature-grid .home-feature-item {
    display: block;
    color: inherit;
    text-decoration: none;
}
.feature-grid .home-feature-item img {
    display: inline-flex;
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 16px;
}
.feature-grid h3 { margin: 12px 0 4px; }
.feature-grid p { margin: 0; color: #66758a; font-size: 14px; }
.section { padding: 78px 0; background: #fff; }
.section.soft { background: #f8fafc; }
.section-title { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.section-title h2 {
    margin: 16px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
    font-weight: 900;
}
.section-title h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 99px;
    background: var(--primary);
}
.section-title p { color: #5b687b; }
.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #f0e3ee;
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.package-card.is-featured {
    border-top: 5px solid var(--primary);
    transform: translateY(-10px);
}
.package-badge {
    position: absolute;
    top: 0;
    inset-inline-start: 24px;
    transform: translateY(-50%);
    padding: 6px 14px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 900;
}
.package-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.package-icon {
    color: var(--primary);
    font-size: 28px;
}
.package-head h3 { margin: 0; font-size: 26px; }
.package-head p { margin: 4px 0 0; color: #758295; }
.package-price {
    margin: 24px 0 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.package-price strong { font-size: 38px; line-height: 1; }
.old-price { color: #9ca3af; text-decoration: line-through; }
.discount-label { color: var(--primary); font-weight: 900; margin: 0 0 12px; }
.feature-list {
    display: grid;
    gap: 11px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-list span { color: var(--accent); font-weight: 900; }
.feature-list .muted { color: #9ca3af; }
.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 18px;
}
.package-meta span {
    padding: 5px 10px;
    border-radius: 999px;
    background: #f8ecf6;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}
.package-btn { width: 100%; }
.family-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.family-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(144,13,123,.14);
    box-shadow: 0 16px 38px rgba(15,23,42,.07);
}
.family-service-card.is-featured {
    border-top: 5px solid var(--primary);
}
.service-badge {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--primary);
    background: #f8ecf6;
    font-size: 13px;
    font-weight: 900;
}
.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f8ecf6;
    color: var(--primary);
    font-size: 24px;
}
.family-service-card h3 {
    margin: 0;
    font-size: 24px;
}
.family-service-card p {
    margin: 0;
    color: #66758a;
}
.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.service-price strong {
    font-size: 32px;
}
.service-price span {
    color: #9ca3af;
    text-decoration: line-through;
}
.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.archive-hero {
    padding: 82px 0;
    background: linear-gradient(90deg, #f8ecf6, #fff);
    text-align: center;
}
.archive-hero h1 {
    margin: 14px auto 10px;
    max-width: 820px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.2;
}
.archive-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #5b687b;
}
.service-single-grid {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 32px;
    align-items: center;
    text-align: right;
}
.service-summary {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.service-summary strong {
    display: block;
    color: var(--primary);
    font-size: 34px;
}
.service-summary span {
    color: #9ca3af;
    text-decoration: line-through;
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.benefit-grid div {
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}
.benefit-grid strong { display: block; }
.benefit-grid span { color: #66758a; font-size: 14px; }
.visual-card {
    min-height: 320px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8ecf6, #fff, #f3ddeb);
    box-shadow: 0 20px 46px rgba(104,9,89,.12);
    color: var(--primary);
    font-size: 48px;
}
.booking-section {
    background: linear-gradient(90deg, #f8ecf6, #fff, #f8ecf6);
}
.booking-form {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(15,23,42,.08);
}
.form-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}
.form-progress span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3e6f1;
    color: var(--primary-dark);
    font-weight: 900;
}
.form-progress span.active { background: var(--primary); color: #fff; }
.form-step { display: none; border: 0; padding: 0; margin: 0; }
.form-step.active { display: block; }
.form-step legend {
    width: 100%;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 900;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.booking-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #dfe5ee;
    border-radius: 12px;
    background: #fff;
    font: inherit;
}
.booking-form textarea { min-height: 110px; resize: vertical; }
.member-card {
    padding: 18px;
    margin-bottom: 16px;
    border: 1px solid #f0e3ee;
    border-radius: 16px;
    background: #fffafd;
}
.member-card h3 { margin: 0 0 14px; }
.package-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.package-option {
    padding: 16px;
    border: 1px solid #ead7e7;
    border-radius: 14px;
    cursor: pointer;
}
.package-option:has(input:checked) {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(144,13,123,.10);
}
.package-option input { width: auto; min-height: auto; }
.package-option span, .package-option small { display: block; color: #66758a; }
.quote-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
}
.quote-box span { display: block; color: var(--primary); font-size: 22px; font-weight: 900; }
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.submit-btn { display: none; }
.success-box {
    max-width: 980px;
    margin: 0 auto 20px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #047857;
    font-weight: 900;
}
.error-box {
    max-width: 980px;
    margin: 0 auto 20px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #fef2f2;
    color: #b91c1c;
    font-weight: 900;
}
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.brand-logo img.custom-logo {
    max-height: 56px;
    width: auto;
    display: block;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.article-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(144,13,123,.14);
    border-radius: 14px;
    background: #fff;
    transition: .2s ease;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(104,9,89,.12);
}
.article-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
}
.article-card p { margin: 0; color: #66758a; }
.site-footer {
    padding: 56px 0 20px;
    background: #0f172a;
    color: #cbd5e1;
    border-top: 8px solid var(--primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}
.footer-brand { color: #fff; font-size: 20px; }
.footer-brand span { color: var(--primary); }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.socials { display: flex; gap: 8px; margin-top: 16px; }
.socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e293b;
}
.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
}
.back-top {
    position: fixed;
    inset-inline-start: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 28px rgba(144,13,123,.22);
}
.content-card {
    padding: 32px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

/* WooCommerce shop */
body.woocommerce-shop .page-shell .section {
    padding-block: 36px 56px;
}
body.woocommerce-shop article.content-card {
    padding: clamp(20px, 3vw, 34px);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(15,23,42,.07);
}
body.woocommerce-shop article.content-card > h1 {
    margin: 0 0 20px;
    color: #172033;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.3;
}
body.woocommerce-shop .site-main .woocommerce {
    max-width: 1180px;
    margin-inline: auto;
}
body.woocommerce-shop #sidebar,
body.woocommerce-shop .widget-area {
    display: none !important;
}
.woocommerce .woocommerce-result-count {
    float: right;
    margin: 8px 0 24px;
    color: #64748b;
    font-weight: 700;
}
.woocommerce .woocommerce-ordering {
    float: left;
    margin: 0 0 24px;
}
.woocommerce .woocommerce-ordering select {
    min-width: 210px;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid #d8c4d4;
    border-radius: 6px;
    background: #fff;
    color: #172033;
    font-family: inherit;
    font-weight: 700;
}
.woocommerce ul.products {
    clear: both;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}
.woocommerce ul.products li.product {
    position: relative;
    float: none !important;
    display: flex;
    flex-direction: column;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15,23,42,.06);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.woocommerce ul.products li.product:hover {
    border-color: rgba(144,13,123,.38);
    box-shadow: 0 14px 30px rgba(15,23,42,.11);
    transform: translateY(-3px);
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 170px;
    margin: 0 0 14px !important;
    padding: 8px;
    object-fit: contain;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 50px;
    margin: 0;
    padding: 0 !important;
    color: #172033;
    font-size: 15px !important;
    font-weight: 900;
    line-height: 1.7;
    text-align: right;
}
.woocommerce ul.products li.product .price {
    display: flex;
    min-height: 38px;
    margin: 6px 0 12px !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--primary) !important;
    font-size: 15px !important;
    font-weight: 900;
}
.woocommerce ul.products li.product .price del {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    opacity: 1;
}
.woocommerce ul.products li.product .price ins {
    color: var(--primary);
    text-decoration: none;
}
.woocommerce ul.products li.product .button {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    margin: auto 0 0 !important;
    padding: 8px 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    font-weight: 900;
}
.woocommerce ul.products li.product .button:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: #fff;
}
.woocommerce ul.products li.product .onsale {
    z-index: 2;
    top: 12px;
    inset-inline-start: 12px;
    right: auto;
    left: auto;
    min-width: 54px;
    min-height: 32px;
    margin: 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    line-height: 22px;
}
@media (max-width: 1100px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
    body.woocommerce-shop article.content-card { padding: 18px; }
    .woocommerce .woocommerce-result-count,
    .woocommerce .woocommerce-ordering { float: none; width: 100%; }
    .woocommerce .woocommerce-ordering select { width: 100%; }
    .woocommerce ul.products { grid-template-columns: 1fr; gap: 16px; }
    .woocommerce ul.products li.product a img { height: 190px; }
    .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 0; }
}
.empty-state { text-align: center; grid-column: 1 / -1; }
@media (max-width: 980px) {
    .header-grid { grid-template-columns: 1fr; padding-block: 14px; gap: 12px; text-align: center; }
    .brand { justify-content: center; }
    .main-nav { width: 100%; flex-wrap: wrap; border-radius: 18px; }
    .main-nav > ul { width: 100%; flex-wrap: wrap; justify-content: center; }
    .main-nav > ul > .menu-item-has-children { flex-wrap: wrap; }
    .main-nav .sub-menu {
        position: static;
        flex: 1 0 100%;
        width: 100%;
        min-width: 0;
        margin-top: 6px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: 0 10px 24px rgba(15,23,42,.1);
    }
    .main-nav li.is-open > .sub-menu { display: block; }
    .main-nav .sub-menu .sub-menu { margin-inline-start: 12px; }
    .hero-section { min-height: auto; padding: 56px 0; }
    .hero-slide { grid-template-columns: 1fr; text-align: center; min-height: auto; }
    .hero-media { min-height: 260px; font-size: 48px; }
    .hero-media img { min-height: 260px; }
    .hero-actions, .trust-row { justify-content: center; }
    .feature-grid, .family-services-grid, .split-grid, .articles-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-single-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 680px) {
    .container { width: min(100% - 20px, 1180px); }
    .main-nav > ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .main-nav > ul > li { min-width: 0; justify-content: center; }
    .main-nav > ul > .menu-item-has-children { grid-column: 1 / -1; }
    .main-nav > ul > li > a { min-width: 0; padding-inline: 10px; font-size: 13px; }
    .main-nav .submenu-toggle { margin-inline-start: -6px; }
    .main-nav li.is-open > .sub-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .main-nav .sub-menu a, .main-nav .sub-menu li a { white-space: normal; font-size: 13px; }
    .header-cta { width: 100%; }
    .hero-copy h1 { font-size: 34px; }
    .feature-grid, .family-services-grid, .split-grid, .benefit-grid, .form-grid, .package-options, .articles-grid, .footer-grid { grid-template-columns: 1fr; }
    .package-card.is-featured { transform: none; }
    .booking-form { padding: 18px; border-radius: 18px; }
    .form-actions { position: sticky; bottom: 0; z-index: 20; padding-top: 12px; background: #fff; }
    .form-actions .btn { flex: 1; padding-inline: 12px; }
    .back-top { display: none; }
}
