/* ============================================================
   JURASSIC WASTE — CLEAN & MODERN UI KIT
   Full site CSS rebuild (2025)
   Style: Clean, crisp, modern, white + red, premium feel
============================================================ */

/* RESET + BASE ------------------------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Inter", Arial, sans-serif;
    color: #111;
    background: #fff;
    scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }

:root {
    --red: #E60000;
    --red-dark: #C10000;
    --dark: #111;
    --light: #F7F7F7;
    --radius: 14px;

    --shadow-sm: 0 6px 18px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 18px 48px rgba(0,0,0,0.10);
}

/* ============================================================
   NAVIGATION — CLEAN & MODERN
============================================================ */

.nav {
    width: 100%;
    padding: 20px 30px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.nav-links a:hover { color: var(--red); }

.nav-toggle {
    font-size: 1.8rem;
    display: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 68%;
    height: 100vh;
    background: #fff;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: -4px 0 18px rgba(0,0,0,0.12);
    transition: .3s ease-in-out;
    z-index: 999;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    font-size: 1.15rem;
    text-decoration: none;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

@media(max-width: 820px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}

/* ============================================================
   HERO SECTION — FULL BLEED ART + GRADIENT
============================================================ */

.hero-illustration {
    width: 100%;
    height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-illustration::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 50%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.00) 100%
    );
    z-index: 1;
}

.hero-content {
    z-index: 5;
    width: 45%;
    padding: 80px 60px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 15px;
}

.hero-content .subline {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.hero-art {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

@media(max-width: 900px) {
    .hero-illustration {
        height: auto;
        flex-direction: column;
        padding-bottom: 40px;
    }
    .hero-illustration::before { display: none; }
    .hero-content {
        width: 100%;
        padding: 40px 25px 20px;
        color: #111;
    }
    .hero-art {
        position: relative;
        height: auto;
        margin-top: 20px;
    }
}

/* ============================================================
   TRUST BAR
============================================================ */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* ============================================================
   SECTION WRAPPERS
============================================================ */

.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.section-lead {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* ============================================================
   HOW IT WORKS — STEP CARDS
============================================================ */

.hiw-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}

.hiw-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
}

.hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.hiw-step .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.hiw-icon img {
    width: 55px;
    margin: 0 auto 16px;
    opacity: 0.9;
}

/* ============================================================
   SERVICES GRID — IMAGE CARDS
============================================================ */

.services-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}

.service-card {
    background: #fff;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 25px 35px;
}

.service-icon {
    width: 48px;
    margin-bottom: 12px;
    opacity: .85;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
/* Center key section headings + lead text */
#services,
.how-it-works,
.gallery-section,
.faq-section {
    text-align: center;
}
.faq-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: left; /* ensure answers stay left */
}

/* ============================================================
   NAVIGATION – GLASSY (OVERRIDES)
============================================================ */

.nav {
    width: 100%;
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    position: relative;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 999px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-links a:hover {
    background: rgba(0,0,0,0.04);
    color: var(--red);
    transform: translateY(-1px);
}

/* Keep your red CTA looking like a button */
.nav-links .btn-red {
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(230,0,0,0.35);
}

/* Burger icon */
.nav-toggle {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

/* Mobile slide-out menu – glassy */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 360px;
    height: 100vh;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: -8px 0 28px rgba(0,0,0,0.2);
    transition: right .3s ease-in-out;
    z-index: 999;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-weight: 600;
}

@media (max-width: 820px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}
/* ============================================================
   GLASSY NAVIGATION — MODERN 2025
============================================================ */

.nav {
    width: 100%;
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Logo */
.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* Center nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    margin-right: auto;
}

.nav-links a {
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: 0.18s ease;
}

.nav-links a:hover {
    background: rgba(0,0,0,0.05);
    color: var(--red);
}

/* Quote button special */
.nav-quote {
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(230,0,0,0.35);
}

/* WhatsApp button */
.btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    transition: .2s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* ============================================================
   DROPDOWN — DESKTOP
============================================================ */

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

/* Trigger */
.nav-dropdown .dropdown-trigger {
    cursor: pointer;
    padding: 6px 12px; /* gives the trigger a hover area */
    border-radius: 999px;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%; /* sits directly under trigger */
    left: 0;
    width: 220px;

    background: #fff;
    padding: 10px 0;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: 0.18s ease;
    z-index: 200;
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #111;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f3f3f3;
}


/* ============================================================
   MOBILE MENU — GLASSY
============================================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 360px;
    height: 100vh;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: -8px 0 28px rgba(0,0,0,0.2);
    transition: right .3s ease-in-out;
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

/* Mobile dropdown */
.mobile-menu summary {
    font-weight: 700;
    cursor: pointer;
    padding: 8px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #111;
    font-size: 1.1rem;
    margin-left: 6px;
}


/* ============================================================
   LOCATIONS — IMAGE CARDS
============================================================ */

.location-card {
    position: relative;
    display: block;
    height: 130px; /* was 160px */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
    text-decoration: none;
    color: #fff;
}


.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.location-card:hover img {
    transform: scale(1.07);
}

.location-card span {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.location-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* Center text in the Locations section */
#locations {
    text-align: center;
}

/* Optional: centre the grid container itself */
#locations .location-grid {
    justify-content: center;
}

/* ============================================================
   GALLERY
============================================================ */

.gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
}

.gallery-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   REVIEWS
============================================================ */

.reviews-section { text-align: center; }

.reviews-carousel {
    margin: 40px 0;
    display: grid;
    gap: 25px;
}

/* ============================================================
   FAQ GRID
============================================================ */

.faq-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}

.faq-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ============================================================
   CTA FINAL
============================================================ */

.cta-final {
    text-align: center;
}

.cta-final p {
    font-size: 1.2rem;
    opacity: .85;
    margin-bottom: 20px;
}

/* ============================================================
   BUTTONS (Global)
============================================================ */

.btn {
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: .22s ease;
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    border: 2px solid #eee;
    color: var(--dark);
}

.btn-light:hover {
    border-color: #ccc;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: #111;
    color: #fff;
    padding: 60px 30px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    margin-bottom: 40px;
}

.footer-grid h4 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.footer-grid a {
    color: #fff;
    opacity: .7;
    text-decoration: none;
    margin-bottom: 6px;
    display: block;
}

.footer-grid a:hover { opacity: 1; }

.footer-copy {
    text-align: center;
    opacity: .6;
    font-size: .9rem;
}
/* HIW PNG Icon Style */
.hiw-icon-png {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #f2f2f2; /* Match PNG background */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hiw-icon-png img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

/* Fix spacing since we removed step numbers */
.hiw-step h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.hiw-step p {
    opacity: 0.85;
}

.before-after-slider {
    text-align: center;
}

.ba-slider-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
}

.ba-slider {
    display: flex;
    width: 300%;
    animation: baSlide 15s infinite;
}

.ba-slide {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.ba-img {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.ba-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Auto sliding animation */
@keyframes baSlide {
    0% { transform: translateX(0%); }
    33% { transform: translateX(0%); }

    38% { transform: translateX(-100%); }
    66% { transform: translateX(-100%); }

    71% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}
