
/* =====================================================
   SAFEEDGE APARTMENTS
   MAIN STYLESHEET
===================================================== */


/* ================= ROOT ================= */

:root {
    --dark-blue: #071A35;
    --dark-blue-2: #0B2548;
    --blue: #1687D9;
    --light-blue: #DDF2FF;
    --very-light-blue: #F4FAFE;

    --white: #ffffff;
    --black: #101820;
    --grey: #667085;
    --light-grey: #E8EEF3;

    --shadow: 0 20px 50px rgba(7, 26, 53, 0.10);

    --radius: 18px;

    --transition: all 0.35s ease;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}











/* =========================================================
   RESPONSIVE HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #e8edf3;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   HEADER CONTAINER
   ========================================================= */

.nav-container {
    width: min(1200px, 92%);

    min-height: 76px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}

.logo img {
    display: block;

    width: 80px;

    height: auto;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: clamp(18px, 2.5vw, 32px);

    margin-left: auto;
}

.desktop-nav a {
    position: relative;

    color: #071a33;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: color 0.25s ease;
}


/* Underline */

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #3298e8;

    border-radius: 10px;

    transition: width 0.25s ease;
}


/* Hover */

.desktop-nav a:hover {
    color: #3298e8;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* Active page */

.desktop-nav a.active {
    color: #3298e8;
}

.desktop-nav a.active::after {
    width: 100%;
}


/* =========================================================
   BOOK NOW BUTTON
   ========================================================= */

.nav-book-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    padding: 11px 17px;

    border-radius: 5px;

    background: #071a33;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-book-btn:hover {
    background: #3298e8;

    color: #ffffff;

    transform: translateY(-2px);
}

.nav-book-btn i {
    font-size: 9px;
}


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

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--dark-blue);
}


/* VIDEO */

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.90;
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 53, 0.97) 0%,
            rgba(7, 26, 53, 0.80) 42%,
            rgba(7, 26, 53, 0.38) 100%
        );

    z-index: 1;
}


/* HERO CONTENT */

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

.hero-content {
    max-width: 720px;
    padding-top: 90px;

    animation: heroIn 1.1s ease forwards;
}

@keyframes heroIn {

    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* EYEBROW */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--light-blue);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow: 0 0 0 6px rgba(22, 135, 217, 0.15);
}


/* HERO HEADING */

.hero h1 {
    color: var(--white);

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 700;
}

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

.hero h1 strong {
    display: block;
    color: var(--blue);
    font-weight: 800;
}


/* HERO TEXT */

.hero-text {
    max-width: 580px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.primary-btn {
    color: var(--white);
    background: var(--blue);
}

.primary-btn:hover {
    background: #0d75c1;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(22, 135, 217, 0.30);
}

.secondary-btn {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.28);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

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


/* TRUST */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 55px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 11px;
    font-weight: 500;
}

.trust-item i {
    color: var(--light-blue);
}

.trust-line {
    width: 1px;
    height: 18px;

    background: rgba(255, 255, 255, 0.25);
}


/* SCROLL */

.scroll-indicator {
    position: absolute;

    right: 5%;
    bottom: 40px;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    writing-mode: vertical-rl;
}

.scroll-indicator i {
    color: var(--blue);

    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.highlights {
    position: relative;

    background: var(--very-light-blue);

    padding: 35px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    background: var(--white);

    border: 1px solid var(--light-grey);
    border-radius: 14px;

    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 135, 217, 0.3);
    box-shadow: var(--shadow);
}

.highlight-icon {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--blue);
    background: var(--light-blue);
}

.highlight-card h3 {
    font-size: 13px;
    color: var(--dark-blue);
}

.highlight-card p {
    font-size: 11px;
    color: var(--grey);
}


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

.apartments-section,
.why-section,
.location-section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 45px;
}

.section-label {
    display: block;

    margin-bottom: 13px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2,
.why-content h2 {
    color: var(--dark-blue);

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;

    letter-spacing: -2px;
}

.section-heading h2 span,
.why-content h2 span,
.location-content h2 span,
.booking-cta h2 span {
    color: var(--blue);
}

.text-link {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--dark-blue);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--blue);
    gap: 15px;
}


/* =====================================================
   APARTMENT CARDS
===================================================== */

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.apartment-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--light-grey);
    border-radius: 20px;

    transition: var(--transition);
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.06);
}

.availability,
.featured-tag {
    position: absolute;

    top: 18px;

    padding: 7px 11px;

    border-radius: 50px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.availability {
    left: 18px;

    color: #075e3b;
    background: #d8f7e8;
}

.featured-tag {
    right: 18px;

    color: var(--white);
    background: var(--blue);
}

.image-view-btn {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    color: var(--dark-blue);
    background: var(--white);

    cursor: pointer;

    opacity: 0;

    transform: translateY(10px);

    transition: var(--transition);
}

.apartment-card:hover .image-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.apartment-info {
    padding: 28px;
}

.apartment-type {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.apartment-info h3 {
    margin-top: 7px;

    color: var(--dark-blue);

    font-size: 22px;
}

.apartment-info > p {
    margin-top: 10px;

    color: var(--grey);

    font-size: 13px;
    line-height: 1.7;
}

.apartment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 20px;
}

.apartment-features span {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 7px 10px;

    color: var(--grey);

    background: var(--very-light-blue);

    border-radius: 6px;

    font-size: 10px;
}

.apartment-features i {
    color: var(--blue);
}

.apartment-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--light-grey);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price small {
    color: var(--grey);
    font-size: 10px;
}

.price strong {
    color: var(--dark-blue);
    font-size: 21px;
}

.price span {
    color: var(--grey);
    font-size: 10px;
}

.card-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    color: var(--white);
    background: var(--dark-blue);

    border-radius: 8px;

    font-size: 11px;
    font-weight: 700;

    transition: var(--transition);
}

.card-btn:hover {
    background: var(--blue);
}


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

.why-section {
    background: var(--very-light-blue);
}

.why-container {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image > img {
    height: 580px;
    object-fit: cover;

    border-radius: 25px;
}

.experience-card {
    position: absolute;

    right: -25px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 22px;

    border-radius: 15px;

    background: var(--dark-blue);
    color: var(--white);

    box-shadow: var(--shadow);
}

.experience-card strong {
    color: var(--light-blue);
    font-size: 28px;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.3;
}

.why-intro {
    max-width: 550px;

    margin-top: 22px;

    color: var(--grey);

    font-size: 14px;
    line-height: 1.9;
}

.why-list {
    margin-top: 35px;
}

.why-item {
    display: flex;
    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #dce5ec;
}

.why-number {
    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
}

.why-item h3 {
    color: var(--dark-blue);
    font-size: 15px;
}

.why-item p {
    margin-top: 5px;

    color: var(--grey);

    font-size: 12px;
    line-height: 1.7;
}


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

.location-section {
    background: var(--white);
}

.location-box {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 70px;

    border-radius: 28px;

    background: var(--dark-blue);
}

.location-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.location-content h2 {
    color: var(--white);

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.location-content p {
    max-width: 520px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.8;
}

.location-details {
    display: flex;
    gap: 25px;

    margin: 25px 0;
}

.location-details div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--white);

    font-size: 12px;
}

.location-details i {
    color: var(--blue);
}

.location-pattern {
    position: absolute;

    right: -80px;
    top: -100px;

    width: 500px;
    height: 500px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.location-pattern::before {
    content: "";

    width: 320px;
    height: 320px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.location-pattern i {
    position: absolute;

    color: var(--blue);

    font-size: 75px;

    animation: locationFloat 3s ease-in-out infinite;
}

@keyframes locationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =====================================================
   BOOKING CTA
===================================================== */

.booking-cta {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            var(--light-blue),
            #ffffff
        );
}

.cta-content {
    text-align: center;
}

.cta-small {
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.booking-cta h2 {
    margin-top: 12px;

    color: var(--dark-blue);

    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -3px;
}

.booking-cta p {
    max-width: 550px;

    margin: 20px auto 0;

    color: var(--grey);

    font-size: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin-top: 30px;
}

.cta-btn,
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.cta-btn {
    margin-left:auto;
    color: var(--very-dark-blue);
    background: var(--white);
}

.cta-btn:hover {
    color: var(--white);

    background: var(--blue);
    transform: translateY(-3px);
}

.whatsapp-btn {
    color: var(--white);

    border: 1px solid var(--very-light-blue);

    background: transparent;
}

.whatsapp-btn:hover {
    color: var(--very-light-blue);
    background: var(--dark-blue);
    transform: translateY(-3px);
}


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

/* ==============================
   COMPACT WHITE FOOTER
================================= */

.site-footer {
    background: #ffffff;
    color: #071a33;
    padding: 25px 6% 0;
    border-top: 1px solid #e8edf3;
}


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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.5fr;

    column-gap: 40px;
    align-items: start;
}


/* ==============================
   BRAND
================================= */

.footer-brand {
    max-width: 270px;
}

.footer-brand img {
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 7px;
}

.footer-brand p {
    margin: 0;

    color: #526174;
    font-size: 11.5px;
    line-height: 1.4;
}


/* ==============================
   SOCIAL ICONS
================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
}

.footer-socials a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dbe3ec;
    border-radius: 50%;

    color: #071a33;
    background: #ffffff;

    text-decoration: none;
    font-size: 12px;

    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: #3298e8;
    border-color: #3298e8;
    color: #ffffff;
}


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

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin: 0 0 9px;

    color: #071a33;

    font-size: 13px;
    font-weight: 700;
}

.footer-column > a {
    margin-bottom: 5px;

    color: #526174;

    font-size: 11.5px;
    line-height: 1.3;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-column > a:hover {
    color: #3298e8;
}


/* ==============================
   CONTACT
================================= */

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin: 0 0 6px;

    color: #526174;

    font-size: 11.5px;
    line-height: 1.3;
}

.footer-contact p i {
    width: 14px;
    margin-top: 1px;

    color: #3298e8;

    text-align: center;
    flex-shrink: 0;
}

.footer-contact p a {
    color: #526174;
    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-contact p a:hover {
    color: #3298e8;
}


/* ==============================
   BOTTOM BAR
================================= */

.footer-bottom {
    max-width: 1200px;
    margin: 18px auto 0;

    padding: 9px 0;

    border-top: 1px solid #edf1f5;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;

    color: #7a8796;
    font-size: 10px;
}

.footer-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #071a33;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-bottom > a:hover {
    color: #3298e8;
}


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

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        column-gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 380px;
    }
}


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

@media (max-width: 600px) {

    .site-footer {
        padding: 22px 7% 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-brand img {
        width: 90px;
        margin-bottom: 6px;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-socials {
        margin-top: 9px;
    }

    .footer-socials a {
        width: 27px;
        height: 27px;
        font-size: 11px;
    }

    .footer-column h4 {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .footer-column > a,
    .footer-contact p {
        font-size: 11px;
    }

    .footer-column > a {
        margin-bottom: 4px;
    }

    .footer-contact p {
        margin-bottom: 5px;
    }

    .footer-bottom {
        margin-top: 16px;
        padding: 8px 0;

        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}



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

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

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


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .desktop-nav,
    .nav-book-btn {
        display: none;
    }
.highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image > img {
        height: 500px;
    }

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

}


@media (max-width: 650px) {

    .container {
        width: 90%;
    }

    .nav-container {
        height: 70px;
    }

    .logo img {
        width: 50px;
    }

    .hero {
        min-height: 780px;
    }

    .hero-video {
        opacity: 0.55;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 26, 53, 0.75),
                rgba(7, 26, 53, 0.97)
            );
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 14px;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 35px;
    }

    .trust-line {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

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

    .apartments-section,
    .why-section,
    .location-section {
        padding: 75px 0;
    }

    .section-heading {
        display: block;
    }

    .text-link {
        margin-top: 20px;
    }

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

    .apartment-image {
        height: 260px;
    }

    .apartment-info {
        padding: 22px;
    }

    .apartment-features {
        gap: 7px;
    }

    .apartment-bottom {
        align-items: flex-end;
    }

    .why-image > img {
        height: 400px;
    }

    .experience-card {
        right: 15px;
        bottom: 15px;
    }

    .location-box {
        padding: 40px 25px;
    }

    .location-details {
        flex-direction: column;
        gap: 12px;
    }

    .location-pattern {
        opacity: 0.5;
        right: -220px;
    }

    .booking-cta {
        padding: 80px 0;
    }

    .booking-cta h2 {
        font-size: 48px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn,
    .whatsapp-btn {
        justify-content: center;
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}

/* =========================================================
   SAFEEDGE MOBILE HAMBURGER MENU
   MOBILE MENU ONLY
========================================================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #E8EEF3;
    border-radius: 8px;
    color: #071A35;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.menu-toggle:hover {
    background: #DDF2FF;
    border-color: #1687D9;
    color: #1687D9;
}

@media screen and (max-width: 800px) {
    .desktop-nav,
    .nav-book-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 10px 5% 20px;
        background: #ffffff;
        border-top: 1px solid #E8EEF3;
        border-bottom: 1px solid #E8EEF3;
        box-shadow: 0 15px 35px rgba(7, 26, 53, 0.10);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 999;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-nav > a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 14px 5px;
        color: #071A35;
        background: transparent;
        border-bottom: 1px solid #E8EEF3;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .mobile-nav > a:hover {
        color: #1687D9;
        padding-left: 10px;
    }

    .mobile-nav .mobile-book-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-top: 15px;
        min-height: 46px;
        padding: 12px 18px;
        background: #1687D9;
        color: #ffffff;
        border: none;
        border-radius: 7px;
        text-align: center;
    }

    .mobile-nav .mobile-book-btn:hover {
        padding-left: 18px;
        background: #071A35;
        color: #ffffff;
    }
}

@media screen and (max-width: 480px) {
    .menu-toggle {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .mobile-nav > a {
        min-height: 46px;
        padding: 13px 5px;
        font-size: 14px;
    }
}




/* =====================================================
   HIDE MOBILE NAVIGATION ON DESKTOP & TABLET
===================================================== */

@media (min-width: 768px) {

    .mobile-nav {
        display: none !important;
    }

    .menu-toggle {
        display: none !important;
    }

}
