:root {
    --navy: #071a2f;
    --blue: #0f5da8;
    --red: #e72a2f;
    --sky: #eaf7ff;
    --white: #fff;
    --ink: #152033;
    --muted: #627084;
    --line: #dbe6f0;
    --shadow: 0 24px 70px rgba(7,26,47,.14);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg,#f7fcff 0%,#fff 36%,#f6fbff 100%);
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 7vw;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    color: var(--navy);
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
}

.site-header nav {
    display: flex;
    gap: 22px;
    font-weight: 700;
}

.site-header nav a {
    text-decoration: none;
    color: var(--navy);
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
    padding: 72px 7vw 44px;
    min-height: 720px;
    background: radial-gradient(circle at top right,rgba(15,93,168,.18),transparent 32%),linear-gradient(135deg,#fff 0%,#eaf7ff 100%);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    color: var(--red);
    font-weight: 900;
    margin: 0 0 12px;
}

.hero h1, .section-heading h2, .split h2, .service-area h2, .contact-copy h2 {
    font-size: clamp(2.2rem,5vw,5.4rem);
    line-height: .94;
    margin: 0 0 20px;
    color: var(--navy);
    letter-spacing: -.05em;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: none;
    cursor: pointer;
}

.primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(231,42,47,.28);
}

.secondary {
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--line);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    color: var(--blue);
}

.hero-card {
    position: relative;
    padding: 14px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.hero-card img {
    border-radius: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.intro-strip {
    margin: 0 7vw;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--navy);
    color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-strip img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 24px;
}

.intro-strip h2 {
    font-size: 2rem;
    margin: 0 0 8px;
}

.intro-strip p {
    margin: 0;
    color: #cdddf0;
    font-size: 1.1rem;
}

.section {
    padding: 76px 7vw;
}

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

.section-heading h2 {
    font-size: clamp(2rem,4vw,4rem);
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* UPDATED: Graceful responsive columns */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

/* UPDATED: Equal-height column container framework */
.rental-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(7,26,47,.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rental-card.featured {
    border: 3px solid rgba(231,42,47,.25);
}

.rental-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* UPDATED: Self-expanding internal layout card */
.rental-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rental-body h3 {
    font-size: 1.6rem;
    margin: 0 0 10px;
    color: var(--navy);
}

.rental-body p, .rental-body li {
    color: var(--muted);
    line-height: 1.55;
}

.rental-body ul {
    padding-left: 19px;
}

/* UPDATED: Hard-anchored price label */
.price {
    display: inline-block;
    margin-top: auto;
    color: var(--red);
    font-size: 1.15rem;
    font-weight: 900;
}

.gallery {
    background: #f0f8ff;
}

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

.gallery-grid img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(7,26,47,.1);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: start;
}

.steps {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.steps div {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
}

.steps span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
}

.steps p {
    margin: 0;
    line-height: 1.5;
    color: var(--muted);
}

.info-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 2rem;
    margin: 0 0 12px;
}

.info-card p {
    color: #cdddf0;
    line-height: 1.6;
}

.info-card a {
    display: block;
    background: #fff;
    color: var(--navy);
    padding: 15px 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    margin-top: 12px;
}

.service-area {
    text-align: center;
    background: linear-gradient(135deg,var(--navy),#0c3c6b);
    color: #fff;
}

.service-area h2 {
    color: #fff;
}

.service-area p:last-child {
    max-width: 850px;
    margin: 0 auto;
    color: #d9e8f4;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.contact-copy p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.phone {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    text-decoration: none;
}

.booking-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
}

.booking-form label {
    display: grid;
    gap: 7px;
    font-weight: 900;
    color: var(--navy);
}

input, select, textarea {
    width: 100%;
    border: 1px solid #c9d6e2;
    border-radius: 14px;
    padding: 14px;
    font: inherit;
    background: #fbfdff;
}

.hidden {
    display: none;
}

footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 34px 7vw;
    background: #061524;
    color: #d9e8f4;
}

footer img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

@media(max-width:900px) {
    .site-header {
        position: relative;
        flex-direction: column;
    }
    .hero, .split, .contact-section {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
        padding-top: 44px;
    }
    /* UPDATED: Automatically transitions grid to single columns properly */
    .rental-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .intro-strip {
        flex-direction: column;
        text-align: center;
    }
    .site-header nav {
        font-size: .9rem;
        gap: 14px;
    }
    .rental-card img, .gallery-grid img {
        height: 240px;
    }
}

.simple-contact {
    grid-template-columns: 1fr .75fr;
    background: #fff;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.callout-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.callout-card h3 {
    margin: 0 0 14px;
    font-size: 1.7rem;
    color: var(--navy);
}

.callout-card li {
    margin: 10px 0;
    color: var(--muted);
    font-weight: 800;
}

/* Centered Generator Add-on Layout */
.generator-promo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.generator-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers image and content horizontally */
    text-align: center;     /* Centers headings, paragraphs, and buttons */
    gap: 24px;
}

.generator-card img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.generator-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin: 0 0 12px;
}

.generator-content p {
    color: #cdddf0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 24px;     /* Centers text line constraints */
}

/* ======================================================== */
/* MOBILE RESPONSIVE OVERRIDES (ADD AT THE VERY BOTTOM)     */
/* ======================================================== */
@media (max-width: 900px) {
  /* Force the contact section to stack vertically */
  .contact-section.simple-contact {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  /* Prevent oversized headers from clipping or overlapping rows */
  .contact-copy h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  /* Force the call and text buttons to stack vertically and fill the screen width */
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  /* Expand individual buttons to be full-width thumb targets */
  .contact-buttons .btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  /* Extra mobile adjustment to prevent text clip on tiny phone screens */
  .callout-card {
    padding: 22px;
  }
}

/* Payment methods callout */
.payment-note {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--sky);
    color: var(--navy);
    border: 2px solid var(--red);
    border-radius: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.payment-note p {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.4;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.payment-logos img {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    object-fit: contain;
    padding: 3px 5px;
    background: #fff;
    border: 1px solid rgba(7, 26, 47, .12);
    border-radius: 9px;
}

@media (max-width: 700px) {
    .payment-note {
        padding: 12px;
    }

    .payment-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .payment-logos img {
        height: 38px;
        padding: 3px 5px;
    }
}

@media (max-width: 360px) {
    .payment-note p {
        font-size: .95rem;
    }

    .payment-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .payment-logos img {
        height: 36px;
        padding: 3px 4px;
    }
}
