:root {
    --purple-950: #2d0b38;
    --purple-900: #351041;
    --purple-800: #48145a;
    --purple-700: #5b1b72;
    --purple-600: #70228a;
    --purple-500: #8620a9;
    --purple-100: #ead8ef;
    --purple-50: #f6eff8;
    --gold-600: #b88c30;
    --gold-500: #d8b45b;
    --gold-300: #ead294;
    --ivory: #faf7f2;
    --paper: #fffdf9;
    --white: #ffffff;
    --ink: #302a33;
    --muted: #746d76;
    --line: #e8e0e9;
    --success: #17734a;
    --danger: #b22938;
    --shadow-sm: 0 12px 32px rgba(53, 16, 65, 0.08);
    --shadow-md: 0 24px 65px rgba(53, 16, 65, 0.13);
    --shadow-lg: 0 32px 90px rgba(53, 16, 65, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1220px;
    --header-height: 84px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--gold-300);
    color: var(--purple-950);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
blockquote {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--gold-500);
    color: var(--purple-950);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
    vertical-align: middle;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: var(--purple-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow i {
    position: relative;
    display: block;
    width: 42px;
    height: 1px;
    background: var(--gold-500);
}

.eyebrow i::after {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.eyebrow.light {
    color: var(--gold-300);
}

.section-heading {
    max-width: 690px;
    margin-bottom: 54px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1.05fr 0.7fr;
    gap: 100px;
    max-width: none;
    align-items: end;
}

.section-heading.split p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.section-heading h2,
.about-copy h2,
.facilities-copy h2,
.faq-intro h2,
.consultation-copy h2 {
    margin-bottom: 20px;
    color: var(--purple-950);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(2.45rem, 4.5vw, 4.3rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p {
    max-width: 620px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 1.03rem;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.circle-link:focus-visible,
.text-link:focus-visible,
.faq-item button:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid rgba(216, 180, 91, 0.56);
    outline-offset: 3px;
}

.button-primary {
    background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
    box-shadow: 0 13px 30px rgba(91, 27, 114, 0.22);
    color: var(--white);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
    box-shadow: 0 16px 36px rgba(91, 27, 114, 0.3);
}

.button-outline {
    border-color: rgba(91, 27, 114, 0.38);
    background: rgba(255, 255, 255, 0.72);
    color: var(--purple-800);
    backdrop-filter: blur(8px);
}

.button-outline:hover {
    border-color: var(--gold-500);
    background: var(--white);
}

.button-lg {
    min-height: 60px;
    padding-inline: 27px;
}

.button-sm {
    min-height: 46px;
    padding: 11px 19px;
    border-radius: 50px;
    font-size: 0.83rem;
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--purple-700);
    font-size: 0.92rem;
    font-weight: 800;
}

.text-link .icon {
    transition: transform 180ms ease;
}

.text-link:hover .icon {
    transform: translateX(5px);
}

/* Topbar and navigation */
.topbar {
    position: relative;
    z-index: 51;
    background: var(--purple-950);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
}

.topbar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p,
.topbar-contact,
.topbar-contact a,
.topbar-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.topbar .icon {
    color: var(--gold-500);
}

.topbar-contact {
    gap: 22px;
}

.topbar-contact a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(18px);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
    border-bottom-color: rgba(91, 27, 114, 0.08);
    box-shadow: 0 12px 34px rgba(53, 16, 65, 0.07);
}

.nav-wrap {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 48px;
    height: 54px;
    place-items: center;
    overflow: hidden;
    border: 2px solid var(--purple-700);
    border-bottom-width: 5px;
    border-radius: 48% 48% 11px 11px;
    background: linear-gradient(180deg, var(--purple-50), var(--white));
    color: var(--gold-600);
}

.brand-mark::before {
    position: absolute;
    inset: 5px 7px auto;
    height: 25px;
    border: 1.5px solid rgba(91, 27, 114, 0.4);
    border-radius: 50% 50% 8px 8px;
    content: "";
}

.brand-star {
    position: absolute;
    z-index: 2;
    top: 6px;
    font-size: 0.85rem;
}

.brand-kaaba {
    position: absolute;
    z-index: 2;
    bottom: 7px;
    width: 26px;
    height: 17px;
    background: var(--purple-900);
    clip-path: polygon(50% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
}

.brand-kaaba::after {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-500);
    content: "";
}

.brand-copy {
    display: flex;
    flex-direction: column;
    color: var(--purple-900);
    line-height: 1;
}

.brand-copy strong {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--gold-600);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.34em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.5vw, 38px);
}

.desktop-nav a {
    position: relative;
    padding: 30px 0;
    color: #514953;
    font-size: 0.83rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 18px;
    left: 50%;
    height: 2px;
    background: var(--gold-500);
    content: "";
    transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--purple-700);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    right: 0;
    left: 0;
}

.nav-cta .icon {
    width: 1.1rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    color: var(--purple-800);
}

.menu-close-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
    display: block;
}

.mobile-nav {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(790px, calc(100svh - 38px));
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 10%, rgba(216, 180, 91, 0.16), transparent 26%),
        linear-gradient(105deg, #f0e5f2 0%, var(--ivory) 48%, #f8f4ea 100%);
}

.hero::before {
    position: absolute;
    top: -310px;
    left: 48%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(91, 27, 114, 0.1);
    border-radius: 50%;
    content: "";
}

.hero-pattern,
.consultation-pattern {
    position: absolute;
    inset: 0 auto 0 0;
    width: 36%;
    opacity: 0.085;
    background-image:
        linear-gradient(30deg, transparent 35%, currentColor 35%, currentColor 37%, transparent 37%, transparent 63%, currentColor 63%, currentColor 65%, transparent 65%),
        linear-gradient(-30deg, transparent 35%, currentColor 35%, currentColor 37%, transparent 37%, transparent 63%, currentColor 63%, currentColor 65%, transparent 65%);
    background-position: 0 0, 0 0;
    background-size: 46px 80px;
    color: var(--purple-700);
    mask-image: linear-gradient(to right, black, transparent);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: min(790px, calc(100svh - 38px));
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    align-items: center;
    gap: 28px;
    padding-block: 70px 80px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 660px;
}

.hero h1 {
    max-width: 670px;
    margin-bottom: 25px;
    color: var(--purple-950);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(4rem, 6.1vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.89;
}

.hero h1 em,
.about-copy h2 em {
    color: var(--purple-600);
    font-style: normal;
}

.hero h1 em {
    position: relative;
}

.hero h1 em::after {
    position: absolute;
    right: 7px;
    bottom: -7px;
    left: 5px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
    content: "";
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 30px;
    color: #5d5660;
    font-size: 1.05rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 31px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: #5d5360;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust span .icon {
    color: var(--gold-600);
}

.hero-trust > i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-500);
}

.hero-visual {
    position: relative;
    height: 610px;
    align-self: end;
}

.arch {
    position: absolute;
    border-radius: 48% 48% 10px 10px;
    pointer-events: none;
}

.arch-back {
    inset: -28px -115px 10px 42px;
    border: 1px solid rgba(91, 27, 114, 0.1);
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(4deg);
}

.arch-middle {
    inset: 24px -54px -20px 8px;
    border: 25px solid rgba(91, 27, 114, 0.08);
    transform: rotate(-3deg);
}

.hero-photo {
    position: absolute;
    inset: 3px -150px -38px 48px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 49% 49% 12px 12px;
    box-shadow: var(--shadow-lg);
}

.hero-photo::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(91, 27, 114, 0.2), transparent 35%),
        linear-gradient(180deg, transparent 55%, rgba(53, 16, 65, 0.08));
    content: "";
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 61% center;
    animation: heroDrift 15s ease-in-out infinite alternate;
}

.journey-card {
    position: absolute;
    z-index: 4;
    right: -48px;
    bottom: 10px;
    display: flex;
    width: 375px;
    min-height: 172px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-md);
    background: rgba(250, 247, 242, 0.91);
    box-shadow: var(--shadow-md);
    color: var(--purple-800);
    text-align: center;
    backdrop-filter: blur(18px);
    animation: floatCard 5s ease-in-out infinite;
}

.journey-icons {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 12px;
}

.journey-icons span {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 10px;
    background: var(--purple-50);
}

.journey-icons i {
    width: 24px;
    height: 1px;
    background: var(--gold-500);
}

.journey-card strong {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.journey-card small {
    color: var(--muted);
    font-size: 0.76rem;
}

.hero-rating {
    position: absolute;
    z-index: 5;
    bottom: 91px;
    left: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.rating-avatars {
    display: flex;
}

.rating-avatars span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    margin-left: -7px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--purple-100);
    color: var(--purple-800);
    font-size: 0.58rem;
    font-weight: 800;
}

.rating-avatars span:first-child {
    margin-left: 0;
}

.stars {
    color: var(--gold-600);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.hero-rating small {
    display: block;
    color: var(--muted);
    font-size: 0.6rem;
    line-height: 1.2;
}

/* Trust strip */
.trust-strip {
    position: relative;
    z-index: 4;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    align-items: center;
}

.trust-grid > div {
    min-height: 122px;
    padding: 29px 30px;
    border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.trust-intro {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mini-logo {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--purple-700);
    color: var(--gold-300);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.trust-intro p {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.6;
}

.stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat strong {
    color: var(--purple-800);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.stat span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.stat-license {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.stat-license > .icon {
    width: 34px;
    height: 34px;
    color: var(--gold-600);
}

.stat-license div {
    display: flex;
    flex-direction: column;
}

/* Packages */
.packages-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 0 100%, rgba(91, 27, 114, 0.07), transparent 30%),
        var(--paper);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.package-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(53, 16, 65, 0.06);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.package-card:hover {
    border-color: rgba(91, 27, 114, 0.24);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.package-card.featured {
    border-color: rgba(216, 180, 91, 0.58);
}

.package-card.featured::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(216, 180, 91, 0.28);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.package-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.package-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(53, 16, 65, 0.02) 35%, rgba(53, 16, 65, 0.55));
    content: "";
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.package-card:hover .package-image img {
    transform: scale(1.045);
}

.package-category,
.package-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    padding: 7px 11px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.package-category {
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--purple-800);
    backdrop-filter: blur(8px);
}

.package-badge {
    right: 16px;
    background: var(--gold-500);
    color: var(--purple-950);
}

.package-body {
    padding: 25px;
}

.package-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.package-heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-600);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.package-heading h3 {
    margin: 0;
    color: var(--purple-900);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.15;
}

.duration {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--purple-50);
    color: var(--purple-700);
    font-size: 0.64rem;
    font-weight: 800;
}

.package-meta {
    display: grid;
    gap: 15px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.package-meta li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #514b53;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
}

.package-meta .icon {
    width: 19px;
    height: 19px;
    margin-top: 3px;
    color: var(--purple-600);
}

.package-meta small {
    display: block;
    margin-bottom: 2px;
    color: #948b96;
    font-size: 0.61rem;
    font-weight: 600;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.price small {
    display: block;
    color: var(--muted);
    font-size: 0.62rem;
}

.price strong {
    color: var(--purple-700);
    font-size: 1.18rem;
    font-weight: 800;
}

.price span {
    color: var(--muted);
    font-size: 0.58rem;
}

.circle-link {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--purple-700);
    color: var(--white);
    transition: background 180ms ease, transform 180ms ease;
}

.circle-link:hover {
    background: var(--gold-500);
    color: var(--purple-950);
    transform: rotate(-8deg);
}

.packages-note {
    display: flex;
    max-width: 760px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 35px auto 0;
    padding: 19px 23px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.packages-note p,
.packages-note a {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-size: 0.73rem;
    font-weight: 700;
}

.packages-note p {
    color: var(--muted);
}

.packages-note p .icon {
    color: var(--gold-600);
}

.packages-note a {
    flex: 0 0 auto;
    color: var(--purple-700);
}

/* About */
.about-section {
    overflow: hidden;
    background: var(--purple-50);
}

.about-grid,
.facilities-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.about-visual {
    position: relative;
    min-height: 650px;
}

.about-main-image {
    position: absolute;
    inset: 0 42px 80px 0;
    overflow: hidden;
    border-radius: 48% 48% 16px 16px;
    box-shadow: var(--shadow-lg);
}

.about-main-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(53, 16, 65, 0.18));
    content: "";
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-small-image {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 44%;
    overflow: hidden;
    border: 7px solid var(--purple-50);
    border-radius: 17px;
    box-shadow: var(--shadow-md);
}

.about-small-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.experience-seal {
    position: absolute;
    bottom: 42px;
    left: -30px;
    display: flex;
    width: 150px;
    height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 180, 91, 0.62);
    border-radius: 50%;
    background: var(--purple-800);
    box-shadow: 0 16px 42px rgba(53, 16, 65, 0.27);
    color: var(--white);
    text-align: center;
}

.experience-seal::before,
.experience-seal::after {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(216, 180, 91, 0.5);
    border-radius: 50%;
    content: "";
}

.experience-seal::after {
    inset: 14px;
    border-style: dashed;
}

.experience-seal strong,
.experience-seal span {
    position: relative;
    z-index: 2;
}

.experience-seal strong {
    color: var(--gold-300);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}

.experience-seal span {
    margin-top: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.about-copy .lead {
    color: var(--purple-800);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.32rem;
    line-height: 1.55;
}

.about-copy > p:not(.lead) {
    color: var(--muted);
    font-size: 0.91rem;
}

.about-points {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.about-points > div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-points > div > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(91, 27, 114, 0.12);
    border-radius: 13px;
    background: var(--white);
    color: var(--purple-700);
}

.about-points strong,
.about-points small {
    display: block;
}

.about-points strong {
    margin-bottom: 3px;
    color: var(--purple-900);
    font-size: 0.86rem;
}

.about-points small {
    color: var(--muted);
    font-size: 0.74rem;
}

/* Service journey */
.journey-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% -10%, rgba(216, 180, 91, 0.16), transparent 30%),
        var(--purple-900);
    color: var(--white);
}

.journey-section::before {
    position: absolute;
    right: -10%;
    bottom: -70%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.journey-section .section-heading h2 {
    color: var(--white);
}

.service-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.service-grid::before {
    position: absolute;
    z-index: 0;
    top: 46px;
    right: 10%;
    left: 10%;
    height: 1px;
    border-top: 1px dashed rgba(216, 180, 91, 0.35);
    content: "";
}

.service-card {
    position: relative;
    z-index: 1;
    min-height: 290px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(6px);
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-card:hover {
    border-color: rgba(216, 180, 91, 0.42);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
}

.service-number {
    position: absolute;
    top: 21px;
    right: 21px;
    color: rgba(255, 255, 255, 0.18);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2.1rem;
}

.service-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 45px;
    place-items: center;
    border: 1px solid rgba(216, 180, 91, 0.42);
    border-radius: 50%;
    background: var(--purple-800);
    box-shadow: 0 0 0 8px rgba(53, 16, 65, 0.88);
    color: var(--gold-300);
}

.service-icon .icon {
    width: 27px;
    height: 27px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.service-card p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.76rem;
    line-height: 1.8;
}

/* Facilities */
.facilities-section {
    background: var(--paper);
}

.facilities-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.facilities-copy > p {
    color: var(--muted);
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
    margin: 30px 0 34px;
}

.facility-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4f4851;
    font-size: 0.77rem;
    font-weight: 700;
}

.facility-list .icon {
    width: 19px;
    height: 19px;
    padding: 2px;
    border-radius: 50%;
    background: var(--purple-100);
    color: var(--purple-700);
}

.facilities-photo {
    position: relative;
    min-height: 540px;
}

.facilities-photo::before {
    position: absolute;
    inset: -22px 22px 22px -22px;
    border: 1px solid rgba(216, 180, 91, 0.48);
    border-radius: 180px 18px 18px;
    content: "";
}

.facilities-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 180px 18px 18px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    object-position: 58% center;
}

.facilities-photo::after {
    position: absolute;
    inset: 0;
    border-radius: 180px 18px 18px;
    background: linear-gradient(180deg, transparent 52%, rgba(53, 16, 65, 0.42));
    content: "";
}

.facilities-floating {
    position: absolute;
    z-index: 2;
    right: -25px;
    bottom: 27px;
    display: flex;
    max-width: 350px;
    align-items: center;
    gap: 14px;
    padding: 18px 21px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.facilities-floating > .icon {
    width: 32px;
    height: 32px;
    color: var(--gold-600);
}

.facilities-floating strong,
.facilities-floating span {
    display: block;
}

.facilities-floating strong {
    color: var(--purple-800);
    font-size: 0.83rem;
}

.facilities-floating span {
    color: var(--muted);
    font-size: 0.65rem;
}

/* Testimonials */
.testimonial-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0, rgba(216, 180, 91, 0.12), transparent 30%),
        var(--purple-50);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card {
    position: relative;
    margin: 0;
    padding: 30px;
    border: 1px solid rgba(91, 27, 114, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-sm);
    transition: background 200ms ease, transform 200ms ease;
}

.testimonial-card:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.quote-mark {
    position: absolute;
    top: 8px;
    right: 24px;
    color: var(--purple-100);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.testimonial-card .stars {
    margin-bottom: 18px;
}

.testimonial-card > p {
    position: relative;
    z-index: 1;
    min-height: 120px;
    color: #5b535d;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.03rem;
    font-style: italic;
    line-height: 1.65;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--purple-700);
    color: var(--gold-300);
    font-size: 0.7rem;
    font-weight: 800;
}

.testimonial-card footer strong,
.testimonial-card footer small {
    display: block;
}

.testimonial-card footer strong {
    color: var(--purple-900);
    font-size: 0.8rem;
}

.testimonial-card footer small {
    color: var(--muted);
    font-size: 0.65rem;
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.68fr 1.12fr;
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 45px);
}

.faq-intro > p {
    color: var(--muted);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 4px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
}

.faq-item button span {
    font-size: 0.92rem;
    font-weight: 800;
}

.faq-item button i {
    position: relative;
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.faq-item button i::before,
.faq-item button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--purple-700);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active button {
    color: var(--purple-700);
}

.faq-item.active button i {
    border-color: var(--purple-700);
    background: var(--purple-700);
    transform: rotate(45deg);
}

.faq-item.active button i::before,
.faq-item.active button i::after {
    background: var(--white);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 280ms ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    max-width: 700px;
    margin: 0;
    padding: 0 48px 26px 4px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.85;
}

/* Consultation */
.consultation-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background:
        radial-gradient(circle at 90% 20%, rgba(216, 180, 91, 0.18), transparent 30%),
        linear-gradient(135deg, var(--purple-950), var(--purple-700));
    color: var(--white);
}

.consultation-pattern {
    right: 0;
    left: auto;
    width: 47%;
    color: var(--white);
    opacity: 0.06;
    mask-image: linear-gradient(to left, black, transparent);
}

.consultation-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(510px, 1.05fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.consultation-copy h2 {
    color: var(--white);
    font-size: clamp(3.1rem, 5vw, 5rem);
}

.consultation-copy > p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.7);
}

.consultation-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 34px;
}

.consultation-contact > span {
    display: grid;
    width: 53px;
    height: 53px;
    place-items: center;
    border: 1px solid rgba(216, 180, 91, 0.5);
    border-radius: 50%;
    color: var(--gold-300);
}

.consultation-contact > span .icon {
    width: 26px;
    height: 26px;
}

.consultation-contact small,
.consultation-contact strong {
    display: block;
}

.consultation-contact small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
}

.consultation-contact strong {
    color: var(--gold-300);
    font-size: 1.05rem;
}

.consultation-proof {
    display: flex;
    max-width: 440px;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.65rem;
}

.consultation-proof .icon {
    color: var(--gold-500);
}

.consultation-card {
    padding: 37px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 35px 90px rgba(23, 5, 29, 0.28);
    color: var(--ink);
}

.form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 27px;
}

.form-heading > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: var(--purple-50);
    color: var(--gold-600);
}

.form-heading h3 {
    margin: 0;
    color: var(--purple-900);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
}

.form-heading p {
    color: var(--muted);
    font-size: 0.7rem;
}

.consultation-form {
    display: grid;
    gap: 17px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.field {
    display: grid;
    gap: 7px;
}

.field > span {
    color: #4a424b;
    font-size: 0.7rem;
    font-weight: 800;
}

.field > span b {
    color: var(--danger);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dfd7e0;
    border-radius: 11px;
    outline: none;
    background: #fffefd;
    color: var(--ink);
    font-size: 0.78rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
    height: 49px;
    padding: 0 14px;
}

.field textarea {
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a49aa5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--purple-600);
    box-shadow: 0 0 0 3px rgba(91, 27, 114, 0.1);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: var(--danger);
}

.field-error {
    display: none;
    color: var(--danger);
    font-size: 0.62rem;
}

.field.invalid .field-error {
    display: block;
}

.consultation-form .button {
    min-height: 56px;
    margin-top: 3px;
}

.consultation-form .button.loading {
    pointer-events: none;
    opacity: 0.78;
}

.consultation-form .button.loading .icon {
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 700ms linear infinite;
}

.form-note {
    color: #978d99;
    font-size: 0.59rem;
    line-height: 1.55;
    text-align: center;
}

.form-alert {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
}

.form-alert.success {
    background: #e7f6ee;
    color: var(--success);
}

.form-alert.error {
    background: #fff0f1;
    color: var(--danger);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Footer */
.site-footer {
    padding-top: 76px;
    background: #211028;
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.65fr 0.8fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}

.brand-light .brand-mark {
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.08);
}

.brand-light .brand-kaaba {
    background: var(--white);
}

.brand-light .brand-copy {
    color: var(--white);
}

.footer-brand > p {
    max-width: 270px;
    margin: 21px 0;
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--gold-300);
    font-size: 0.7rem;
    font-weight: 800;
    transition: background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
    border-color: var(--gold-500);
    background: rgba(216, 180, 91, 0.1);
}

.footer-grid h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.8rem;
}

.footer-grid ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li,
.footer-grid li a {
    font-size: 0.72rem;
}

.footer-grid li a:hover,
.footer-contact a:hover {
    color: var(--gold-300);
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-contact h3 {
    margin-bottom: 7px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 0.71rem;
}

.footer-contact .icon {
    margin-top: 3px;
    color: var(--gold-500);
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.61rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 40;
    right: 24px;
    bottom: 24px;
    display: flex;
    min-height: 51px;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    background: #168a58;
    box-shadow: 0 15px 36px rgba(18, 83, 55, 0.28);
    color: var(--white);
    font-size: 0.77rem;
    font-weight: 800;
    transition: background 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover {
    background: #107348;
    transform: translateY(-3px);
}

.floating-whatsapp .icon {
    width: 23px;
    height: 23px;
}

.toast {
    position: fixed;
    z-index: 100;
    right: 24px;
    bottom: 94px;
    display: grid;
    width: min(420px, calc(100% - 32px));
    grid-template-columns: 12px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.toast.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
}

.toast.error .toast-icon {
    background: var(--danger);
}

.toast p {
    margin: 0;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
}

.toast button {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: var(--purple-50);
    color: var(--purple-700);
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroDrift {
    from { transform: scale(1); }
    to { transform: scale(1.035); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1120px) {
    :root {
        --container: 1040px;
    }

    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 0.76rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    }

    .hero h1 {
        font-size: clamp(3.7rem, 6vw, 5.3rem);
    }

    .hero-photo {
        right: -90px;
        left: 25px;
    }

    .journey-card {
        right: -10px;
        width: 330px;
    }

    .trust-grid > div {
        padding-inline: 20px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 76px;
    }

    .topbar {
        display: none;
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: grid;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 253, 249, 0.98);
        box-shadow: 0 24px 35px rgba(53, 16, 65, 0.1);
        transition: max-height 300ms ease;
    }

    .mobile-nav.open {
        max-height: calc(100svh - var(--header-height));
        border-top: 1px solid var(--line);
    }

    .mobile-nav-inner {
        display: grid;
        gap: 4px;
        padding-block: 15px 25px;
    }

    .mobile-nav a:not(.button) {
        padding: 12px 4px;
        border-bottom: 1px solid var(--line);
        color: var(--purple-900);
        font-size: 0.85rem;
        font-weight: 700;
    }

    .mobile-nav .button {
        margin-top: 10px;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-block: 80px 100px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        width: 88%;
        height: 580px;
        justify-self: end;
    }

    .hero-photo {
        right: -50px;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-intro {
        display: none;
    }

    .trust-grid > div:first-child {
        border-left: 1px solid var(--line);
    }

    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
    }

    .about-grid,
    .facilities-grid,
    .faq-grid,
    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .facilities-grid {
        gap: 70px;
    }

    .about-visual {
        width: min(680px, 90%);
        justify-self: center;
    }

    .about-copy {
        max-width: 720px;
    }

    .section-heading.split {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-heading.split p {
        max-width: 620px;
        margin: 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid::before {
        display: none;
    }

    .facilities-photo {
        width: min(760px, 94%);
        justify-self: center;
    }

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

    .testimonial-card > p {
        min-height: auto;
    }

    .faq-intro {
        position: static;
        max-width: 650px;
    }

    .consultation-copy {
        max-width: 660px;
    }

    .consultation-grid {
        gap: 50px;
    }

    .consultation-card {
        max-width: 730px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.7fr 0.8fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .brand-mark {
        width: 42px;
        height: 47px;
    }

    .brand-copy strong {
        font-size: 0.96rem;
    }

    .brand-copy small {
        font-size: 0.61rem;
    }

    .hero-grid {
        gap: 40px;
        padding-block: 58px 75px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 15vw, 4.7rem);
    }

    .hero-lead {
        font-size: 0.94rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: start;
        gap: 10px 14px;
    }

    .hero-trust > i {
        display: none;
    }

    .hero-visual {
        width: 100%;
        height: 440px;
    }

    .hero-photo {
        inset: 0 -52px -8px 10px;
    }

    .arch-back {
        inset: -20px -30px 10px 30px;
    }

    .arch-middle {
        inset: 20px -28px -15px 0;
        border-width: 17px;
    }

    .journey-card {
        right: 2px;
        bottom: -28px;
        width: 270px;
        min-height: 130px;
        padding: 16px;
    }

    .journey-icons {
        gap: 12px;
        margin-bottom: 8px;
    }

    .journey-icons span {
        width: 31px;
        height: 31px;
    }

    .journey-icons i {
        width: 14px;
    }

    .journey-card strong {
        font-size: 1.12rem;
    }

    .hero-rating {
        bottom: 67px;
        left: 0;
        transform: scale(0.9);
        transform-origin: left bottom;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid > div {
        min-height: 100px;
        padding: 20px;
    }

    .trust-grid > div:nth-child(2) {
        border-left: 1px solid var(--line);
    }

    .trust-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .package-grid {
        display: flex;
        width: calc(100% + 16px);
        gap: 14px;
        overflow-x: auto;
        padding: 0 16px 22px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .package-grid::-webkit-scrollbar {
        display: none;
    }

    .package-card,
    .package-card:last-child {
        width: min(86vw, 350px);
        min-width: min(86vw, 350px);
        scroll-snap-align: start;
    }

    .packages-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-visual {
        width: calc(100% - 12px);
        min-height: 500px;
    }

    .about-main-image {
        right: 15px;
        bottom: 65px;
    }

    .about-small-image {
        right: -8px;
        width: 49%;
    }

    .experience-seal {
        bottom: 27px;
        left: -12px;
        width: 120px;
        height: 120px;
    }

    .experience-seal strong {
        font-size: 1.7rem;
    }

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

    .service-card {
        min-height: 250px;
    }

    .facility-list {
        grid-template-columns: 1fr;
    }

    .facilities-photo {
        width: calc(100% - 14px);
        min-height: 440px;
    }

    .facilities-photo::before {
        inset: -14px 14px 14px -14px;
        border-radius: 120px 16px 16px;
    }

    .facilities-photo > img,
    .facilities-photo::after {
        border-radius: 120px 16px 16px;
    }

    .facilities-floating {
        right: -8px;
        bottom: 18px;
        max-width: calc(100% - 25px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .consultation-section {
        padding: 80px 0;
    }

    .consultation-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 22px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }

    .floating-whatsapp span {
        display: none;
    }

    .toast {
        right: 16px;
        bottom: 81px;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 3.15rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        padding-inline: 15px;
    }

    .stat strong {
        font-size: 1.65rem;
    }

    .stat-license > .icon {
        width: 28px;
        height: 28px;
    }

    .section-heading h2,
    .about-copy h2,
    .facilities-copy h2,
    .faq-intro h2 {
        font-size: 2.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
