:root {
    --navy: #0D2B3E;
    --gold: #D4A23A;
    --slate: #6D7F89;
    --off-white: #F2EFEA;
    --light-gray: #F8F8F8;
    --white: #ffffff;
    --dark: #081F2D;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--navy);
    background: var(--light-gray);
    line-height: 1.6;
}

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

button,
input,
textarea {
    font-family: inherit;
}

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


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

.navbar {
    background: var(--navy);
    color: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

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

.logo img {
    width: 170px;
    height: auto;
    display: block;
}


/* NAV LINKS */

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar nav a {
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: var(--gold);
}


/* NAV BUTTON */

.nav-button {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--gold);
    color: var(--navy);
}
/* WHATSAPP BUTTON */

.whatsapp-button {
    border: 1px solid var(--gold);
    color: var(--white);
    background: var(--navy);
    padding: 10px 18px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: var(--gold);
    color: var(--navy);
}

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

.hero {
    min-height: 700px;

    background-image:
        linear-gradient(
            rgba(13, 43, 62, 0.70),
            rgba(13, 43, 62, 0.85)
        ),
        url("../images/destinations/dubai.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    color: var(--white);
}

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

.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(50px, 8vw, 90px);
    line-height: 0.98;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text {
    max-width: 650px;
    font-size: 18px;
    color: #e6e9eb;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;
    padding: 14px 25px;
    border: 1px solid var(--gold);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button {
    background: var(--gold);
    color: var(--navy);
}

.primary-button:hover {
    background: var(--white);
    border-color: var(--white);
}

.secondary-button {
    color: var(--white);
}

.secondary-button:hover {
    background: var(--gold);
    color: var(--navy);
}


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

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.about h2,
.enquiry h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.section-heading h2 span,
.about h2 span,
.contact h2 span {
    color: var(--gold);
}

.section-heading > p:not(.eyebrow) {
    color: var(--slate);
}


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

.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 35px 28px;
    border-bottom: 3px solid transparent;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--gold);
    box-shadow: 0 15px 35px rgba(13, 43, 62, 0.10);
}

.service-icon {
    font-size: 35px;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.service-card p {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--gold);
    font-weight: bold;
    font-size: 14px;
}

.service-card a:hover {
    color: var(--navy);
}


/* =========================
   DESTINATIONS
========================= */

.destinations {
    background: var(--light-gray);
}

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

.destination-card {
    height: 400px;
    color: var(--white);
    padding: 25px;

    display: flex;
    align-items: flex-end;

    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;

    transition: transform 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
}

.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        transparent 35%,
        rgba(13, 43, 62, 0.90)
    );
}

.destination-card div {
    position: relative;
    z-index: 1;
}

.destination-card span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
}

.destination-card h3 {
    font-size: 32px;
    margin-top: 5px;
}


/* DESTINATION PHOTOS */

.destination-one {
    background-image:
        url("../images/destinations/dubai.jpg");
}

.destination-two {
    background-image:
        url("../images/destinations/zanzibar.jpg");
}

.destination-three {
    background-image:
        url("../images/destinations/paris.jpg");
}

.destination-four {
    background-image:
        url("../images/destinations/guangzhou.jpg");
}


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

.about {
    background: var(--navy);
    color: var(--white);
}

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

.about-content > p:not(.eyebrow) {
    color: #dce2e5;
    margin-bottom: 20px;
    max-width: 550px;
}

.trust-box {
    border-left: 1px solid var(--gold);
    padding-left: 35px;
}

.trust-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item strong {
    color: var(--gold);
    font-size: 20px;
}

.trust-item h3 {
    margin-bottom: 5px;
}

.trust-item p {
    color: #bfcbd1;
}


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

.enquiry {
    background: var(--off-white);
}

.enquiry-box {
    background: var(--navy);
    color: var(--white);

    padding: 70px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.enquiry-content p:not(.eyebrow) {
    color: #cbd5da;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 15px;

    border: none;
    outline: none;

    background: var(--white);

    font: inherit;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: 2px solid var(--gold);
}

.enquiry-form textarea {
    resize: vertical;
}
.enquiry-form select {
    width: 100%;
    padding: 15px;

    border: none;
    outline: none;

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

    font: inherit;
    cursor: pointer;
}

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

.contact {
    padding: 90px 0;
    background: var(--gold);
    color: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact h2 {
    font-size: clamp(45px, 6vw, 70px);
    line-height: 1;
}

.contact h2 span {
    color: var(--white);
}

.contact-details {
    display: grid;
    gap: 25px;
}

.contact-details small {
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-details p {
    font-size: 18px;
}


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

footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand p {
    margin-top: 15px;
    color: #aebbc2;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    margin-top: 50px;
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #8999a2;
    font-size: 13px;
}


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

@media (max-width: 900px) {

    .navbar nav {
        display: none;
    }

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

    .about-grid,
    .enquiry-box,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-box {
        padding: 40px 30px;
    }
}


@media (max-width: 600px) {

    .logo img {
        width: 125px;
    }

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

    .hero {
        min-height: 600px;
    }

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

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

    .nav-button {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .destination-card {
        height: 350px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
.success-message {
    background: #F2EFEA;
    border-left: 5px solid #D4A23A;
    padding: 20px 24px;
    margin-bottom: 25px;
    border-radius: 8px;
    color: #0D2B3E;
}

.success-message strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.success-message p {
    margin: 0;
    color: #6D7F89;
}
/* ================= KENYA DESTINATIONS ================= */

.destination-card.nairobi {
    background-image: url("../images/destinations/nairobi.jpg");
}

.destination-card.mombasa {
    background-image: url("../images/destinations/mombasa.jpg");
}

.destination-card.kisumu {
    background-image: url("../images/destinations/kisumu.jpg");
}

.destination-card.nakuru {
    background-image: url("../images/destinations/nakuru.jpg");
}

.destination-card.eldoret {
    background-image: url("../images/destinations/eldoret.jpg");
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    /* Navbar */
    header .container {
        flex-wrap: wrap;
    }

    .logo img {
        width: 140px;
    }

    nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    .nav-button,
    .whatsapp-button {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Hero */
    .hero {
        min-height: 600px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    /* General sections */
    .section {
        padding: 60px 20px;
    }

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

    /* Destinations */
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 350px;
    }

    /* About / Why Bulayi */
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        width: 100%;
    }

    /* Buttons */
    .button {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    footer {
        text-align: center;
    }
}

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

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    z-index: 9999;

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

    background: #25D366;
    color: #ffffff;

    padding: 13px 20px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

.whatsapp-icon {
    font-size: 22px;
    line-height: 1;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.30);
}

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

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
        padding: 12px 17px;
        font-size: 14px;
    }

    .whatsapp-icon {
        font-size: 20px;
    }
}
