/* --- FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500&display=swap');

/* =========================================================
   COLOR & FONT PALETTE
   ========================================================= */
:root {
    --color-bg-dark: #011a27;
    /* Main background */
    --color-bg-medium: #063852;
    /* Card backgrounds, footer */
    --color-primary-accent: #2c7873;
    /* Teal - accents */
    --color-secondary-accent: #f0810f;
    /* Orange/Gold - CTAs */

    --color-text-light: #e0e0e0;
    --color-text-headings: #ffffff;
    --color-text-muted: #88a1b2;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --border-radius: 8px;

    /* Header sizing used to prevent hero overlap */
    --header-height: 84px;
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        /* shorter header on phones */
    }
}

/* =========================================================
   BASE & RESET
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* Prevent weird horizontal scroll on mobile */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-headings);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-secondary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    /* Keep visible on scroll and reserve layout space */
    top: 0;
    z-index: 1100;
    padding: 0;
    /* we’ll size via min-height for consistency */
    background: rgba(1, 26, 39, 0.7);
    /* translucent so hero is visible but text stays readable */
    backdrop-filter: saturate(140%) blur(6px);
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.site-logo img {
    height: 48px;
    width: auto;
    margin-right: 10px;
    user-select: none;
}

.site-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    user-select: none;
}

.site-logo-text-main {
    color: #391086;
}

.site-logo-text-secondary {
    color: #d9141d;
}

@media (max-width: 768px) {
    .site-logo img {
        height: 40px;
    }

    .site-logo-text {
        font-size: 1.25rem;
    }
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-text-light);
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-text-headings);
    border-bottom-color: var(--color-secondary-accent);
}

/* Mobile Nav */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
    padding: 0.5rem;
}

.mobile-nav-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg-medium);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1150;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .icon-bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-nav-toggle.active .icon-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .icon-bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}



/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background-color: var(--color-bg-medium);
    color: var(--color-text-muted);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-secondary-accent);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: #ff9a2f;
    color: var(--color-bg-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary-accent);
    border-color: var(--color-secondary-accent);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-accent);
    color: var(--color-bg-dark);
}

/* =========================================================
   UTILITIES
   ========================================================= */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 1.6rem + 1.5vw, 2.5rem);
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary-accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.bg-medium {
    background-color: var(--color-bg-medium);
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
/* Fix: prevent the hero text from overlapping/blending with the header on mobile */
.hero-section {
    /* Keep the nice image overlay */
    background: linear-gradient(rgba(1, 26, 39, 0.85), rgba(1, 26, 39, 0.85)),
        url('https://images.unsplash.com/photo-1541443131835-753b6d028262?q=80&w=2070&auto=format&fit=crop') no-repeat center center / cover;

    /* Let content define height; keep it tall enough */
    min-height: 80vh;

    display: flex;
    align-items: center;
    text-align: center;

    /* Critical: push hero content below the header height (+ safe area) */
    padding: calc(var(--header-height) + max(1rem, env(safe-area-inset-top))) 2rem 2.5rem;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

/* Fluid, mobile-friendly title sizes */
.hero-title {
    /* Replaces odd calc(2rem - 2pt) which can behave inconsistently */
    font-size: clamp(1.75rem, 4.2vw + 0.5rem, 3.2rem);
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 1rem + 0.6vw, 1.25rem);
    color: var(--color-text-muted);
    margin: 0 auto 2.5rem;
    max-width: 680px;
}

@media (max-width: 768px) {
    .hero-section {
        /* On phones allow it to grow naturally and still reserve room under header */
        min-height: 72vh;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-top: calc(var(--header-height) + 1.25rem);
    }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--color-bg-medium);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary-accent);
    background-color: rgba(240, 129, 15, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-headings);
}

/* =========================================================
   SHIPMENTS & TESTIMONIALS
   ========================================================= */
.shipments-grid,
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.shipments-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.shipment-card,
.testimonial-card {
    background-color: var(--color-bg-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shipment-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.shipment-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #333;
}

.shipment-card-content {
    padding: 1.5rem;
}

.shipment-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.shipment-card-destination {
    color: var(--color-text-muted);
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--color-primary-accent);
    padding-left: 1.5rem;
    margin: 0 0 1rem 0;
    color: var(--color-text-light);
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-headings);
    display: block;
    text-align: right;
}

/* =========================================================
   PAGE HEADER
   ========================================================= */
.page-header {
    background-color: var(--color-bg-medium);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-content .section-title {
    text-align: left;
}

.story-content .section-title::after {
    margin-left: 0;
}

/* =========================================================
   WHY CHOOSE US / VALUES
   ========================================================= */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--color-bg-dark);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-accent);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper {
    background-color: var(--color-bg-medium);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-bg-dark);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-accent);
    box-shadow: 0 0 0 3px rgba(44, 120, 115, 0.3);
}

.contact-info-card,
.map-card {
    background-color: var(--color-bg-medium);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-headings);
}

.map-card iframe {
    border-radius: var(--border-radius);
    width: 100%;
    height: 250px;
}

.map-link {
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* =========================================================
   FORM SUBMISSION POPUP
   ========================================================= */
.popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%) translateY(20px);
}

.popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* =========================================================
   SHIPMENTS PAGE FILTER
   ========================================================= */
.filter-section {
    padding-bottom: 3rem;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: var(--color-bg-medium);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.control-group {
    flex-grow: 1;
    min-width: 250px;
}

.control-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.control-group select,
.control-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-bg-dark);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
}

/* Country filter custom arrow */
#country-filter {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-bg-medium);
    border-radius: var(--border-radius);
    color: var(--color-text-light);
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0810f' width='24px' height='24px'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#country-filter:hover {
    border-color: var(--color-primary-accent);
}

#country-filter:focus {
    outline: none;
    border-color: var(--color-secondary-accent);
    box-shadow: 0 0 0 3px rgba(240, 129, 15, 0.3);
}

/* =========================================================
   MODAL GALLERY
   ========================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-bg-medium);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 90%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-image-container img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.modal-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-thumbnails img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.modal-thumbnails img:hover,
.modal-thumbnails img.active {
    border-color: var(--color-secondary-accent);
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.modal-next {
    right: 0;
}

.modal-prev {
    left: 0;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Fix modal close button disappearing */
#image-modal .close-modal {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1300;
}

/* Make modal images scale properly on small devices */
#image-modal img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}

/* =========================================================
   SOCIAL BUTTONS
   ========================================================= */
.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.social-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.social-btn-facebook {
    background-color: #1877F2;
    color: #fff;
}

.social-btn-google {
    background-color: #fff;
    color: #000;
}

.social-btn-google:hover {
    transform: translateY(-2px);
}

/* =========================================================
   DEALER CTA (Homepage pointer)
   ========================================================= */
.dealer-cta {
    margin-top: 2.5rem;
    background-color: rgba(44, 120, 115, 0.08);
    border: 1px solid rgba(240, 129, 15, 0.2);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.dealer-cta-text {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-light);
}

.dealer-cta-badge {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background-color: var(--color-secondary-accent);
    color: var(--color-bg-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.dealer-cta-link {
    font-weight: 600;
}

.link-underline:hover {
    text-decoration: underline;
}

/* --- FOR DEALERS SECTION (About page) --- */
.for-dealers-section .section-title {
    margin-bottom: 2rem;
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.dealers-card {
    background-color: var(--color-bg-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.75rem;
}

.dealers-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-accent);
}

.dealers-list,
.dealers-steps {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.dealers-steps li {
    margin-bottom: 0.35rem;
}

.dealers-cta-btn {
    margin-top: 0.75rem;
}

.dealers-footnote {
    margin-top: 1rem;
    color: var(--color-text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .dealer-cta {
        text-align: left;
    }
}

/* --- DEALER CTA BUTTON --- */
.dealer-cta-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: var(--color-secondary-accent);
    color: #111;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.dealer-cta-btn:hover {
    background-color: var(--color-secondary-accent);
    transform: translateY(-2px);
}

#dealer-cta-btn:hover {
    color: #111;
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 992px) {
    .section-padding {
        padding: 4.5rem 0;
    }
}

@media (max-width: 768px) {
    .about-story-container {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 4rem 0;
    }
}













/* ===== Fix Testimonials Layout on Mobile ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    overflow-x: hidden;
    /* prevent horizontal scrolling */
    padding: 0 1rem;
    /* breathing space on small screens */
    box-sizing: border-box;
}

.testimonials-grid>* {
    background-color: var(--color-bg-medium);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        /* single column on small screens */
    }
}