/*
 * Custom stylesheet to recreate the Drop Truck landing page.
 * Uses semantic elements and responsive layouts while adhering
 * to the original colour palette and typography. There is no
 * JavaScript—only HTML and CSS as requested.
 */

/* CSS reset and basic configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

ul {
    list-style: none;
}

/* Colour variables for easy theming */
:root {
    --yellow: #f6d259;
    --yellow-dark: #d3b248;
    --yellow-light: #fff5ca;
    --dark-bg: #222;
    --text-light: #666;
}



.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ffde34, #ffd700);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 222, 52, 0.3);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1638px;
    margin: 0 auto;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow:
        inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3),
        inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2),
        2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1),
        14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 60px;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.main-nav:hover::before {
    left: 100%;
}

.main-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.005);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.4),
        inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.3),
        2.45px 2.36px 20px -8px rgba(0, 0, 0, 0.15),
        14.7px 14.14px 60px -12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-image {
    width: 45px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-links a:hover {
    color: #ffde34;
}

/* Navigation color states based on scroll position */
.main-header.dark-text .nav-links a {
    color: #333;
}

.main-header.dark-text .nav-links a:hover {
    color: #ffde34;
}

.main-header.white-text .nav-links a {
    color: #fff;
}

.main-header.white-text .nav-links a:hover {
    color: #ffde34;
}

/* Dark header for specific sections */
.main-header.dark-header .nav-links a {
    color: #333;
}

.main-header.dark-header .nav-links a:hover {
    color: #ffde34;
}

.main-nav .cta-button {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    border-radius: 25px;
}

@media (max-width: 700px) {
    .main-header {
        padding: 0 8px;
        top: 8px;
    }
    .main-nav {
        padding: 8px 10px;
        height: auto;
        border-radius: 30px;
    }
    .nav-links {
        gap: 2px;
    }
    .nav-links a {
        font-size: 8px;
        padding: 2px 4px;
    }
    .main-nav .cta-button {
        font-size: 6px;
        padding: 2px 5px;
        border-radius: 18px;
    }
    .logo-image {
        width: 25px;
    }
}

/* HERO SECTION VIDEO BACKGROUND & CONTENT LAYERING */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%; /* changed from 100vw to 100% */
    background-color: #000;
    margin: 0;
    padding: 0;
}
.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 30px;
}
.hero-center-image {
    max-width: 350px;
    width: 100%;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
.book-now-btn.cta-button.large {
    font-size: 1.5rem;
    padding: 0.75em 2em;
    background: #ffde34;
    color: #222;
    border-radius: 32px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: all 0.3s;
}
.book-now-btn.cta-button.large:hover {
    background: #ffe066;
    color: #111;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Responsive adjustments for hero section */
@media (max-width: 700px) {
    .hero-center-image {
        max-width: 220px;
    }
    .book-now-btn.cta-button.large {
        font-size: 1.1rem;
        padding: 0.6em 1.2em;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: #000000; /* Darker fallback background */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
    gap: 30px;
}

.hero-center-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Glass effect button for hero section */
.hero-section .cta-button.large {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3),
        inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2),
        2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1),
        14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.hero-section .cta-button.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.hero-section .cta-button.large:hover::before {
    left: 100%;
}

.hero-section .cta-button.large:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 6px 25px rgba(0, 0, 0, 0.2),
        0 3px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(22px) saturate(115%);
    -webkit-backdrop-filter: blur(22px) saturate(115%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.background-drop-truck {
    /* Pale-yellow dotted grid background */
    --grid: 32px;              /* spacing between dots */
    --dot: 1.25px;             /* dot radius */
    --bg: #f1e073;             /* base yellow */
    --dot-color: #e4d575;      /* dot color (slightly darker) */

    background-color: var(--bg);
    /* One radial dot per tile; the tile repeats to form the grid */
    background-image:
        radial-gradient(circle at center,
        var(--dot-color) 0 var(--dot),
        transparent calc(var(--dot) + 0.01px));
    background-size: var(--grid) var(--grid);
    background-position: 0 0;  /* set to 'center' if you prefer centered alignment */
}

.quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}
.quote-modal.show{
    display: flex;
}
.quote-modal-content {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 32px 24px 24px 24px;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.quote-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    color: #222;
    cursor: pointer;
    font-weight: bold;
}
.quote-label {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-top: 9px;
    margin-bottom: 1px;
    display: block;
    text-align: left;
}
.quote-input {
    width: 260px;
    padding: 10px 18px;
    border-radius: 22px;
    border: none;
    margin-bottom: 10px;
    font-size: 1.1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: center;
}
.quote-submit {
    background: #fff;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 18px;
    padding: 6px 28px;
    font-size: 1.1rem;
    margin-top: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.quote-footer {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
/* ===== Responsive media queries for quote modal ===== */

/* Tablets & below */
@media (max-width: 768px) {
    .quote-modal-content {
        max-width: 92vw;
        min-width: auto;
        padding: 24px 5vw;
    }
    .quote-label { font-size: 20px; text-align: center; }
    .quote-input { width: 80%; max-width: 400px; }
    .quote-submit { font-size: 1rem; padding: 8px 24px; }
}

/* Phones */
@media (max-width: 480px) {
    .quote-modal-content {
        min-width: 90vw;
        max-width: 96vw;
        padding: 18px 6vw;
        border-radius: 14px;
    }
    .quote-label { font-size: 18px; text-align: center; }
    .quote-input { width: 100%; padding: 12px 16px; border-radius: 14px; font-size: 1rem; }
    .quote-submit { width: 100%; padding: 12px 16px; border-radius: 14px; font-size: 1rem; }
    .quote-modal-close { top: 8px; right: 12px; font-size: 26px; }
    .quote-footer { font-size: 1.1rem; }
}

/* Very small phones */
@media (max-width: 360px) {
    .quote-label { font-size: 16px; }
    .quote-footer { font-size: 1rem; }
    .quote-modal-content { padding: 14px 4vw; }
}

.booking-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    width: 600px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

/* Left side - Callback */
.callback-section {
    flex: 1;
    text-align: center;
    padding: 10px;
}

/* Yes/No buttons */
.callback-buttons {
    margin: 15px 0;
    column-gap: 5px;
}
.callback-buttons button {
    background: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px 5px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}
.yes-btn {
    color: black;
    background: black;
}
.no-btn {
    color: black;
    background: white;
}

/* Small note text */
.callback-info {
    font-size: 12px;
    margin-top: 10px;
}

/* Divider line */
.divider {
    width: 1px;
    background: #ccc;
    margin: 0 20px;
}

/* Right side - Booking */
.booking-section {
    flex: 2;
    text-align: center;
    padding: 10px;
}

/* Input Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 11px 0;
}
.form-grid input {
    padding: 10px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.2);
}

.form-grid select {
    padding: 10px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.2);
}

/* Submit Button */
.quote-submit {
    margin-top: 10px;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

/* Help section */
.help-text {
    margin-top: 15px;
    font-size: 14px;
}
.call-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}


/* ===== Responsive media queries for booking container ===== */

/* Tablets & smaller (≤900px): narrower width, tighter padding */
@media (max-width: 900px) {
    .booking-container {
        width: 90%;
        flex-wrap: wrap;
    }
    .divider {
        width: 100%;
        height: 1px;
        background: #ccc;
        margin: 16px 0; /* spacing above/below */
    }
}

/* Phones (≤600px): stack vertically */
@media (max-width: 600px) {
    .booking-container {
        flex-direction: column;
        align-items: center;
        width: 95%;
        padding: 10px;
    }

    .callback-section,
    .booking-section {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 12px;
    }

    .callback-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .callback-buttons button,
    .quote-submit,
    .call-btn {
        width: 100%;
        max-width: 280px;
        margin: 6px auto;
        font-size: 15px;
        padding: 12px 18px;
    }
}

/* Very small phones (≤400px): shrink text a bit */
@media (max-width: 400px) {
    .callback-info { font-size: 11px; }
    .help-text { font-size: 12px; }
    .form-grid input { font-size: 14px; padding: 9px; }
}

/* Success Modal CSS - matches previous modal style */
#successModal.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}
#successModal.show {
    display: flex;
}
.success-box {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 32px 24px 24px 24px;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.success-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
}
.success-box h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.success-box h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.success-box p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}
@media (max-width: 480px) {
    .success-box {
        min-width: 90vw;
        padding: 18px 6vw 18px 6vw;
    }
}


/* Track consignment section */
.background-drop-truck {
    /* Pale-yellow dotted grid background */
    --grid: 32px;              /* spacing between dots */
    --dot: 1.25px;             /* dot radius */
    --bg: #f1e073;             /* base yellow */
    --dot-color: #e4d575;      /* dot color (slightly darker) */

    background-color: var(--bg);
    /* One radial dot per tile; the tile repeats to form the grid */
    background-image:
        radial-gradient(circle at center,
        var(--dot-color) 0 var(--dot),
        transparent calc(var(--dot) + 0.01px));
    background-size: var(--grid) var(--grid);
    background-position: 0 0;  /* set to 'center' if you prefer centered alignment */
}

.track .subtitle {
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 55px);
    width: 100%;
    max-width: 1200px;
    color: #4d4d49;
    margin: 0 auto 2rem auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.track .intro {
    font-family: 'Darker Grotesque', Arial, SANS-SERIF;
    font-weight: 600;
    font-size: clamp(32px, 6vw, 66px);
    width: 100%;
    max-width: 1200px;
    color: #4d4d49;
    margin: 0 auto 2rem auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

/* Statistics section */
.stats {
    padding: 4rem 0;
    /* subtle dotted background */
    background-size: 14px 14px;
}



.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.stat-card {
    width: 100%;                  /* responsive width */
    max-width: 280px;             /* prevents over-stretching */
    padding: 2rem 1rem;
    background: #f1e073;          /* pale yellow fill */
    border-radius: 24px;
    text-align: center;
    box-shadow:
        0px 12px 24px rgba(0, 0, 0, 0.25),
        0px 6px 12px rgba(0, 0, 0, 0.15),
        inset 0px 2px 6px rgba(255, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0px 16px 32px rgba(0, 0, 0, 0.3),
        0px 8px 16px rgba(0, 0, 0, 0.2),
        inset 0px 2px 6px rgba(255, 255, 255, 0.4);
}


.stat-card img {
    width: 220px;
    height: 150px;
    margin-bottom: 1rem;
}

/* Styling for custom statistics icons */
.stat-icon {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 64px;
    height: 64px;
    fill: currentColor;
}

.stat-card h3 {
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 58px;
    color: #4d4d49;
    margin-bottom: -0.7rem;
    font-weight: 700;
}

.stat-card p {
    font-weight: 500;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 24px;
    height: 3.5rem;
    line-height: 1;
    color: #4d4d49;

}

/* About section */
.about {
    padding: 3rem 0;
}

.about .container {
    max-width: 1200px;
    align-items: left;
}

.about p {
    text-align: left;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 24px;
    color:#4d4d49;
}

/* Offerings section */

.offering-card {
    width: 440px;
    min-height: 480px;
    background: rgba(60, 60, 60, 0.38);
    border-radius: 32px;
    padding: 2.2rem 1.5rem 2.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 2px 8px 0 rgba(0,0,0,0.10) inset;
    border: 2.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 12px 32px 12px;
}

.offering-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.22), 0 4px 16px 0 rgba(0,0,0,0.14) inset;
}

.offering-icon img {
    max-width: 80px;
    max-height: 90px;
    margin-bottom: 1.2rem;
}

.offering-card h3 {
    color: #f4d21f;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin: 24px 0 18px 0;
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.offering-card p {
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    margin: 0 0 0 0;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .offering-card {
        width: 98vw;
        max-width: 400px;
        min-height: 420px;
        margin: 0 auto 24px auto;
    }
}

@media (max-width: 700px) {
    .offering-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .offering-card {
        width: 98vw;
        max-width: 98vw;
        min-height: 340px;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .offering-icon img {
        max-width: 90vw;
        max-height: 80px;
    }
    .offering-card h3 {
        font-size: 1.3rem;
        margin: 16px 0 10px 0;
    }
    .offering-card p {
        font-size: 0.95rem;
    }
}
.offerings {
    padding: 2rem 0;
    background-color: #4d4d49;
}

.offerings h2 {
    text-align: center;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #f4d21f;
    margin-bottom: 2rem;
}

.offering-cards {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap; /* responsive */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offering-card {
    width: 320px;
    min-height: 450px;
    /* dark background */
    border-radius: 30px;
    text-align: center;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 4px 8px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.offering-icon img {
    max-width: 380px;
    margin-bottom: -1rem;
}

.offering-card h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.25rem;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffcd00;   /* yellow heading */
}

.offering-card h2 {
    margin-top: -1rem;
    margin-bottom: 0.25rem;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffcd00;   /* yellow heading */
}

.offering-card p {
    font-size: 0.9rem;
    color: #ffffff;      /* light text for dark bg */
    line-height: 1.5;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 19px;
    font-weight: lighter;
}


/* Why choose us section */
.why-title {
    text-align: left;
    color: #4d4d49;
    margin-top: 2rem;
    margin-left: 100px;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    line-height: 1.1;
}

.why-title .big {
    display: block;
    font-size: 84px;   /* bigger for WHY */
    font-weight: 700;

}

.why-title .small {
    display: block;
    font-size: 28px;   /* smaller for DROPTRUCK? */
    font-weight: 700;
}

/* 🔧 DROP-IN STYLES (safe, prefixed, and self-contained)
   Paste into your main stylesheet. You can tweak the CSS variables
   inside .dt-quadrant to change colors, spacing, radius, etc. */
.dt-quadrant{
    /* —— quick theme knobs —— */
    --label: #3c3c3f;         /* axis label color */
    --label-strong:#2f2f32;   /* “High/Low” word */
    --gap: clamp(16px, 4vw, 40px);
    --radius: 22px;

    /* tile colors (creamy khaki like your image) */
    --tile-0:#d9d2a3;         /* highlight (top) */
    --tile-1:#cec68e;         /* body */
    --tile-2:#c4ba7c;         /* shade (bottom) */

    position: relative;
    display: grid;
    place-items: center;
    /* Padding leaves room for outside labels on all four sides */
    padding: clamp(48px, 7vw, 136px) clamp(36px, 6vw, 64px);
    margin: clamp(1px, 4vw, 1px) auto;
    width: min(1000px, 95%);
    /* transparent background so it blends wherever you insert it */
    background: transparent;
    font-family: inherit;
}

/* ===== Axis labels around the grid ===== */
.dtq-axis{
    position: absolute; margin: 2px;
    text-align: center; line-height: 1.06;
    color: var(--label); font-weight: 800;
    letter-spacing: .3px;
    font-size: clamp(16px, 2.6vw, 32px);
}
.dtq-axis > span{ display:block; }
.dtq-strong{ color: var(--label-strong); }

/* positions */
.dtq-axis--top    { top: clamp(8px, 2.4vw, 0px); left: 50%; transform: translateX(-50%); }
.dtq-axis--bottom { bottom: clamp(8px, 2.4vw, 0px); left: 50%; transform: translateX(-50%); }
.dtq-axis--left   { left: clamp(6px, 2.6vw, 24px); top: 50%; transform: translateY(-50%); text-align:left; }
.dtq-axis--right  { right: clamp(6px, 2.6vw, 0px); top: 50%; transform: translateY(-50%); text-align:right; }

/* ===== 2×2 grid ===== */
.dtq-grid{
    display: grid;
    grid-template-columns: 1fr 0fr;
    grid-template-rows: 0fr 0fr;
    gap: var(--gap);
    max-width: 960px;
}

/* ===== Tiles: soft, rounded, neumorphic look ===== */
.dtq-tile{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1 / 1;                 /* keeps perfect squares */
    max-width: 220px;
    max-height: 220px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    box-shadow:
        0 14px 28px rgba(0,0,0,.45),        /* outer depth */
        0 32px 60px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.55),/* top inner highlight */
        inset 0 -16px 26px rgba(0,0,0,.18), /* bottom inner shade */
        inset 0 18px 26px rgba(255,255,255,.08);
    outline: 1px solid rgba(255,255,255,.08); /* faint rim */
}

/* extra glow on the edge for a pillowy feel */
.dtq-tile::after{
    content:"";
    position:absolute; inset:-1px;
    border-radius:inherit;
    background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0));
    opacity:.35; filter: blur(2px);
    pointer-events:none;
}

.tile-body {
    text-align: center;
}
.tile-body h3{
    margin: 0 0 6px 0;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--label-strong);
    font-weight: 700;
    line-height: 1.1;
}

.tile-body h3{
    margin: 0 0 6px 0;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--label-strong);
    font-weight: 700;
    line-height: 1.1;
}
.tile-body p{
    margin: 0;
    font-size: clamp(12px, 1.5vw, 16px);
    color: var(--label);
    font-weight: 600;
    line-height: 1.4;
}

.why-footer {
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #292727;
    max-width: 800px;
    margin-left: 150px;
}



/* ===== Small screens: tighter gaps, readable labels ===== */
/* ===== RESPONSIVE MEDIA QUERIES — REPLACE YOUR EXISTING @media BLOCKS WITH THESE ===== */

/* Large / desktop-ish: slightly bigger tiles, keep 2×2 */
@media (min-width: 900px) {
    .dt-quadrant {
        padding: clamp(40px, 6vw, 140px) clamp(28px, 6vw, 64px);
        width: min(1100px, 96%);
    }
    .dtq-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        grid-auto-rows: minmax(180px, 1fr);
        gap: var(--gap);
    }
    .dtq-tile { max-width: 320px; aspect-ratio: 1 / 1; }
    .dtq-axis { font-size: clamp(16px, 1.6vw, 30px); }
}

/* Tablet / narrow desktop: keep 2×2 but allow tiles to breathe */
@media (max-width: 899px) and (min-width: 701px) {
    .dt-quadrant { padding: clamp(32px, 5.2vw, 100px) clamp(20px, 5vw, 48px); }
    .dtq-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        grid-auto-rows: minmax(160px, 1fr);
        gap: clamp(14px, 3.8vw, 32px);
    }
    .dtq-tile { max-width: 280px; aspect-ratio: 1 / 1; padding: clamp(12px, 2.2vw, 18px); }
    .dtq-axis--left, .dtq-axis--right { font-size: clamp(14px, 2.2vw, 20px); }
}

/* Mobile / small screens: stack to one column, remove forced squares */
@media (max-width: 700px) {
    .dt-quadrant {
        padding: clamp(60px, 6vw, 44px) clamp(12px, 6vw, 22px);
        width: 60%;
    }
    .dtq-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: clamp(10px, 4vw, 18px);
        align-items: stretch;
        justify-items: stretch;
    }
    .dtq-tile {
        aspect-ratio: auto;    /* allow natural height */
        width: 100%;
        max-width: 100%;
        padding: clamp(14px, 3.6vw, 20px);
        margin: 0;
    }

    /* Hide left/right axis labels to avoid overlap on narrow screens */
    .dtq-axis--left, .dtq-axis--right { display: none; }

    .dtq-axis--top {
        left: 50%;
        bottom: 20px;
        padding: 2px 0;
        transform: translateX(-50%);
        text-align: center;
        font-size: clamp(13px, 3.2vw, 20px);
    }

    .dtq-axis--bottom {
        left: 50%;
        top: 500px;
        padding: 2px 0;
        transform: translateX(-50%);
        text-align: center;
        font-size: clamp(13px, 3.2vw, 20px);
    }

    /* footer and text sizing tweaks for legibility */
    .why-footer { font-size: clamp(18px, 5vw, 28px); margin-left: 0; padding: 0 clamp(8px, 4vw, 20px); text-align: center; }
    .tile-body h3 { font-size: clamp(15px, 3.6vw, 20px); }
    .tile-body p  { font-size: clamp(12px, 3vw, 15px); }
}

/* Very small phones: tighten spacing further */
@media (max-width: 420px) {
    .dt-quadrant { padding: clamp(12px, 5vw, 20px); }
    .tile-body h3 { font-size: clamp(14px, 4vw, 18px); }
    .tile-body p  { font-size: clamp(11px, 3.4vw, 14px); }
    .why-footer { font-size: clamp(16px, 6vw, 22px); }
}



/* How it works section */
.how {
    padding: 2rem 0;
    /*!* dotted pattern *!
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.4) 1px,
        transparent 1px
    );*/
    background-size: 14px 14px;
}

.how-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #4d4d49;
}

.how-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-step {
    border-radius: 16px;
    padding: 1rem 1.15rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.how-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.how-step-image {
    width: 170px;
    height: 190px;
    margin-bottom: 0.5rem;
    transition: transform 0.2s;
}

.how-step-title {
    font-family: 'Darker Grotesque', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4d4d49;
    letter-spacing: 0.5px;
}

.how-step-description {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}



/* styles.css */
/* ================================
   Design tokens (easy to retheme)
   ================================ */
:root{
    --bg: #484846;                 /* dark gray backdrop like reference */
    --text: #ffffff;               /* base text on dark bg */
    --accent: #f4d21f;             /* yellow heading & avatar */
    --card-bg: #ffffff;            /* testimonial card background */
    --card-shadow: 0 8px 20px rgba(0,0,0,.18);
    --blue: #1b6dff;               /* star color (clean blue) */
    --muted: #6b6b6b;              /* quote/author subtle */
    --rail-pad: clamp(16px, 5vw, 36px);
    --radius: 14px;
    --gap: clamp(14px, 4vw, 40px);
}

/* Global resets & base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* Layout container for consistent horizontal rhythm */
.container{
    max-width: 12000px;
    margin-inline: auto;
    padding-inline: var(--rail-pad);
}

/* ===========================
   Testimonials section styles
   =========================== */
.testimonials{
    border-bottom: 3px solid var(--accent); /* thin yellow baseline to match mock */
    padding-block: clamp(28px, 6vw, 28px);
    position: relative;
    background-color:#4d4d49;
}

.testimonials__title{
    /* Centered, bold yellow title */
    text-align: center;
    color: var(--accent);
    font-size: clamp(20px, 2.3vw, 64px);
    font-weight: 800;
    letter-spacing: .3px;
    margin: 0 0 clamp(22px, 5vw, 36px);
}

/* Horizontal rail that holds all cards */
.testimonials__rail{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;     /* cards align by bottom edge like the reference */
    gap: var(--gap);
    padding-block: clamp(6px, 2vw, 14px);
    overflow: visible;
}

/* ========== Testimonial Card ========== */
.t-card{
    position: relative;
    background: var(--card-bg);
    color: #2b2b2b;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    width: clamp(130px, 18vw, 260px);
    padding-top: 38px; /* space for avatar overlap */
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Emphasize the center card */
.t-card--lg{
    transform: scale(1.12);
    width: clamp(170px, 22vw, 320px);
}

/* Side scales to mimic perspective */
.t-card--sm{ transform: scale(.95); }
.t-card--xs{
    transform: scale(.8);
    opacity: .95;
}

/* Hover focus affordance (keyboard & mouse) */
.t-card:focus-within,
.t-card:hover{
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    outline: none;
}

/* Circular avatar that sits on the top edge */
.t-card__avatar{
    position: absolute;
    inset: -26px auto auto 50%;
    transform: translateX(-50%);
    width: clamp(34px, 5.8vw, 70px);
    aspect-ratio: 1;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 4px 0 rgba(0,0,0,.08);
}

/* Inner card content */
.t-card__body{
    padding: 14px 16px 16px;
    text-align: center;
}

.t-card__quote{
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1.45;
    color: #444;
    margin: 0 0 8px;
}

.t-card__author{
    font-size: clamp(11px, 1vw, 13px);
    color: var(--muted);
    margin: 0 0 10px;
}

/* Star rating row */
.t-card__stars{
    display: inline-flex;
    gap: 4px;
    font-size: clamp(12px, 1.3vw, 16px);
    line-height: 1;
    user-select: none;
}

/* Stars: blue like the reference; dim 'off' star; half style via gradient clip */
.star{
    color: var(--blue);
    font-weight: 700;
    text-shadow: 0 0 .01px currentColor; /* crisper rendering */
}
.star--off { color: #b8ccff; }

.star--half{
    color: #b8ccff;
    position: relative;
}
.star--half::before{
    content: "★";
    color: var(--blue);
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

/* ===========================
   Responsiveness
   =========================== */

/* On medium screens, allow wrapping and keep center emphasis */
@media (max-width: 950px){
    .testimonials__rail{
        justify-content: center;
        flex-wrap: wrap;
    }
    .t-card--lg{ order: 0; }
    .t-card--sm, .t-card--xs{ order: 1; }
}

/* On narrow phones, create a horizontally scrollable rail to preserve sizing */
@media (max-width: 700px) {
    .testimonials__rail {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        padding-left: 4vw; /* small left padding for balance, not hiding first card */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent) #4d4d49;
    }
    .testimonials__rail::-webkit-scrollbar {
        height: 6px;
        background: #4d4d49;
    }
    .testimonials__rail::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 3px;
    }
    .t-card {
        scroll-snap-align: center;
        min-width: 78vw;
        max-width: 90vw;
        margin-right: 12px;
        box-sizing: border-box;
    }
    .testimonials__rail .t-card:first-child {
        margin-left: 0; /* ensure first card is flush with left edge */
    }
    .t-card--lg { min-width: 86vw; }
    .t-card--sm { min-width: 70vw; }
    .t-card--xs { min-width: 62vw; }
    .t-card:hover { transform: none; } /* avoid jump while scrolling */
}

/* High contrast mode considerations */
@media (prefers-contrast: more){
    .t-card__avatar{ box-shadow: none; }
    .t-card{ box-shadow: 0 0 0 2px rgba(0,0,0,.2); }
}

/* Contact section */
.contact {
    padding: 4rem 0;
}

.contact .container {
    display: flex;
    gap: 15rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}
.contact h2{
    font-family: 'Inter', 'sans-serif';
    font-size: 39px;
    font-weight: 700;
    color: #050505;
    margin-bottom: 1rem;
}

/* ROW OF PILL INPUTS ---------------------------------------------------- */
.row-pill {
    display: flex;
    gap: 18px;
    margin-top:50px;
    margin-bottom: 22px;
}

/* pill inputs style (rounded, inner glow, glass effect) */
.pill {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.18); /* soft border */
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow:
        0 6px 18px rgba(0,0,0,0.06) inset,            /* inner shadow for depth */
        0 8px 18px rgba(0,0,0,0.06);                  /* subtle outer shadow */
    color: rgba(20,20,20,0.45);
    font-size: 13px;
    outline: none;
    transition: all 160ms ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* placeholder slightly darker so it reads like your image */
.pill::placeholder { color: rgba(20,20,20,0.30); }

/* focus effect: brighten inner glow */
.pill:focus {
    box-shadow:
        0 6px 18px rgba(0,0,0,0.06) inset,
        0 10px 30px rgba(0,0,0,0.08);
    border-color: rgba(255,255,255,0.35);
    color: #111;
}

/* LARGE MESSAGE BOX (glass card) ---------------------------------------- */
.message-wrap {
    position: relative;
    margin-bottom: 28px;
    border-radius: 22px;
    padding: 18px;
    /* background uses subtle translucent layer to create frosted glass effect */
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
        0 18px 30px rgba(0,0,0,0.09),     /* outer shadow */
        0 -6px 18px rgba(255,255,255,0.02) inset, /* top inner highlight */
        0 6px 12px rgba(0,0,0,0.04) inset; /* subtle inner depth */
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    min-height: 180px;
}

/* labels inside the big box: top-left and top-right like the image */
.message-wrap .left-label{
    display: inline-block;
    font-size: 14px;
    color: rgba(20,20,20,0.30); /* muted label color */
    margin-bottom: 12px;
}

/* place the two labels on same row with space-between */
.message-wrap .left-label { float: left; }

/* make sure labels don't disturb layout */
.message-wrap::after { content:""; display:block; clear:both; }

/* big textarea style */
.glass-textarea {
    width: 100%;
    resize: none;
    border: none;
    outline: none;
    padding: 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(10,10,10,0.5);
    background: transparent; /* background of parent provides glass */
    /* add an inner "soft glow" around textarea area */
    box-shadow:
        0 8px 20px rgba(0,0,0,0.06) inset,
        0 2px 0 rgba(255,255,255,0.02) inset;
}

/* placeholder style for textarea */
.glass-textarea::placeholder { color: rgba(20,20,20,0.22); }

/* TRANSPARENT / GLASS SUBMIT BUTTON ------------------------------------- */
.glass-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 26px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color: rgb(0, 0, 0); /* muted text similar to image */
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform 140ms ease, opacity 140ms ease;
}

/* pressed / hover effect */
.glass-btn:hover { transform: translateY(-2px); opacity: 0.98; }
.glass-btn:active { transform: translateY(0); opacity: 0.92; }

.contact-map {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: auto;

}
/* ===== RESPONSIVE MEDIA QUERIES FOR CONTACT SECTION ===== */

/* Tablet & below (stack layout, reduce gap) */
@media (max-width: 900px) {
    .contact .container {
        flex-direction: column;
        gap: clamp(1.5rem, 5vw, 2.5rem);
        padding: 0 18px;
    }

    .contact-info,
    .contact-map {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .row-pill {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
        margin-bottom: 18px;
    }

    .glass-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 18px;
    }
}

/* Very small screens (phones under 420px) */
@media (max-width: 420px) {
    .contact h2 { font-size: clamp(22px, 6vw, 28px); }
    .pill { font-size: 13px; padding: 10px 14px; }
    .glass-textarea { min-height: 140px; padding: 12px; }
}




/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 70px 20px 0; /* Remove bottom padding */
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--yellow);
    font-weight: 600;
}

.footer-col p,
.footer-col li a {
    font-size: 0.9rem;
    color: #bbb;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #bbb;
}

/* ===== Footer ===== */
.site-footer{
    padding: 70px 20px 0; /* Remove bottom padding */
    background-color: #3a3a36;
    color: #fff;
}

.footer-grid{
    max-width: 1200px;
    margin: 0 auto 0; /* Remove bottom margin */
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.6fr 80px; /* text | links | contact | socials */
    gap: 56px 48px;
    align-items: start;
}

.brand-copy img {
    margin-bottom: 20px;
    max-width: 180px;
}

/* Left intro text */
.brand-copy p{
    line-height:1.6;
    margin:0 0 18px;
    color:floralwhite;
}
.brand-copy p strong{
    color:var(--text); font-weight:600;
}

/* Linked pages */
.col-title{
    letter-spacing:.02em;
    text-transform:uppercase;
    font-weight:700;
    font-size:20px;
    margin:0 0 18px;
}
.link-list li{
    padding:10px 0;
    color:var(--text);
    opacity:.95;
}
.link-list li a:hover{opacity:1;text-decoration:underline}

/* Contact */
.contact-item{
    display:flex; gap:14px; align-items:flex-start;
    padding:8px 0 14px;
    color:antiquewhite;
}
.contact-item .ico{
    width:28px; height:28px; min-width:28px;
    border-radius:8px;
    display:grid; place-items:center;
    background:transparent; color:var(--accent);
    font-size:18px;
    margin-top:2px;
}
.contact-item .txt{
    color:ghostwhite; line-height:1.55;
}
.contact-item .txt b{color:var(--text); font-weight:600}
.contact-item a{color:var(--text)}
.availability{color:whitesmoke}

/* Socials (vertical) */
.socials{
    display:flex; flex-direction:column; gap:28px; align-items:center;
}
.socials a{
    width:48px; height:48px; display:grid; place-items:center;
    border-radius:50%;
    background:#464744; color:#ffffff;
    font-size:22px;
    transition:transform .15s ease, opacity .15s ease;
}
.socials a:hover{transform:translateY(-2px); opacity:.95}
.socials .fb{background:#1877F2}
.socials .ig{
    background: radial-gradient(circle at 30% 110%, #feda75, #fa7e1e 35%, #d62976 55%, #962fbf 75%, #4f5bd5);
}
.socials .li{background:#0A66C2}
.socials .yt{background:#FF0000}

/* Divider + bottom note */
.footer-divider{
    max-width:1200px; margin:0 auto; height:2px;
    background:linear-gradient(90deg, transparent 0, var(--line) 10%, var(--line) 90%, transparent 100%);
    opacity:.55;
}
.footer-bottom{
    max-width : 1200px;
    margin : 0 auto 0; /* Remove top margin */
    text-align :center; color:var(--muted); font-size:14px;
    padding:0 0 4px; /* Reduce bottom padding */
}

/* ===== Responsive ===== */
@media (max-width:1100px){
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }
    .socials{flex-direction:row; justify-content:flex-start}
}
@media (max-width:700px){
    .site-footer{padding:48px 16px 20px}
    .footer-grid{
        grid-template-columns: 1fr;
        gap:28px;
    }
    .socials{justify-content:flex-start}
}

.pac-container {
    z-index: 10000 !important;
}
