:root {
    --primary-blue: #1E63C6;
    --dark-blue: #0D47B5;
    --light-blue: #6FA9FF;
    --charcoal: #111111;
    --grey: #6B7280;
    --red: #E53935;
    --section: #f2f4f6;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

[id] {
    scroll-margin-top: 120px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    background: #0F172A;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: all .4s ease;
    border-bottom: 4px solid var(--primary-blue);
}

.navbar.scrolled {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(20px);
    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    width: 105px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    background: white;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.brand-tagline {
    font-size: .8rem;
    color: rgba(255,255,255,.8);
}

.navbar.scrolled .brand-name {
    color: var(--dark-blue);
}

.navbar.scrolled .brand-tagline {
    color: var(--grey);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    transform: translateX(-50%);
    left: 15px;
    right: 15px;
    transform: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: .3s;
}

.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a:hover {
    color: var(--light-blue);
}

.nav-button {
    background:
    linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
}

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

/* HERO */

.hero {
    height: calc(100vh - 90px);
    position: relative;
    padding: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.45)
        );
}

.hero h1 {
    font-size: 5rem;
    max-width: 1100px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 40px;
}

/* BUTTONS */

.btn-primary {
    text-decoration: none;
    color: white;
    padding: 16px 35px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            var(--dark-blue)
        );
    transition: .3s;
    box-shadow:
        0 15px 35px rgba(30,99,198,.25);
}

.btn-primary:hover {
    transform:
        translateY(-3px)
        scale(1.03);
}

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 14px 28px;
    border-radius: 999px;
}

/* SECTIONS */

section {
    padding: 90px 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.section-header p {
    color: var(--grey);
}

/* TRUST BAR */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--section);
    font-weight: 600;
    padding: 40px;
}

/* LOCATIONS */

.locations {
    background: var(--section);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(30,99,198,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: 0.3s;
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.location-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
}

/* ABOUT */

.about-brief {
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 30px;
    padding-bottom: 40px;
}

.about-brief h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-brief p {

    color: var(--grey);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* SERVICES */

.services {
    background: var(--section);
    padding: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}

.service-card {
    background: white;
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(30,99,198,.08);
    transition: .4s;
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(30,99,198,.15);
}

.service-card h3 {

    color: var(--dark-blue);
    margin-bottom: 12px;
}

/* CTA */

.cta {
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    color: var(--grey);
}

/* REVIEWS */

.reviews {
    background: var(--section);
    text-align: center;
}

.review-slider {
    max-width: 900px;
    margin: auto;
    position: relative;
    height: 420px;
}

.review {
    position: absolute;
    width: 100%;
    background: white;
    padding: 50px;
    border-radius: 24px;
    opacity: 0;
    transition: .8s;
    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.review.active {
    opacity: 1;
}

.review p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* PROFILE */

.profile {
    display: flex;
    align-items: center;
    gap: 80px;
}

.profile-image img {

    width: 420px;
    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);
}

.profile-content h2 {

    font-size: 3rem;
    margin-bottom: 20px;
}

/*.profile-content p {

    line-height: 1.8;
    color: var(--grey);
}
/*

/* FOOTER */

footer {
    background: #0F172A;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 80px 10%;
    border-top: 4px solid var(--primary-blue);
}

footer h3 {
    margin-bottom: 20px;
}

footer p {

    margin-bottom: 10px;
    opacity: .85;
}

footer a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--light-blue); 
}


footer p {
    margin-bottom: 10px;
    opacity: .85;
}

/* ANIMATIONS */

.reveal {

    opacity: 0;
    transform: translateY(50px);

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

.nav-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}


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

.services-hero {
    position: relative;
    margin-top: 90px;
    height: 60vh;
    min-height: 450px;
}

.services-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: rgba(15, 23, 42, 0.65);
    color: white;
    padding: 20px;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 15px;
}

.services-hero p {
    max-width: 800px;
    font-size: 1.1rem;
}

.services-page {
    max-width: 1200px;
    margin: auto;
    padding: 80px 5%;
}

.service-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.service-panel.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-content p {
    color: var(--grey);
    line-height: 1.8;
}

/* Reveal Animation */

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

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

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

.about {
    padding: 140px 10%;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
    align-items: start;
}

/* TEXT SIDE */

.about-text h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 20px;
}
.about-full p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 20px;
}

/*.about-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}*/

.main-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

.about-more {
    max-width: 1200px;
    margin: 60px auto 0;
    line-height: 1.9;
    color: var(--grey);
}

.about-more p {
    margin-bottom: 25px;
}

.about-full {
    margin-top: 60px;
    width: 100%;
}

/* SMALL PHOTO GRID */

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

.about-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

/*----------------------*/

.about {
    max-width: 1200px;
    margin: 140px auto 100px;
    padding: 0 10%;
}

.about h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 10px;
}

.about h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--grey);
    margin-bottom: 40px;
}

.about p {
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 25px;
}

.about-media {
    float: right;
    width: 420px;
    margin-left: 50px;
    margin-bottom: 40px;
}

.main-photo {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-grid {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.thumbnail {
    width: calc(33.333% - 7px);
    border-radius: 12px;
    cursor: pointer;
    object-fit: cover;
    transition: 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.about-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Mobile image carousel */
@media (max-width: 900px) {

    .about-media {
        float: none;
        width: 100%;
        margin: 0 0 40px;
    }

    .about-grid {
        justify-content: center;
    }

    .about-trust {
        flex-direction: column;
        gap: 30px;
    }
    
    .trust-image {
        max-width: 300px;
    }
}
/* CONTACT PAGE */

.contact-hero {
    padding: 140px 10% 60px;
    text-align: center;
    background: var(--section);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 15px;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    color: var(--grey);
    line-height: 1.8;
}


/* MAIN LAYOUT */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    padding: 80px 10%;
    max-width: 1300px;
    margin: auto;
    align-items: start;
}


/* LEFT SIDE */

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.contact-info p {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 25px;
    padding: 20px;
    background: var(--section);
    border-radius: 16px;
}

.contact-note {
    margin-top: 25px;
    color: var(--grey);
    font-size: 0.95rem;
}


/* RIGHT SIDE */

.contact-booking iframe {
    width: 100%;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/*============== MOBILE ========================*/
@media (max-width: 900px) {

    /* Navbar */
    .navbar {
        padding: 0 25px;
        height: 100px;
    }

    .nav-left {
        min-width: 0;
        flex: 1;
        text-decoration: none;
        color: inherit;
    }

    .nav-logo {
        width: 105px;
        height: 60px;
    }

    .brand {
        min-width: 0;
    }

    .brand-name {
        font-size: 1rem;
        white-space: nowrap;
    }

    .brand-tagline {
        display: none;
    }

    .nav-toggle {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        margin-left: 10px;
    }

    .nav-button {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 90px;

        right: 15px;

        transform: none;

        display: flex;
        flex-direction: column;

        background: white;
        border-radius: 12px;

        box-shadow: 0 10px 30px rgba(0,0,0,.15);

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .nav-links.open {
        max-height: 500px;
    }

    .nav-links li {
        padding: 16px 20px;
        list-style: none;
    }

    .nav-links a {
        color: var(--charcoal);
        text-decoration: none;
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .review-slider {
        max-width: 900px;
        margin: auto;
        position: relative;
        height: 620px;
    }

    .profile {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .profile-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .profile-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
        display: block;
    }

    .profile-content {
        width: 100%;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .stat h3 {
        font-size: 3rem;
    }

    footer {
        background: #0F172A;
        color: white;
        justify-content: space-around;
        padding-top: 70px 10%;
        border-top: 4px solid var(--primary-blue);
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .service-panel,
    .service-panel.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-image {
        width: 100%;
    }

    .service-content {
        width: 100%;
    }

    footer h3 {
        margin-bottom: 20px;
    }
    
    footer p {
        margin-bottom: 10px;
        opacity: .85;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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