/* =========================================================
OLUKAYODE HOSPITAL
PREMIUM RESPONSIVE DESIGN
========================================================= */

:root {
    --green: #087f5b;
    --green-2: #0aa875;
    --dark-green: #07543f;
    --deep: #062d24;
    --mint: #f3faf7;
    --mint-2: #e7f5ef;
    --white: #ffffff;
    --dark: #102f28;
    --text: #4c625c;
    --muted: #82918d;
    --border: #dcebe5;

    --shadow-sm: 0 10px 30px rgba(0, 60, 45, .07);
    --shadow: 0 25px 70px rgba(0, 60, 45, .12);
    --shadow-lg: 0 35px 90px rgba(0, 50, 40, .16);

    --radius: 24px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--green);
    color: white;
}

/* =========================================================
SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--green);
}

/* =========================================================
TOP BAR
========================================================= */

.top-bar {
    min-height: 40px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--deep);
    color: #d7e6e1;
    font-size: 12px;
}

.top-message {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #51d69f;
    box-shadow: 0 0 0 5px rgba(81,214,159,.12);
}

.top-links {
    display: flex;
    gap: 25px;
}

.top-links a {
    transition: .25s;
}

.top-links a:hover {
    color: white;
}

/* =========================================================
NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 78px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220,235,229,.8);
    transition: .35s;
}

.navbar.scrolled {
    min-height: 68px;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

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

.logo-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green);
    color: white;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(8,127,91,.2);
    transition: .3s var(--ease);
}

.logo:hover .logo-icon {
    transform: rotate(-6deg) scale(1.06);
}

.logo-text strong,
.logo-text span {
    display: block;
}

.logo-text strong {
    color: var(--dark);
    letter-spacing: 1.5px;
    font-size: 15px;
}

.logo-text span {
    margin-top: 1px;
    color: var(--green);
    font-size: 9px;
    letter-spacing: 3px;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav a {
    position: relative;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    transition: .25s;
}

nav a:not(.nav-appointment)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--green);
    transition: width .3s var(--ease);
}

nav a:not(.nav-appointment):hover {
    color: var(--green);
}

nav a:not(.nav-appointment):hover::after {
    width: 100%;
}

.nav-appointment {
    padding: 12px 18px;
    border-radius: 50px;
    color: white !important;
    background: var(--green);
    box-shadow: 0 8px 22px rgba(8,127,91,.18);
    transition: .3s var(--ease);
}

.nav-appointment:hover {
    transform: translateY(-2px);
    background: var(--dark-green);
    box-shadow: 0 12px 30px rgba(8,127,91,.25);
}

.menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    background: transparent;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 10px;
    background: var(--dark);
    transition: .35s var(--ease);
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
EMERGENCY
========================================================= */

.emergency-bar {
    min-height: 44px;
    padding: 8px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--green);
    color: white;
    font-size: 12px;
}

.emergency-bar div {
    display: flex;
    gap: 8px;
}

.emergency-bar a {
    font-weight: 800;
    text-decoration: underline;
}

/* =========================================================
HERO
========================================================= */

.hero {
    position: relative;
    min-height: 720px;
    padding: 90px 6% 110px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(140,229,197,.4),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(197,241,224,.7),
            transparent 30%
        ),
        var(--mint);
}

.hero-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(8,127,91,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,127,91,.05) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(5px);
    animation: glowFloat 7s ease-in-out infinite;
}

.glow-one {
    width: 230px;
    height: 230px;
    top: 100px;
    left: -90px;
    background: rgba(8,127,91,.08);
}

.glow-two {
    width: 180px;
    height: 180px;
    right: 38%;
    bottom: -80px;
    background: rgba(8,127,91,.08);
    animation-delay: -3s;
}

@keyframes glowFloat {
    50% {
        transform: translate(20px,-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(8,127,91,.1);
}

.hero h1 {
    max-width: 700px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--green);
}

.hero p {
    max-width: 570px;
    margin-top: 28px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    transition: .35s var(--ease);
}

.btn span {
    transition: transform .3s var(--ease);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    color: white;
    background: var(--green);
    box-shadow: 0 15px 35px rgba(8,127,91,.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--dark-green);
    box-shadow: 0 20px 45px rgba(8,127,91,.27);
}

.btn-secondary {
    border: 1px solid var(--green);
    color: var(--green);
    background: rgba(255,255,255,.5);
}

.btn-secondary:hover {
    color: white;
    background: var(--green);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 38px;
    margin-top: 42px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-trust strong {
    color: var(--dark);
    font-size: 24px;
}

.hero-trust span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: min(100%, 560px);
}

.hero-image-frame {
    position: relative;
    z-index: 2;
    height: 520px;
    overflow: hidden;
    border: 10px solid white;
    border-radius: 35px;
    box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.hero-image-wrap:hover .hero-image-frame img {
    transform: scale(1.055);
}

.hero-image-shadow {
    position: absolute;
    z-index: 1;
    inset: 25px -25px -25px 25px;
    border-radius: 35px;
    background: #cbeee1;
    transform: rotate(3deg);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,45,35,.28),
        transparent 55%
    );
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 17px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px);
    animation: floatingCard 5s ease-in-out infinite;
}

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

.hero-floating-card strong {
    color: var(--dark);
    font-size: 12px;
}

.hero-floating-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.card-top {
    top: 60px;
    right: -35px;
}

.card-bottom {
    bottom: 55px;
    left: -35px;
    animation-delay: -2.5s;
}

.floating-icon,
.mini-check {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--green);
    background: var(--mint-2);
}

.mini-check {
    border-radius: 50%;
    color: white;
    background: var(--green);
}

@keyframes floatingCard {
    50% {
        transform: translateY(-9px);
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(8,127,91,.16);
}

.orb-one {
    width: 110px;
    height: 110px;
    top: 15px;
    left: 10px;
}

.orb-two {
    width: 65px;
    height: 65px;
    right: 0;
    bottom: 30px;
}

/* =========================================================
REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s var(--ease),
        transform .8s var(--ease);
}

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

/* =========================================================
STATS
========================================================= */

.stats-section {
    position: relative;
    z-index: 5;
    width: 88%;
    max-width: 1250px;
    margin: -45px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.stat-card {
    position: relative;
    padding: 28px 20px;
    text-align: center;
}

.stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: var(--border);
}

.stat-number {
    color: var(--green);
    font-size: 34px;
    font-weight: 800;
}

.stat-number strong {
    font-size: 38px;
}

.stat-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
GENERAL
========================================================= */

.section {
    padding: 120px 6%;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2,
.section-content h2,
.why-content h2,
.location-info h2,
.enquiry-content h2 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -.7px;
}

.section-heading p,
.section-content p,
.why-content > p,
.location-info > p {
    line-height: 1.85;
}

/* =========================================================
ABOUT
========================================================= */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: transform .8s var(--ease);
}

.about-image:hover img {
    transform: scale(1.025);
}

.image-label {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    padding: 9px 13px;
    border-radius: 50px;
    background: rgba(255,255,255,.9);
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.section-content h2 {
    margin-bottom: 23px;
}

.section-content p {
    margin-bottom: 15px;
}

.about-points {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.about-points span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    border-radius: 50%;
    color: var(--green);
    background: var(--mint-2);
}

.text-link {
    display: inline-flex;
    margin-top: 28px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

/* =========================================================
SERVICES
========================================================= */

.services-section {
    background: var(--mint);
}

.services-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 25px;
    transition:
        transform .45s var(--ease),
        box-shadow .45s var(--ease),
        border-color .45s;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--mint);
    transition: .5s var(--ease);
}

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

.service-card:hover::before {
    transform: scale(1.5);
}

.service-number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: #b8d5cc;
    font-size: 11px;
    font-weight: 800;
}

.service-icon {
    position: relative;
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--green);
    background: var(--mint-2);
    font-size: 20px;
    transition: .35s var(--ease);
}

.service-card:hover .service-icon {
    color: white;
    background: var(--green);
    transform: rotate(-5deg) scale(1.08);
}

.service-card h3 {
    position: relative;
    margin: 25px 0 11px;
    color: var(--dark);
    font-size: 17px;
}

.service-card p {
    position: relative;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.service-arrow {
    position: absolute;
    right: 25px;
    bottom: 23px;
    color: var(--green);
    font-size: 18px;
    transition: .3s;
}

.service-card:hover .service-arrow {
    transform: translate(4px,-4px);
}

/* =========================================================
WHY
========================================================= */

.why-section {
    padding: 120px 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-content > p {
    max-width: 560px;
    margin: 20px 0;
}

.why-list {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.why-list div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.why-list span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--mint-2);
    font-size: 12px;
}

.why-list p {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: transform .8s var(--ease);
}

.why-image:hover img {
    transform: scale(1.025);
}

.image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 15px;
    color: white;
    background: rgba(5,55,42,.78);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 700;
}

.image-caption span {
    opacity: .6;
}

/* =========================================================
GALLERY
========================================================= */

.gallery-section {
    background: #fff;
}

.gallery-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #ddd;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 50%
    );
    opacity: .65;
    transition: .4s;
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 17px;
    bottom: 16px;
    color: white;
    font-size: 11px;
    font-weight: 800;
}

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

.gallery-item:hover::after {
    opacity: .9;
}

/* =========================================================
TESTIMONIALS
========================================================= */

.testimonial-section {
    padding: 120px 6%;
    background: var(--mint);
}

.testimonial-slider {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 18px;
    transition: transform .6s var(--ease);
}

.testimonial-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-height: 255px;
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 23px;
    transition: .4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-sm);
}

.quote {
    height: 45px;
    color: var(--green);
    font-family: Georgia, serif;
    font-size: 60px;
    line-height: .8;
}

.testimonial-card p {
    margin: 20px 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.8;
}

.testimonial-card strong {
    color: var(--dark);
    font-size: 10px;
}

.testimonial-arrow {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: var(--green);
    transition: .3s;
}

.testimonial-arrow:hover {
    transform: scale(1.08);
    background: var(--dark-green);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #bdd8cf;
    transition: .3s;
}

.testimonial-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--green);
}

/* =========================================================
FAQ
========================================================= */

.faq-section {
    background: white;
}

.faq-container {
    max-width: 850px;
    margin: auto;
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
    transition: .3s;
}

.faq-item.active {
    border-color: #c4e5d9;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 0;
    background: transparent;
    color: var(--dark);
    text-align: left;
    font-size: 13px;
    font-weight: 800;
}

.faq-question b {
    color: var(--green);
    font-size: 22px;
    font-weight: 400;
    transition: .35s var(--ease);
}

.faq-item.active .faq-question b {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s var(--ease);
}

.faq-answer p {
    overflow: hidden;
    padding: 0 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

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

.faq-item.active .faq-answer p {
    padding-bottom: 20px;
}

/* =========================================================
ENQUIRY
========================================================= */

.enquiry-section {
    position: relative;
    overflow: hidden;
    padding: 110px 8%;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
    background: var(--deep);
}

.enquiry-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: -200px;
    border-radius: 50%;
    border: 1px solid rgba(126,229,190,.12);
}

.enquiry-decoration::before {
    content: "";
    position: absolute;
    inset: 70px;
    border: 1px solid rgba(126,229,190,.08);
    border-radius: 50%;
}

.enquiry-content {
    position: relative;
    z-index: 2;
}

.enquiry-content .eyebrow {
    color: #78dcb7;
}

.enquiry-content h2 {
    color: white;
}

.enquiry-content p {
    max-width: 470px;
    margin-top: 20px;
    color: #b8cbc5;
    line-height: 1.85;
    font-size: 13px;
}

.contact-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.contact-mini > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: white;
}

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

.contact-mini small {
    color: #8ea9a1;
    font-size: 9px;
}

.contact-mini strong {
    margin-top: 2px;
    color: white;
    font-size: 13px;
}

.enquiry-form {
    position: relative;
    z-index: 2;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 25px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.input-group {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.input-group label {
    color: #a9c2ba;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid #315249;
    outline: 0;
    border-radius: 12px;
    padding: 14px;
    color: white;
    background: #123d33;
    transition: .25s;
}

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #76948b;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #63d8b1;
    box-shadow: 0 0 0 3px rgba(99,216,177,.08);
}

.submit-btn {
    width: 100%;
    margin-top: 4px;
}

.enquiry-form > small {
    display: block;
    margin-top: 12px;
    color: #78948c;
    font-size: 9px;
}

/* =========================================================
LOCATION
========================================================= */

.location-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.location-info h2 {
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    gap: 11px;
    margin-top: 27px;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.contact-details span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--mint-2);
}

.map-container {
    height: 430px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
FOOTER
========================================================= */

footer {
    padding: 65px 6% 20px;
    color: #a7c0b8;
    background: #04261f;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: var(--green);
}

.footer-brand > p {
    max-width: 350px;
    margin-top: 14px;
    color: #78968c;
    font-size: 11px;
    line-height: 1.7;
}

.footer-main h4 {
    margin-bottom: 15px;
    color: white;
    font-size: 12px;
}

.footer-main a:not(.footer-logo) {
    display: block;
    margin: 10px 0;
    font-size: 11px;
    transition: .25s;
}

.footer-main a:not(.footer-logo):hover {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #173e35;
    color: #67857d;
    font-size: 9px;
}

.footer-bottom a {
    color: #9ab6ae;
}

/* =========================================================
WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: #19b96b;
    font-size: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    transition: .35s var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

/* =========================================================
BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    z-index: 899;
    right: 25px;
    bottom: 92px;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================================
LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: rgba(2,20,16,.94);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 94vw;
    max-height: 88vh;
    border-radius: 16px;
    transform: scale(.92);
    transition: .4s var(--ease);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: black;
    background: white;
    font-size: 28px;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero {
        gap: 45px;
    }

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

    .testimonial-card {
        flex-basis: calc((100% - 18px) / 2);
    }

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

    .gallery-large {
        grid-row: span 1;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 800px) {

    .top-bar {
        display: none;
    }

    .navbar {
        min-height: 68px;
        padding: 0 5%;
    }

    .navbar.scrolled {
        min-height: 64px;
    }

    .menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        z-index: -1;
        top: 68px;
        left: 0;
        right: 0;
        height: calc(100vh - 68px);
        padding: 20px 5% 35px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        overflow-y: auto;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(20px);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition:
            transform .4s var(--ease),
            opacity .3s,
            visibility .3s;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav a {
        padding: 16px 8px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
    }

    nav a:not(.nav-appointment)::after {
        display: none;
    }

    .nav-appointment {
        margin-top: 12px;
        text-align: center;
        border: 0;
    }

    .emergency-bar {
        min-height: 48px;
        padding: 8px 5%;
        flex-wrap: wrap;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 65px 5% 95px;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(46px, 13vw, 65px);
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.8;
    }

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

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 22px;
    }

    .hero-trust strong {
        font-size: 21px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image-frame {
        height: 420px;
        border-width: 7px;
        border-radius: 28px;
    }

    .hero-image-shadow {
        inset: 17px -12px -17px 12px;
        border-radius: 28px;
    }

    .card-top {
        top: 25px;
        right: -5px;
    }

    .card-bottom {
        left: -5px;
        bottom: 25px;
    }

    .hero-floating-card {
        padding: 11px 12px;
        gap: 9px;
    }

    .floating-icon,
    .mini-check {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .stats-section {
        width: 90%;
        margin-top: -35px;
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
    }

    .stat-card {
        padding: 23px 12px;
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .stat-card:nth-child(1)::after,
    .stat-card:nth-child(3)::after {
        top: 25%;
        height: 50%;
    }

    .section {
        padding: 80px 5%;
    }

    .about-section,
    .why-section,
    .location-section,
    .enquiry-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-section {
        padding-top: 95px;
    }

    .about-image img,
    .why-image img {
        height: 390px;
        border-radius: 24px;
    }

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

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

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

    .why-section {
        padding: 80px 5%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
        gap: 10px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    .gallery-large {
        grid-column: span 2;
    }

    .testimonial-section {
        padding: 80px 5%;
    }

    .testimonial-card {
        flex-basis: 100%;
        min-height: 245px;
    }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .enquiry-section {
        padding: 80px 5%;
        gap: 35px;
    }

    .enquiry-form {
        padding: 20px;
    }

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

    .map-container {
        height: 330px;
        border-radius: 22px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .back-to-top {
        right: 18px;
        bottom: 82px;
    }
}

/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .logo-text strong {
        font-size: 13px;
    }

    .logo-icon {
        width: 39px;
        height: 39px;
        border-radius: 12px;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-trust {
        justify-content: space-between;
        gap: 10px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-image-frame {
        height: 350px;
    }

    .hero-floating-card strong {
        font-size: 10px;
    }

    .hero-floating-card span {
        font-size: 8px;
    }

    .card-top {
        right: -8px;
    }

    .card-bottom {
        left: -8px;
    }

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

    .stat-card:not(:last-child)::after {
        top: auto;
        right: 15%;
        bottom: 0;
        width: 70%;
        height: 1px;
    }

    .stat-card:nth-child(2)::after {
        display: block;
    }

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

    .gallery-large {
        grid-column: auto;
    }

    .section-heading h2,
    .section-content h2,
    .why-content h2,
    .location-info h2,
    .enquiry-content h2 {
        font-size: 36px;
    }

    .testimonial-slider {
        gap: 5px;
    }

    .testimonial-arrow {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 14px;
    }
}

/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* =====================================================
   FOLLYHUB CREDIT
===================================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.follyhub-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    color: #8fa9a1;
}

.follyhub-credit strong {
    color: #8ee6c5;
    font-weight: 800;
}

.follyhub-credit span {
    opacity: .45;
}

.follyhub-credit a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.follyhub-credit a:hover {
    color: #8ee6c5;
}

/* Mobile */
@media (max-width: 600px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

}
