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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

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

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


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

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    backdrop-filter: blur(12px);

    border-bottom: 1px solid #242424;
}

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: auto;

    min-height: 112px;

    padding: 8px 25px;

    display: flex;
    align-items: center;
}

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

    gap: 14px;

    color: white;

    font-size: 23px;
    font-weight: 800;

    white-space: nowrap;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-link .brand-name span:first-child {
    color: #df7b08;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-link .brand-name span:last-child {
    color: #fff;
    font-size: 25px;
    letter-spacing: 1px;
}

.logo {
    width: 112px;
    height: 112px;

    object-fit: cover;
    object-position: center top;
    filter: hue-rotate(320deg) saturate(1.65) brightness(0.82);

    border-radius: 8px;
}

nav {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    gap: clamp(12px, 1.6vw, 24px);
}

nav a {
    color: #dddddd;

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

    transition: 0.2s;
}

nav a:hover {
    color: #f5a623;
}

.nav-call {
    background: #df7b08;

    color: #111111;

    padding: 12px 20px;

    border-radius: 8px;

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

    transition: 0.2s;
}

.watford-mark {
    display: block;
    width: 66px;
    height: 74px;
    object-fit: contain;
    margin-left: auto;
}

.nav-call:hover {
    transform: translateY(-2px);
}

.menu-button {
    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


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

.hero {
    min-height: 650px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.88) 48%,
            rgba(0, 0, 0, 0.62) 100%
        ),
        url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;
}

.hero-content {
    width: 100%;

    max-width: 1200px;

    margin: auto;

    padding: 80px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

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

    color: white;
}

.location-tag {
    display: inline-block;

    padding: 8px 13px;

    margin-bottom: 22px;

    border: 1px solid #4c4c4c;

    border-radius: 50px;

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

    color: #eeeeee;

    font-size: 13px;

    font-weight: 600;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #f5a623;
}

.hero-text > p {
    max-width: 600px;

    color: #d1d1d1;

    font-size: 18px;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* BUTTONS */

.button {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 15px 24px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 800;

    transition: 0.2s;
}

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

.button-primary {
    background: #f5a623;

    color: #111111;
}

.button-secondary {
    background: #ffffff;

    color: #111111;
}

.button-white {
    background: white;

    color: #111111;
}

.button-outline {
    border: 2px solid white;

    color: white;
}

.button-outline:hover {
    background: white;

    color: #111111;
}


/* HERO CARD */

.hero-card {
    width: 310px;

    padding: 35px;

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

    border-radius: 18px;

    background: rgba(20,20,20,0.88);

    backdrop-filter: blur(12px);

    color: white;

    text-align: center;
}

.card-icon {
    font-size: 45px;

    margin-bottom: 15px;
}

.hero-card h2 {
    font-size: 25px;

    margin-bottom: 8px;
}

.hero-card p {
    color: #bcbcbc;

    margin-bottom: 18px;
}

.card-phone {
    display: block;

    color: #f5a623;

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 22px;
}

.card-button {
    display: block;

    background: #f5a623;

    color: #111111;

    padding: 13px;

    border-radius: 8px;

    font-weight: 800;
}


/* ================================
   QUICK INFO
================================ */

.quick-info {
    max-width: 1100px;

    margin: -45px auto 0;

    position: relative;

    z-index: 5;

    padding: 25px;

    background: white;

    border-radius: 15px;

    box-shadow: 0 15px 50px rgba(0,0,0,0.12);

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.quick-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px 15px;
}

.quick-icon {
    width: 48px;
    height: 48px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 10px;

    background: #fff0cf;

    font-size: 22px;
}

.quick-item strong,
.quick-item span {
    display: block;
}

.quick-item strong {
    font-size: 14px;
}

.quick-item span {
    color: #777;

    font-size: 12px;
}


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

.section {
    max-width: 1200px;

    margin: auto;

    padding: 110px 25px;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.small-title {
    color: #a85b0a;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 16px;
}

.section-heading p {
    color: #666;
}


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

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    padding: 32px;

    border: 1px solid #e9e9e9;

    border-radius: 14px;

    background: white;

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff0cf;

    border-radius: 12px;

    font-size: 25px;

    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 19px;

    margin-bottom: 9px;
}

.service-card p {
    color: #666;

    font-size: 14px;
}

.service-card.highlight {
    background: #111111;

    color: white;
}

.service-card.highlight p {
    color: #bbbbbb;
}

.service-card.highlight a {
    display: inline-block;

    margin-top: 20px;

    color: #f5a623;

    font-weight: 800;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.price-card {
    padding: 28px 22px;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    background: linear-gradient(145deg, #fffaf1, #fff 72%);
    border-top: 4px solid #e68b18;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.price-card:nth-child(2) { background: linear-gradient(145deg, #fff7e8, #fff 72%); border-top-color: #d99a38; }
.price-card:nth-child(3) { background: linear-gradient(145deg, #fff5e5, #fff 72%); border-top-color: #ca7416; }
.price-card:nth-child(4) { background: linear-gradient(145deg, #fff8ee, #fff 72%); border-top-color: #e2a24c; }
.price-card > span { font-size: 30px; }
.price-card h3 { margin: 8px 0 0; font-size: 20px; }
.price-card strong { display: block; margin: 8px 0 16px; color: #a85b0a; font-size: 38px; font-weight: 800; }
.price-card a { color: #9a5a00; font-weight: 700; }
.booking-email { display: block; margin-top: 10px; overflow-wrap: anywhere; }


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

.about-section {
    background: #f6f6f6;
}

.about-container {
    max-width: 1200px;

    margin: auto;

    padding: 100px 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-image {
    min-height: 500px;

    border-radius: 20px;

    background:
        linear-gradient(
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1200&q=85");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    padding: 35px;
}

.taxi-symbol {
    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f5a623;

    border-radius: 15px;

    font-size: 45px;
}

.about-text h2 {
    font-size: clamp(32px, 5vw, 50px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.about-text p {
    color: #606060;

    margin-bottom: 15px;
}

.about-points {
    margin: 28px 0;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 13px;
}

.about-points span {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f5a623;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 900;
}


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

.booking-section {
    background: #101010;

    padding: 110px 25px;
}

.section-heading.light .small-title {
    color: #f5a623;
}

.section-heading.light h2 {
    color: white;
}

.section-heading.light p {
    color: #aaa;
}

.booking-container {
    max-width: 1050px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 35px;
}

#bookingForm {
    padding: 35px;

    background: white;

    border-radius: 15px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;
}

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

    padding: 13px 14px;

    border: 1px solid #dddddd;

    border-radius: 7px;

    outline: none;

    background: #fafafa;

    font-size: 16px;

    transition: 0.2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f5a623;

    background: white;

    box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}

.booking-button {
    width: 100%;

    border: none;

    padding: 16px;

    border-radius: 8px;

    background: #f5a623;

    color: #111111;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;
}

.booking-button:hover {
    transform: translateY(-2px);
}

.form-note {
    text-align: center;

    color: #888;

    font-size: 11px;

    margin-top: 12px;
}


/* BOOKING SIDE */

.booking-side {
    padding: 40px;

    border: 1px solid #2b2b2b;

    border-radius: 15px;

    color: white;

    text-align: center;
}

.booking-side-icon {
    font-size: 48px;

    margin-bottom: 15px;
}

.booking-side h3 {
    font-size: 25px;

    margin-bottom: 10px;
}

.booking-side p {
    color: #aaa;

    font-size: 14px;

    margin-bottom: 18px;
}

.booking-side > a:not(.whatsapp-button) {
    display: block;

    color: #f5a623;

    font-size: 20px;

    font-weight: 800;
}

.or {
    margin: 25px 0;

    color: #555;

    font-size: 12px;

    font-weight: 800;
}

.whatsapp-button {
    display: block;

    background: #25d366;

    color: white;

    padding: 13px;

    border-radius: 8px;

    font-weight: 800;
}


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

.contact-section {
    padding: 100px 25px;
}

.contact-grid {
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.contact-card {
    text-align: center;

    padding: 35px 20px;

    border: 1px solid #e6e6e6;

    border-radius: 14px;
}

.contact-icon {
    font-size: 35px;

    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 7px;
}

.contact-card p {
    color: #777;

    font-size: 13px;

    margin-bottom: 10px;
}

.contact-card a {
    color: #9a7c00;

    font-weight: 800;
}

.contact-card strong {
    font-size: 14px;
}


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

.cta {
    background: #f5a623;

    padding: 55px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding-left: max(25px, calc((100vw - 1150px) / 2));
    padding-right: max(25px, calc((100vw - 1150px) / 2));
}

.cta h2 {
    font-size: 38px;

    letter-spacing: -1px;
}

.cta p {
    color: #3d3d3d;
}

.cta-buttons {
    display: flex;

    gap: 12px;
}


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

footer {
    background: #090909;

    color: white;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    padding: 65px 25px;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 15px;
}

.footer-logo .brand-name span:first-child {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo .brand-name span:last-child {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-logo img {
    width: 55px;
    height: 55px;

    object-fit: contain;
    filter: hue-rotate(320deg) saturate(0.95);
}

.footer-brand p {
    max-width: 330px;

    color: #777;

    font-size: 13px;
}

footer h4 {
    margin-bottom: 17px;

    color: #f5a623;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: block;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 10px;

    transition: 0.2s;
}

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

.copyright {
    border-top: 1px solid #202020;

    text-align: center;

    color: #555;

    font-size: 11px;

    padding: 20px 25px;
}


/* ================================
   FLOATING CALL BUTTON
================================ */

.floating-call {
    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 999;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f5a623;

    color: #111111;

    font-size: 23px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


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

@media (max-width: 850px) {

    .nav-container {
        min-height: 84px;
    }

    .logo {
        width: 68px;
        height: 68px;
    }

    .watford-mark {
        width: 60px;
        height: 68px;
    }

    .menu-button {
        display: block;

        margin-left: auto;

        margin-right: 15px;
    }

    nav {
        display: none;

        position: absolute;

        top: 84px;

        left: 0;
        right: 0;

        transform: none;

        padding: 20px 25px;

        background: #111111;

        flex-direction: column;

        gap: 0;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 14px 0;

        border-bottom: 1px solid #292929;
    }

    .nav-call {
        display: inline-block;
        align-self: flex-start;
        margin-top: 14px;
        border-bottom: 0;
    }


    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 75px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

    .hero h1 {
        font-size: 54px;

        letter-spacing: -2px;
    }

    .hero-card {
        width: 100%;
    }


    .quick-info {
        margin: 0;

        border-radius: 0;

        grid-template-columns: 1fr;
    }


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


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

        gap: 45px;

        padding: 75px 25px;
    }

    .about-image {
        min-height: 350px;
    }


    .booking-container {
        grid-template-columns: 1fr;
    }


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

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


    .cta {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta h2 {
        font-size: 32px;
    }


    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }
}


@media (max-width: 500px) {

    .nav-container {
        padding: 8px 14px;
    }

    .logo-link {
        gap: 9px;
    }

    .logo {
        width: 56px;
        height: 56px;
    }

    .logo-link .brand-name span:first-child {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .logo-link .brand-name span:last-child {
        font-size: 19px;
    }

    .watford-mark {
        width: 42px;
        height: 48px;
    }

    .menu-button {
        margin-right: 9px;
        font-size: 24px;
    }

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

    .logo-link {
        font-size: 19px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

        gap: 0;
    }

    #bookingForm {
        padding: 23px;
    }

    .booking-side {
        padding: 30px 20px;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
    }
}
