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

body {
    font-family: Arial, sans-serif;
    color: #061936;
    background: #f4f7fb;
}

/* NAVBAR */
.navbar {
    height: 78px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 45px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo-icons {
    font-size: 34px;
}

.logo span {
    display: block;
    font-size: 28px;
}

.logo small {
    display: block;
    color: #1261c9;
    font-size: 12px;
    text-transform: uppercase;
}

nav a {
    text-decoration: none;
    color: #061936;
    font-weight: bold;
    margin: 0 18px;
}

.phone-btn {
    background: #064c9b;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    height: 420px;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    overflow: hidden;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
}

.hero-snow {
    background: #dbeafe;
}

.hero-lawn {
    background: #dcfce7;
}

.hero-content {
    background: linear-gradient(to right, #eef6ff, #f0fff4);
    text-align: center;
    padding: 55px 25px;
}

.tagline {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 52px;
    text-transform: uppercase;
    line-height: 1.05;
}

.hero-content h1 span {
    font-size: 38px;
}

.hero-subtitle {
    font-size: 19px;
    margin: 20px 0 28px;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 6px;
}

.primary-btn {
    background: #1261c9;
    color: white;
}

.secondary-btn {
    background: white;
    color: #061936;
    border: 2px solid #061936;
}

/* MAIN LAYOUT */
.home-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    padding: 35px 45px 25px;
    align-items: start;
}

/* SERVICES */
.services h2,
.gallery h2,
.quote-box h2 {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.services-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.service-card {
    min-height: 250px;
    border-radius: 14px;
    padding: 70px 28px 25px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    background: white;
    overflow: hidden;
}

.snow-card {
    background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), #dbeafe;
}

.lawn-card {
    background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), #dcfce7;
}

.service-icon {
    position: absolute;
    top: -25px;
    left: 35px;
    background: #1261c9;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 5px solid white;
}

.green-icon {
    background: #168a21 !important;
}

.service-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-card li {
    list-style: none;
    margin: 10px 0;
}

.service-card li::before {
    content: "✓ ";
    color: #1261c9;
    font-weight: bold;
}

/* WHY SIDEBAR */
.why-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 10px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-icon {
    background: #1261c9;
    color: white;
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item h4 {
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* GALLERY */


.gallery {
    margin-top: 30px;
}

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

.gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: white;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.before-tag,
.after-tag {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    color: white;
    font-weight: bold;
    font-size: 13px;

    padding: 7px 20px;
    border-radius: 999px;
}

.before-tag {
    background: #061936;
}

.after-tag {
    background: #168a21;
}

.lawn-before,
.lawn-after {
    background: #dcfce7;
}

/* QUOTE BOX */
.quote-box {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    position: sticky;
    top: 100px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    font-size: 14px;
}

.quote-form textarea {
    height: 100px;
}

.quote-form button {
    background: #168a21;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #061936;
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 28px 50px;
    margin-top: 10px;
}

/* TABLET */
@media (max-width: 1200px) {
    .home-layout {
        grid-template-columns: 1fr;
    }

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

    .why-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .quote-box {
        position: static;
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    nav {
        display: none;
    }

    .navbar {
        padding: 0 20px;
    }

    .hero {
        height: auto;
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 180px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .home-layout {
        padding: 25px 20px;
    }

    .service-grid,
    .why-sidebar,
    .gallery-grid,
    footer {
        grid-template-columns: 1fr;
    }

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

    .phone-btn {
        display: none;
    }
}


/* SERVICES PAGE */

.services-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 25, 54, 0.45);
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

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

    text-align: center;
    color: white;
    padding: 20px;
}

.services-hero-overlay p {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services-hero-overlay h1 {
    font-size: 60px;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.services-hero-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.services-hero-overlay span {
    font-size: 18px;
    margin-bottom: 25px;
}

.service-detail {
    max-width: 1100px;
    margin: 35px auto 0;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lawn-section {
    grid-template-columns: 1.2fr 1fr;
    background: linear-gradient(to right, #f0fff4, #ffffff);
    padding-top: 35px;
    padding-bottom: 35px;
    max-width: 100%;
}

.lawn-section .service-text,
.lawn-section .service-photo {
    max-width: 520px;
    margin: auto;
}

.service-text h2 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.service-text p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-text li {
    list-style: none;
    margin: 12px 0;
    font-weight: bold;
}

.service-text li::before {
    content: "✓ ";
    color: #1261c9;
    font-weight: bold;
}

.lawn-section .service-text li::before {
    color: #168a21;
}

.service-photo {
    height: 300px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.snow-photo {
    background: #dbeafe;
}

.lawn-photo {
    background: #dcfce7;
}

.mini-services {
    max-width: 1000px;
    margin: 25px auto 35px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mini-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.09);
}

.mini-icon {
    background: #064c9b;
    color: white;
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-mini {
    background: #168a21;
}

.mini-card h3 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 6px;
}

.mini-card p {
    font-size: 14px;
    line-height: 1.5;
}

.services-before-after {
    max-width: 1100px;
    margin: 35px auto;
    padding: 0 30px;
}

.services-before-after h2 {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

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

.services-gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);

    display: flex;
    flex-direction: column;

    padding: 15px;
    height: auto;
}

.services-gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.bottom-info {
    max-width: 1100px;
    margin: 35px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-area-box,
.cta-box {
    border-radius: 14px;
    padding: 35px;
}

.service-area-box {
    background: white;
}

.cta-box {
    background: #061936;
    color: white;
    text-align: center;
}

.cta-box p {
    margin: 15px 0 25px;
}

.cta-box h3 {
    margin-top: 20px;
}

.area-grid {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-weight: bold;
}

.service-photo {
    height: 300px;
    max-width: 520px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* SERVICES PAGE RESPONSIVE */
@media (max-width: 900px) {
    .services-hero-overlay h1 {
        font-size: 38px;
    }

    .service-detail,
    .lawn-section,
    .mini-services,
    .services-gallery-grid,
    .bottom-info {
        grid-template-columns: 1fr;
    }

    .service-photo {
        height: 220px;
    }
}

/* ABOUT PAGE */

.about-hero {
    height: 360px;
    background: linear-gradient(
        rgba(6, 25, 54, 0.72),
        rgba(6, 25, 54, 0.72)
    ), linear-gradient(to right, #dbeafe, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-overlay p {
    text-transform: uppercase;
    font-weight: bold;
    color: #7cc75f;
    font-size: 18px;
}

.about-hero-overlay h1 {
    font-size: 58px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 12px 0;
}

.about-hero-overlay h3 {
    font-size: 20px;
    font-weight: normal;
    max-width: 650px;
}

.about-story {
    max-width: 1100px;
    margin: 45px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 55px;
    align-items: center;
}

.section-label {
    color: #168a21;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 12px;
}

.center {
    text-align: center;
}

.about-text h2,
.equipment-text h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-text p,
.equipment-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-photo {
    height: 330px;
    background: #e5eef8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.values-section {
    background: #f0f4f8;
    padding: 45px 30px;
    text-align: center;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.values-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #061936;
    color: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.value-card h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-equipment {
    max-width: 1100px;
    margin: 45px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
    align-items: center;
}

.equipment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.equipment-photo {
    height: 260px;
    border-radius: 14px;
    display: flex;
    align-items: end;
    padding: 18px;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.snow-equipment {
    background: #dbeafe;
}

.lawn-equipment {
    background: #dcfce7;
}

.about-cta {
    max-width: 1100px;
    margin: 45px auto;
    background: #061936;
    color: white;
    padding: 35px 45px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 30px;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.about-cta h3 {
    margin-top: 18px;
}

/* ABOUT RESPONSIVE */
@media (max-width: 900px) {
    .about-hero-overlay h1 {
        font-size: 40px;
    }

    .about-story,
    .values-grid,
    .about-equipment,
    .equipment-images,
    .about-cta {
        grid-template-columns: 1fr;
    }

    .about-photo,
    .equipment-photo {
        height: 220px;
    }
}

/* =========================
   HOME HERO BANNER
========================= */

.hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    width: 90%;
    max-width: 900px;

    text-align: center;
    color: white;
}

.hero-overlay .tagline {
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero-overlay h1 {
    color: white;
    font-size: 64px;
    line-height: 0.95;
    text-transform: uppercase;
    margin: 15px 0;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
}

.hero-overlay .hero-subtitle {
    color: white;
    font-size: 22px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 900px) {

    .hero-banner {
        height: 320px;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

    .hero-overlay .hero-subtitle {
        font-size: 16px;
    }

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



/* our services */


.service-card {
    min-height: 285px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 20px 25px;
}

.service-content {
    background: rgba(255,255,255,0.88);
    border-radius: 18px;

    width: 78%;
    max-width: 320px;

    padding: 35px 30px 30px;

    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    backdrop-filter: blur(2px);
}

.service-content h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-content li {
    list-style: none;
    margin: 9px 0;
}

.service-content li::before {
    content: "✓ ";
    color: #1261c9;
    font-weight: bold;
}

.service-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #1261c9;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 5px solid white;
    z-index: 5;
}

.green-icon {
    background: #168a21 !important;
}

.snow-card {
    background-image: url("/static/website/images/snow-removal.PNG");
    background-size: cover;
    background-position: center;
}

.lawn-card {
    background-image: url("/static/website/images/lawn-aeration.PNG");
    background-size: cover;
    background-position: center;
}


/* FINAL SERVICES IMAGE FIX */

.service-detail {
    max-width: 1100px !important;
    margin: 35px auto 0 !important;
    padding: 0 30px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
}

.service-photo {
    height: 300px !important;
    max-width: 520px !important;
    width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

.service-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* FINAL SERVICES BEFORE & AFTER FIX */

.services-before-after {
    max-width: 1200px !important;
    margin: 60px auto !important;
    padding: 0 30px !important;
}

.services-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}
.services-gallery-card {
    position: relative !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
    background: white !important;

    display: flex !important;
    flex-direction: column !important;

    padding: 15px !important;
}

.services-gallery-card img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
}

@media (max-width: 900px) {
    .services-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .services-gallery-card img {
        height: 220px !important;
    }
}

/* FINAL ABOUT HERO IMAGE */

.about-hero {
    position: relative !important;
    height: 420px !important;
    overflow: hidden !important;
    background: none !important;
}

.about-hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.about-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;

    background: rgba(6, 25, 54, 0.55) !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    text-align: center !important;
    color: white !important;
    padding: 20px !important;
}

.about-photo {
    height: 350px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ABOUT EQUIPMENT */

.equipment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.equipment-photo {
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.equipment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.equipment-photo:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .equipment-images {
        grid-template-columns: 1fr;
    }

    .equipment-photo {
        height: 280px;
    }
}
/* =========================================
   NAVBAR LOGO
   ========================================= */

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
    display: block !important;
}

.logo-text span {
    font-size: 28px;
    font-weight: 800;
    color: #06204a;   /* Dark navy blue from logo */
    text-transform: uppercase;
}

.logo-text small {
    font-size: 13px;
    font-weight: 700;
    color: #5a7f2c;   /* Green from logo */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
    height: 80px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

@media (max-width: 900px) {

    .navbar {
        height: 75px;
        padding: 0 20px;
    }

    .logo img {
        height: 42px !important;
        max-width: 150px !important;
    }
}

/* =========================================
   PHONE
   ========================================= */

@media (max-width: 600px) {

    .navbar {
        height: auto;
        padding: 12px 15px;
    }

    .logo img {
        height: 36px !important;
        max-width: 130px !important;
    }
}


/* =========================================
   PRICING PAGE
   ========================================= */


/* =========================================
   PRICING HERO IMAGE
   ========================================= */

.pricing-hero {
    position: relative;
    height: 400px;
    overflow: visible;
}

.pricing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pricing-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 25, 54, 0.55);

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

    text-align: center;
    color: white;

    padding: 20px;
}

.pricing-hero-overlay p {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing-hero-overlay h1 {
    font-size: 58px;
    margin-bottom: 15px;
}

.pricing-hero-overlay h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

.pricing-hero-overlay span {
    opacity: 0.95;
}

@media (max-width: 900px) {

    .pricing-hero {
        height: 320px;
    }

    .pricing-hero-overlay h1 {
        font-size: 38px;
    }
}
.pricing-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.pricing-hero p {
    font-size: 20px;
    opacity: 0.95;
}

/* =========================================
   TOP CARDS
   ========================================= */

.pricing-cards {
    max-width: 1200px;
    margin: -70px auto 50px;
    padding: 0 30px;

    position: relative;
    z-index: 10;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pricing-card h3 {
    margin-bottom: 10px;
    color: #06204a;
}

.pricing-card span {
    color: #666;
    font-size: 14px;
}

.pricing-card h2 {
    font-size: 42px;
    margin: 10px 0;
    color: #168a21;
}

.pricing-card p {
    color: #666;
}

/* =========================================
   TABLES
   ========================================= */

.pricing-table-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

.pricing-table-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #06204a;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.pricing-table thead {
    background: #06204a;
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table tr:hover {
    background: #f8fafc;
}

.pricing-note {
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}

/* =========================================
   EXTRAS + SALT
   ========================================= */

.pricing-grid {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-table-card h2 {
    margin-bottom: 15px;
    color: #06204a;
}

/* =========================================
   DISCLAIMER
   ========================================= */

.pricing-disclaimer {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 30px;
    text-align: center;
}

.pricing-disclaimer p {
    background: #f8fafc;
    border-left: 5px solid #168a21;
    padding: 20px;
    border-radius: 12px;
    color: #555;
}

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

.pricing-cta {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;

    background: linear-gradient(135deg, #06204a, #0b4ea2);
    color: white;

    border-radius: 20px;

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

.pricing-cta h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.pricing-cta p {
    opacity: 0.95;
}

.pricing-cta .primary-btn {
    background: white;
    color: #06204a;
    font-weight: bold;
}

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

@media (max-width: 900px) {

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

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

    .pricing-cta {
        flex-direction: column;
        text-align: center;
    }

    .pricing-hero h1 {
        font-size: 38px;
    }

    .pricing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* =========================================
   GALLERY PAGE
   ========================================= */

.gallery-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

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

.gallery-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 25, 54, 0.55);

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

    color: white;
    text-align: center;
}

.gallery-hero-overlay h1 {
    font-size: 64px;
    margin: 10px 0;
}

.gallery-coming-soon {
    max-width: 1000px;
    margin: -70px auto 60px;
    padding: 0 25px;
    position: relative;
    z-index: 10;
}

.gallery-coming-soon-card {
    background: white;
    border-radius: 22px;
    padding: 60px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.gallery-card h2 {
    color: #06204a;
    font-size: 42px;
    margin-bottom: 20px;
}

.gallery-card p {
    max-width: 700px;
    margin: 12px auto;
    color: #555;
}

.gallery-divider {
    width: 120px;
    height: 4px;
    background: #168a21;
    margin: 30px auto;
    border-radius: 50px;
}

.gallery-card h3 {
    color: #06204a;
    line-height: 1.8;
}

.gallery-features {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 30px;
    text-align: center;
}

.gallery-features h2 {
    color: #06204a;
    margin-bottom: 35px;
}

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

.gallery-feature {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.gallery-feature h3 {
    color: #06204a;
}

.gallery-cta {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 40px;

    background: white;
    border-radius: 22px;

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

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-cta h2 {
    color: #06204a;
}

@media (max-width: 900px) {

    .gallery-features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gallery-card {
        padding: 35px 25px;
    }

    .gallery-hero-overlay h1 {
        font-size: 42px;
    }
}

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

.contact-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 25, 54, 0.55);

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

    text-align: center;
    color: white;

    padding: 20px;
}

.contact-hero-overlay p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-hero-overlay h1 {
    font-size: 64px;
    margin: 10px 0;
}

.contact-hero-overlay h3 {
    font-weight: 400;
}

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

.contact-main {
    max-width: 1200px;
    margin: -70px auto 70px;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;

    position: relative;
    z-index: 10;
}

.contact-info,
.contact-quote-box {
    background: white;
    border-radius: 22px;
    padding: 40px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-quote-box h2 {
    color: #06204a;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-item h3 {
    color: #06204a;
    margin-bottom: 6px;
}

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

.contact-item small {
    color: #666;
}

.contact-quote-box {
    text-align: center;
}

.contact-quote-box p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-quote-box small {
    display: block;
    margin-top: 20px;
    color: #777;
}

/* =========================================
   SOCIAL SECTION
   ========================================= */

.social-section {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 30px;
    text-align: center;
}

.social-section h2 {
    color: #06204a;
    margin-bottom: 10px;
}

.social-section > p {
    color: #666;
    margin-bottom: 35px;
}

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

.social-card {
    background: white;
    border-radius: 18px;
    padding: 35px;

    text-decoration: none;
    color: inherit;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

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

.social-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.social-card h3 {
    color: #06204a;
    margin-bottom: 10px;
}

.social-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-card span {
    color: #168a21;
    font-weight: 600;
}

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

.contact-cta {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 40px;

    background: #06204a;
    color: white;

    border-radius: 22px;

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

.contact-cta h2 {
    margin-bottom: 10px;
}

.contact-cta p {
    opacity: 0.9;
}

.contact-cta .primary-btn {
    flex-shrink: 0;
}

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

@media (max-width: 900px) {

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

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

    .contact-cta {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero-overlay h1 {
        font-size: 42px;
    }
}

