:root {
    --bg: #f5f8fb;
    --panel: #ffffff;
    --text: #112031;
    --muted: #526271;
    --brand: #c4a35a;
    --brand-dark: #0f4f73;
    --accent: #72a637;
    --line: #d8e1ea;
    --shadow: 0 20px 50px rgba(17, 32, 49, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 10%, #d8e6f4 0%, transparent 42%),
        radial-gradient(circle at 80% 0%, #efe3c7 0%, transparent 36%),
        var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(17, 32, 49, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 32, 49, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: -1;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    background: rgba(5, 18, 30, 0.56);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(8, 24, 40, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.brand-logo {
    display: block;
    width: 260px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

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

.nav a {
    color: #fff;
    opacity: 0.92;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    opacity: 1;
    color: #f2dfb4;
}

.menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark), var(--accent));
    box-shadow: 0 14px 26px rgba(15, 79, 115, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 79, 115, 0.4);
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
}

.hero-overlay {
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.84) 15%, rgba(0, 0, 0, 0.72) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 4rem;
}

.hero-glass {
    max-width: 820px;
    background: linear-gradient(140deg, rgba(7, 18, 30, 0.62), rgba(7, 18, 30, 0.36));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    padding: clamp(1rem, 3vw, 2rem);
    backdrop-filter: blur(9px) saturate(120%);
    -webkit-backdrop-filter: blur(9px) saturate(120%);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.hero h1 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1.08;
    max-width: 730px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: #e4c176;
}

.lead {
    max-width: 620px;
    color: #f1f6fb;
    margin-top: 1rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.7rem;
    flex-wrap: wrap;
}

.quick-info {
    margin-top: -3.2rem;
    position: relative;
    z-index: 5;
    background: linear-gradient(145deg, #0d3554, #124a73);
    border-radius: 26px;
    box-shadow: 0 22px 52px rgba(8, 23, 39, 0.28);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.quick-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 46%);
    pointer-events: none;
    z-index: 0;
}

.quick-card {
    position: relative;
    z-index: 1;
    padding: 0.95rem;
    border-radius: 16px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.quick-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #d5b77b, #88b55c);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.quick-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #13324f;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-body {
    min-width: 0;
}

.quick-label {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bad2ea;
    font-weight: 800;
    margin-bottom: 0.38rem;
}

.quick-info h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.35;
}

.quick-info h3 a {
    color: #fff;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.quick-info p {
    margin: 0.38rem 0 0;
    color: #cddff1;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.section {
    padding: 6rem 0 2rem;
}

.section-head h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.why-us-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}

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

.why-card {
    background: linear-gradient(160deg, #ffffff, #f5f9fd);
    border: 1px solid #e2eaf2;
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: 0 14px 28px rgba(17, 32, 49, 0.08);
}

.why-card h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
}

.why-card p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.why-us-panel {
    background: linear-gradient(155deg, #0f2436, #143a56);
    border-radius: 22px;
    color: #e8f2fc;
    padding: 1.5rem;
    box-shadow: 0 20px 36px rgba(17, 32, 49, 0.2);
}

.why-us-panel h3 {
    margin-top: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
}

.why-us-panel p {
    color: #c2d4e6;
}

.why-us-panel ol {
    margin: 1rem 0 1.4rem;
    padding-left: 1.2rem;
}

.why-us-panel li {
    margin-bottom: 0.7rem;
    color: #d8e7f5;
}

.services-editorial {
    margin-top: 2rem;
}

.service-list {
    display: grid;
    width: 100%;
    border-bottom: 1px solid rgba(17, 32, 49, 0.28);
}

.service-item {
    border-top: 1px solid rgba(17, 32, 49, 0.28);
}

.service-row {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.service-row-index {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.7rem, 4vw, 3.5rem);
    color: rgba(17, 32, 49, 0.15);
    line-height: 1;
}

.service-row-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
}

.service-row-arrow {
    font-size: 2rem;
    color: #1a344b;
    transform: translateX(0);
    transition: transform 0.2s ease, color 0.2s ease;
}

.service-row:hover .service-row-arrow,
.service-item.active .service-row-arrow {
    transform: translateX(4px);
    color: var(--brand-dark);
}

.service-item.active .service-row-index {
    color: rgba(15, 79, 115, 0.35);
}

.service-item.active .service-row {
    grid-template-columns: 110px 1fr;
    padding: 0.2rem 0 0;
}

.service-item.active .service-row-title,
.service-item.active .service-row-arrow {
    display: none;
}

.service-panel {
    display: none;
    grid-template-columns: 110px 1fr 1.15fr;
    gap: 1.2rem;
    padding: 0.2rem 0 1.6rem;
}

.service-item.active .service-panel {
    display: grid;
}

.service-panel::before {
    content: '';
}

.service-panel-content h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.service-panel-content p {
    margin: 1rem 0 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 1.05rem;
}

.service-panel-media {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 0.8rem;
}

.service-panel-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.about {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

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

.about-panel {
    background: linear-gradient(145deg, #0f2436, #14334d);
    color: #e4eef8;
    padding: clamp(2rem, 4vw, 4rem);
}

.about-panel .eyebrow {
    color: #c8d97d;
}

.about-panel h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about-panel p {
    color: #b8c9da;
}

.stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.location-banner {
    margin-top: 1.2rem;
    background: linear-gradient(130deg, rgba(12, 43, 77, 0.95), rgba(14, 88, 151, 0.95));
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    color: #eaf4ff;
    border: 1px solid rgba(140, 198, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.location-banner p {
    margin: 0;
    color: #d5e9ff;
    max-width: 760px;
}

.location-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.location-card {
    background: linear-gradient(160deg, #ffffff, #f3f8fd);
    border: 1px solid #deebf7;
    border-radius: 18px;
    padding: 1.1rem;
    box-shadow: 0 12px 24px rgba(17, 32, 49, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(17, 32, 49, 0.13);
}

.location-badge {
    display: inline-block;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.location-card h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
}

.location-card p {
    margin: 0.6rem 0 0.9rem;
    color: var(--muted);
}

.location-link {
    color: #115e8a;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.location-link:hover {
    color: #0a4463;
}

.stat-item strong {
    display: block;
    font-size: clamp(1.7rem, 3vw, 3.1rem);
    color: #fff;
    font-family: 'Sora', sans-serif;
}

.stat-item span {
    color: #95afc8;
    font-size: 0.9rem;
}

.testimonial-wrap {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slides {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.dot-btn {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 1px solid rgba(15, 79, 115, 0.35);
    background: rgba(15, 79, 115, 0.22);
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dot-btn:hover {
    transform: scale(1.1);
    border-color: rgba(196, 163, 90, 0.8);
}

.dot-btn.active {
    width: 28px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    border-color: transparent;
}

.testimonial-card {
    background: linear-gradient(160deg, #ffffff, #f4f8fc);
    border: 1px solid #e3ebf2;
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 15px 30px rgba(17, 32, 49, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.testimonial-quote {
    margin: 0;
    color: #364857;
    min-height: 182px;
}

.testimonial-author {
    margin-top: auto;
    margin-left: -1.4rem;
    margin-right: -1.4rem;
    margin-bottom: -1.4rem;
    padding: 1rem 1.4rem 1.2rem;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(135deg, rgba(15, 79, 115, 0.95), rgba(114, 166, 55, 0.92), rgba(196, 163, 90, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.testimonial-card h3 {
    margin: 0 0 0.15rem;
    color: #fff;
}

.testimonial-card span {
    color: #eaf5ff;
    font-size: 0.9rem;
}

.shorts-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.short-card h3 {
    margin: 0.8rem 0 0;
    font-size: 0.98rem;
}

.short-link {
    position: relative;
    border: 0;
    width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #0f2336;
    box-shadow: 0 12px 24px rgba(17, 32, 49, 0.16);
}

.short-link img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.short-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12));
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.play-badge svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.short-label {
    position: absolute;
    z-index: 2;
    left: 0.8rem;
    bottom: 0.7rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.short-link:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 18, 0.86);
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.open {
    display: flex;
}

.video-dialog {
    width: min(960px, 96vw);
    background: #0b253a;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    position: relative;
}

.video-close {
    position: absolute;
    right: 0.6rem;
    top: 0.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.video-frame-wrap {
    margin-top: 1.2rem;
    border-radius: 12px;
    overflow: hidden;
}

.video-frame-wrap iframe {
    width: 100%;
    height: min(78vh, 540px);
    border: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 1.2rem;
}

.contact-panel,
.contact-form {
    background: #fff;
    border: 1px solid #e4ebf2;
    border-radius: 20px;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 14px 26px rgba(17, 32, 49, 0.08);
}

.contact-panel h2,
.contact-form h3 {
    margin-top: 0;
    font-family: 'Sora', sans-serif;
}

.contact-panel ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-panel li {
    margin-bottom: 0.7rem;
    padding-left: 1.4rem;
    position: relative;
}

.contact-panel li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
    position: absolute;
    left: 0;
    top: 0.48rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    margin: 0.8rem 0 0.35rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfdbe7;
    border-radius: 12px;
    font-size: 1rem;
    padding: 0.78rem 0.9rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(114, 166, 55, 0.22);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

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

.flash {
    margin: 0.7rem 0;
    background: #e8fff9;
    color: #106f63;
    border: 1px solid #9de5da;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
}

.footer {
    margin-top: 4rem;
    padding: 3rem 0 1.2rem;
    background: linear-gradient(160deg, #0d3f5e, #1a5f86);
    color: #e8f2ff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.9fr 1.2fr;
    align-items: start;
    gap: 1rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(232, 242, 255, 0.25);
}

.footer-logo {
    margin-top: -6px;
    margin-bottom: 0.25rem;
}

.footer-logo .brand-logo {
    width: 300px;
    height: 78px;
}

.footer-brand p {
    margin: 0;
    color: #bfd5fa;
    max-width: 320px;
}

.footer h3 {
    margin: 0 0 0.9rem;
    font-size: 1.05rem;
    font-family: 'Sora', sans-serif;
    color: #fff;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4e4ff;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-contact .btn {
    width: max-content;
    margin-top: 0.9rem;
}

.footer-map iframe {
    width: 100%;
    min-height: 220px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #d0e2ff;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .service-panel {
        grid-template-columns: 1fr;
    }

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

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

    .service-panel-media img {
        height: 220px;
    }

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

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

}

@media (max-width: 760px) {
    .nav-wrap {
        min-height: 74px;
    }

    .brand {
        font-size: 0.9rem;
        gap: 0.45rem;
    }

    .brand-logo {
        width: 190px;
        height: 50px;
    }

    .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .nav {
        position: absolute;
        top: 74px;
        right: 4vw;
        width: min(280px, 90vw);
        background: rgba(7, 20, 35, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 14px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav.open {
        display: flex;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .hero-glass {
        border-radius: 18px;
        padding: 0.9rem;
    }

    .quick-info {
        grid-template-columns: 1fr;
        margin-top: -1.4rem;
        padding: 0.8rem;
        gap: 0.7rem;
    }

    .quick-card {
        padding: 0.75rem;
    }

    .quick-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 10px;
    }

    .quick-label {
        font-size: 0.69rem;
        margin-bottom: 0.26rem;
    }

    .quick-info h3 {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .quick-info p {
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .location-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-row {
        grid-template-columns: 70px 1fr auto;
        padding: 0.95rem 0;
    }

    .service-row-title {
        font-size: 1.08rem;
    }

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

    .service-panel-media img {
        height: 180px;
    }

    .shorts-grid {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        gap: 0.8rem;
        padding-bottom: 0.4rem;
    }

    .shorts-grid::-webkit-scrollbar {
        height: 6px;
    }

    .shorts-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--brand-dark), var(--brand));
        border-radius: 999px;
    }

    .short-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    .why-us-cards {
        grid-template-columns: 1fr;
    }

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

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

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

    .video-frame-wrap iframe {
        height: min(66vh, 460px);
    }
}
