:root {
    --navy-950: #071720;
    --navy-900: #0f2c3b;
    --navy-800: #1d4558;
    --navy-700: #2b5f75;
    --accent: #ff6a3d;
    --accent-deep: #e45228;
    --mint: #2ca395;
    --surface: #ffffff;
    --surface-soft: #f5f3ef;
    --surface-muted: #ece8e2;
    --text-strong: #132c39;
    --text-body: #4e626f;
    --text-light: #dce7ee;
    --line: #d9e2e7;
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 14px 35px rgba(7, 23, 32, 0.1);
    --shadow-bold: 0 22px 55px rgba(7, 23, 32, 0.24);
    --transition: 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-strong);
    background:
        radial-gradient(1000px 500px at 0% -10%, rgba(44, 163, 149, 0.15), transparent 65%),
        radial-gradient(900px 500px at 100% 5%, rgba(255, 106, 61, 0.12), transparent 70%),
        linear-gradient(180deg, #f8f7f4 0%, #f4f1eb 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', 'Manrope', 'Segoe UI', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
}

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

.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-shell {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--mint);
    margin-bottom: 0.85rem;
}

.section-kicker::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--mint);
}

.section-kicker-light {
    color: var(--text-light);
}

.section-kicker-light::before {
    background: var(--accent);
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--text-strong);
    margin-bottom: 0.8rem;
}

.section-title.light {
    color: var(--surface);
}

.section-subtitle {
    color: var(--text-body);
    font-size: 1.02rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle.left {
    margin: 0;
}

.top-bar {
    background: linear-gradient(90deg, var(--navy-950), var(--navy-900));
    color: #f3f8fc;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.top-bar-item i {
    color: var(--accent);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(16, 40, 55, 0.08);
    transition: box-shadow var(--transition), background var(--transition);
}

.navbar.navbar-scrolled {
    box-shadow: 0 10px 24px rgba(9, 34, 48, 0.12);
    background: rgba(255, 255, 255, 0.97);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1.4rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--navy-900);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.logo i {
    color: var(--accent);
    font-size: 1.35rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-strong);
    font-weight: 600;
    font-size: 0.96rem;
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.26rem;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-book-nav {
    text-decoration: none;
    color: var(--surface);
    background: linear-gradient(135deg, var(--accent), #ff825b);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
    box-shadow: 0 10px 20px rgba(228, 82, 40, 0.28);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-book-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 25px rgba(228, 82, 40, 0.34);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.1rem;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--navy-900);
    transition: transform var(--transition), opacity var(--transition);
}

.hero {
    position: relative;
    min-height: max(92vh, 640px);
    display: flex;
    align-items: center;
    padding: 4.5rem 0;
    color: var(--surface);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 25, 35, 0.9) 0%, rgba(10, 36, 48, 0.82) 45%, rgba(10, 36, 48, 0.34) 100%),
        radial-gradient(700px 340px at 75% 28%, rgba(44, 163, 149, 0.2), transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.6rem, 4vw, 3.3rem);
    align-items: end;
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(16, 40, 55, 0.5);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.3rem, 6vw, 4.4rem);
    margin-bottom: 1.2rem;
}

.hero-description {
    color: rgba(238, 246, 252, 0.9);
    font-size: 1.08rem;
    max-width: 660px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.btn {
    border: none;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    padding: 0.9rem 1.4rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff835c);
    color: var(--surface);
    box-shadow: 0 14px 26px rgba(228, 82, 40, 0.28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(228, 82, 40, 0.34);
}

.btn-outline-light {
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(16, 40, 55, 0.38);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-ghost-light {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(8, 25, 35, 0.4);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-proof {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-proof li {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 36, 48, 0.58);
    border-radius: var(--radius-md);
    padding: 0.9rem 0.9rem 0.75rem;
}

.hero-proof strong {
    display: block;
    color: #ff916d;
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.15rem;
}

.hero-proof span {
    color: rgba(226, 238, 245, 0.86);
    font-size: 0.86rem;
}

.hero-panel {
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    background: rgba(8, 25, 35, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-bold);
}

.hero-panel h2 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.hero-panel p {
    color: rgba(227, 239, 246, 0.88);
    margin-bottom: 1rem;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 1.3rem;
    display: grid;
    gap: 0.65rem;
}

.hero-checklist li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.93rem;
    color: rgba(231, 240, 247, 0.92);
}

.hero-checklist i {
    color: #66d4c8;
    margin-top: 0.18rem;
}

.services {
    background: var(--surface-soft);
}

.service-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: stretch;
}

.service-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 400px;
    box-shadow: var(--shadow-soft);
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
}

.service-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 23, 32, 0.08) 0%, rgba(7, 23, 32, 0.55) 100%);
}

.service-photo figcaption {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1rem;
    color: #e9f2f8;
    font-size: 0.95rem;
}

.service-list {
    display: grid;
    gap: 0.85rem;
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #d7e1e7;
    box-shadow: 0 10px 20px rgba(10, 35, 48, 0.07);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-row:hover {
    transform: translateY(-2px);
    border-color: rgba(228, 82, 40, 0.45);
    box-shadow: 0 16px 28px rgba(10, 35, 48, 0.12);
}

.service-index {
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    color: rgba(16, 44, 59, 0.28);
}

.service-row h3 {
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
    color: var(--text-strong);
}

.service-row p {
    font-size: 0.92rem;
    color: var(--text-body);
}

.service-meta {
    font-size: 0.79rem;
    font-weight: 800;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.why-us {
    background: transparent;
}

.why-frame {
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3rem);
    background:
        linear-gradient(120deg, rgba(8, 25, 35, 0.98) 0%, rgba(15, 44, 59, 0.95) 55%, rgba(29, 69, 88, 0.9) 100%),
        radial-gradient(600px 350px at 85% 10%, rgba(44, 163, 149, 0.25), transparent 70%);
    box-shadow: var(--shadow-bold);
}

.why-intro {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.why-us-card {
    padding: 1.3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 25, 35, 0.34);
}

.why-us-card i {
    color: #73dfd3;
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
}

.why-us-card h3 {
    color: #f2f8fb;
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.why-us-card p {
    color: rgba(224, 236, 243, 0.82);
    font-size: 0.93rem;
}

.gallery {
    background: #f2efea;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 0.85rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 44, 59, 0.14);
    box-shadow: var(--shadow-soft);
}

.gallery-item.wide {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-column: span 4;
    grid-row: span 3;
}

.gallery-item.medium {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item.long {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-photo.pos-1 {
    object-position: center 42%;
}

.gallery-photo.pos-2 {
    object-position: right 38%;
}

.gallery-photo.pos-3 {
    object-position: left 45%;
}

.gallery-photo.pos-4 {
    object-position: center 55%;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 23, 32, 0.05) 35%, rgba(7, 23, 32, 0.72) 100%);
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    z-index: 2;
}

.gallery-caption h3 {
    color: var(--surface);
    font-size: 1.02rem;
    margin-bottom: 0.15rem;
}

.gallery-caption p {
    color: rgba(227, 238, 245, 0.87);
    font-size: 0.88rem;
}

.testimonials {
    background: var(--surface);
}

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

.testimonial-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #d7e2e8;
    padding: 1.2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.3rem;
    right: 0.9rem;
    font-size: 3rem;
    font-family: 'Sora', sans-serif;
    color: rgba(16, 44, 59, 0.12);
}

.testimonial-quote {
    color: var(--text-body);
    font-size: 0.96rem;
    margin-bottom: 1.1rem;
}

.testimonial-author {
    border-top: 1px dashed #c9d8e1;
    padding-top: 0.7rem;
    display: grid;
}

.testimonial-author strong {
    color: var(--text-strong);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #647a87;
    font-size: 0.84rem;
}

.booking {
    background: linear-gradient(180deg, #f0ece6 0%, #f8f6f1 100%);
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.2rem;
    align-items: start;
}

.booking-copy {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #d7e0e6;
}

.booking-points {
    list-style: none;
    margin-top: 1.1rem;
    display: grid;
    gap: 0.65rem;
}

.booking-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--text-body);
}

.booking-points i {
    color: var(--mint);
    margin-top: 0.15rem;
}

.booking-form {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid #d4dee5;
    box-shadow: var(--shadow-soft);
    padding: clamp(1rem, 2.8vw, 2rem);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 0.35rem;
}

.field-hint {
    margin-top: 0.35rem;
    color: #607684;
    font-size: 0.78rem;
    line-height: 1.45;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #c6d3dc;
    border-radius: 11px;
    padding: 0.7rem 0.78rem;
    background: #fbfdff;
    color: var(--text-strong);
    font-size: 0.94rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 105px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5f9fb9;
    box-shadow: 0 0 0 3px rgba(44, 163, 149, 0.15);
}

.btn-submit {
    width: 100%;
    margin-top: 0.3rem;
}

.form-note {
    font-size: 0.82rem;
    color: #637886;
    text-align: center;
    margin-top: 0.65rem;
}

.booking-confirmation {
    max-width: 420px;
    margin: 1.2rem auto 0;
    padding: 1.3rem;
    border-radius: var(--radius-lg);
    border: 1px solid #b8dfd9;
    background: #edfaf8;
    text-align: center;
}

.booking-confirmation i {
    font-size: 2.4rem;
    color: #1f9a90;
    margin-bottom: 0.35rem;
}

.booking-confirmation h3 {
    color: #125149;
    margin-bottom: 0.3rem;
}

.booking-confirmation p {
    color: #3f6a66;
    font-size: 0.9rem;
}

.location {
    background: #ffffff;
}

.location-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.location-info {
    padding: 1.4rem;
    border: 1px solid #d4dfe6;
    border-radius: var(--radius-xl);
    background: #f9fbfc;
}

.location-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--text-body);
    margin-top: 0.9rem;
}

.location-info i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid #d4dfe6;
    box-shadow: var(--shadow-soft);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.contact-section {
    padding-top: 0;
}

.contact-wrap {
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3.6vw, 2.4rem);
    background:
        linear-gradient(125deg, var(--navy-950), var(--navy-900) 45%, var(--navy-800) 100%),
        radial-gradient(550px 200px at 80% 0%, rgba(44, 163, 149, 0.35), transparent 75%);
    box-shadow: var(--shadow-bold);
}

.contact-heading {
    max-width: 650px;
    margin-bottom: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 0.9rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #b6f0e8;
    flex-shrink: 0;
}

.contact-text {
    display: grid;
}

.contact-text strong {
    color: #f3f8fc;
    font-size: 0.92rem;
}

.contact-text em {
    color: rgba(223, 236, 245, 0.9);
    font-style: normal;
    font-size: 0.84rem;
}

.footer {
    margin-top: 2.5rem;
    padding: 3rem 0 1.4rem;
    background: linear-gradient(135deg, var(--navy-950), #0f2f3f 58%, #163e52 100%);
    color: #eaf3f8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    margin-bottom: 1.3rem;
}

.footer-section h4 {
    color: #ff936f;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(226, 239, 246, 0.82);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li {
    margin-top: 0.45rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 0.45rem;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8fcff;
    background: rgba(255, 255, 255, 0.14);
    transition: transform var(--transition), background var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.23);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(223, 236, 245, 0.2);
    padding-top: 0.85rem;
    text-align: center;
    font-size: 0.84rem;
    color: rgba(223, 236, 245, 0.7);
}

.form-alert {
    position: fixed;
    top: 94px;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 1.5rem));
    border-radius: 12px;
    padding: 0.82rem 0.95rem;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 700;
    z-index: 1200;
    animation: alertSlideDown 0.22s ease;
    box-shadow: 0 14px 25px rgba(7, 23, 32, 0.16);
}

.form-alert.error {
    background: #fde9e5;
    color: #95371f;
    border-color: #f8b7a8;
}

.form-alert.success {
    background: #e6f8f5;
    color: #186358;
    border-color: #9bddcf;
}

.form-alert.info {
    background: #e9f3fa;
    color: #23506c;
    border-color: #a4cbe2;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

[data-reveal],
.service-card,
.why-us-card,
.testimonial-card,
.gallery-item,
.contact-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@keyframes alertSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes alertSlideUp {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -12px);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .service-showcase,
    .booking-layout,
    .location-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 3.5rem 0;
    }

    .hero-panel {
        max-width: 560px;
    }

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

    .gallery-item.wide,
    .gallery-item.long {
        grid-column: span 8;
    }

    .gallery-item.tall,
    .gallery-item.medium {
        grid-column: span 4;
    }

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

@media (max-width: 920px) {
    .hamburger {
        display: flex;
        order: 3;
    }

    .btn-book-nav {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.99);
        border-bottom: 1px solid rgba(12, 40, 55, 0.1);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.34s ease;
    }

    .nav-menu.active {
        max-height: 420px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.88rem 1rem;
    }

    .nav-link::after {
        bottom: 0.56rem;
        left: 1rem;
    }

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

    .why-us-grid,
    .testimonial-track,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(1160px, calc(100% - 1.2rem));
    }

    .top-bar-content {
        justify-content: flex-start;
        gap: 0.85rem;
        min-height: auto;
        padding: 0.5rem 0;
    }

    .top-bar-item {
        width: 100%;
    }

    .navbar-content {
        min-height: 70px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-item,
    .gallery-item.wide,
    .gallery-item.tall,
    .gallery-item.medium,
    .gallery-item.long {
        grid-column: auto;
        grid-row: auto;
    }

    .location-map iframe {
        min-height: 300px;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
