/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #ffffff;
    color: #111;
    height: 80px;                 /* intentional header height */
    padding: 0 20px;              /* horizontal only */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

header .logo img {
    height: 120px;          /* controlled size */
    width: auto;
    display: block;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}
header nav ul li a:hover {
    color: #0077cc;
    text-decoration: none;
}


header nav ul li a:hover {
    text-decoration: underline;
}


/* Main content */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}
/* Hero section */
.hero {
    position: relative;
    background-image: url('/PICS/301437b9-4d5b-4f8a-b787-8481fd2b4793.png');
    background-size: cover;
    background-position: center;
    padding: 140px 20px;
    color: white;
    width: 100%;
    min-height: 80vh;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* darkness level */
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.hero-content .btn {
    display: inline-block;
    margin: 20px auto 0 auto;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #f1f5f9;
}


.btn {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e55a00;
}
/* How It Works section */
.how-it-works {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0077cc;
}

.how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.how-it-works .step {
    background-color: #f0f0f0;
    padding: 30px 20px;
    border-radius: 10px;
    width: 250px;
}

.how-it-works .step h3 {
    margin-bottom: 15px;
    color: #333;
}

.how-it-works .step p {
    font-size: 0.95rem;
    color: #555;
}
/* Quick Track section */
.quick-track {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.quick-track h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #0077cc;
}

.quick-track form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-track input[type="text"] {
    padding: 12px 15px;
    width: 300px;
    max-width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.quick-track button {
    padding: 12px 25px;
}
/* FAQ section */
.faq {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.faq-image img {
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0077cc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    color: #0077cc;
}

.faq-answer {
    display: none;
    padding: 0 15px 15px 15px;
    color: #333;
    font-size: 0.95rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .how-it-works .steps {
        flex-direction: column;
        gap: 20px;
    }

    .quick-track form {
        flex-direction: column;
        gap: 10px;
    }

    .faq-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .how-it-works .step {
        width: 100%;
    }
}
/* Hamburger menu - mobile */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

#nav-links {
    display: flex;
    gap: 20px;
}

/* Modern full-width mobile nav */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        transition: transform 0.3s ease;
        z-index: 1001;
        position: relative;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    #nav-links li a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #111;
    }

    #nav-links.active {
        display: flex;
    }

    /* Hamburger icon default */
.hamburger::before {
    content: "\2630"; /* Unicode for hamburger ☰ */
    font-size: 2rem;
    color: #111; /* dark icon on white header */
    display: block;
    text-align: center;
}

.hamburger.active::before {
    color: #ffffff;
}

/* When active, turn into X */
.hamburger.active::before {
    content: "\2716"; /* Unicode for X ✖ */
    color: #111; /* dark icon on white header */
    
}

    .hamburger {
        color: #111; /* dark icon on white header */
        background: none;
        border: none;
    }
}
/* Keep logo always visible on mobile */
header .logo {
    position: relative;
    z-index: 1002; /* Higher than the dropdown */
}
/* Tracking page emphasis */
.tracking-section input[type="text"] {
    width: 400px;
    max-width: 100%;
    padding: 18px;
    font-size: 1.2rem;
}

.tracking-section button {
    padding: 18px 35px;
    font-size: 1.1rem;
}
/* Space between tracking form and tracking help */
.tracking-faq {
    margin-top: 80px;
}
.tracking-faq h2 {
    margin-bottom: 30px;
}
/* Tracking result styling */
.tracking-result {
    margin-top: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.tracking-result h2 {
    margin-bottom: 20px;
    color: #0077cc;
}

.tracking-result p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}
/* Top service notice */
.tracking-service {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Processed at */
.processed-at {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #0077cc;
}

/* Horizontal progress line */
.progress-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 30px 0;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
}

/* ETA */
.eta {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* More Details Section */
.more-details {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.more-details button.toggle-details {
    background: #0077cc;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.more-details button.toggle-details:hover {
    background: #005fa3;
}
/* Container wrapping labels and arrow */
.progress-container {
    position: relative;
    width: 80%;
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
}

/* Labels */
.label {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    display: block;
    width: 100%;
}

.origin-label {
    text-align: left;
    margin-bottom: 4px;
    font-size: 12px;
}
.destination-label {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
}

/* Arrow line */
.progress-arrow {
    display: flex;
    justify-content: space-between;
    height: 20px;
    position: relative;
}
.arrow-segment {
    flex: 1;
    height: 14px;
    background: #e5e7eb;
    position: relative;
    border-radius: 999px;
    margin: 0 4px;
    overflow: hidden;
    transition: background 0.4s ease;
}

/* Completed segment green */
.arrow-segment.completed {
    background: linear-gradient(
        90deg,
        #22c55e,
        #4ade80,
        #22c55e
    );
    box-shadow: 0 0 12px rgba(34,197,94,0.45);
}
.arrow-segment.completed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.6),
        transparent 70%
    );
    animation: flow 2s linear infinite;
}

@keyframes flow {
    from { transform: translateX(-100%); }
    to   { transform: translateX(100%); }
}

/* Timeline container - only one vertical line */
.timeline {
    position: relative;
    border-left: 3px solid #ccc; /* single vertical line */
    margin-top: 20px;
    padding-left: 30px; /* space for date + dot + gap */
    overflow: hidden;
    height: 0; /* for JS slide */
    transition: height 0.35s ease;
}

/* Each timeline event wrapper */
.timeline-event {
    display: flex;
    align-items: flex-start; /* critical: keeps dots straight */
    gap: 16px;
    position: relative;
    padding: 12px 0;
}


.timeline-event .event-status {
    font-size: 0.9rem;
    color: #555;
    margin-top: 2px;
}
/* Dot */
.event-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    margin-top: 4px; /* aligns dot with date text */
    flex-shrink: 0;
}
.event-dot::before {
    content: '';
    
}
.event-dot.completed {
    background: #28a745;    /* green for completed */
}
/* Date & Time stacked above dot+status */
.event-date {
    font-weight: 600;
    white-space: nowrap;
}

.event-time {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
}
/* Status box */
.event-status {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #555;
}
.arrow-segment.completed {
    background: #28a745;
}

.event-content {
    display: flex;
    flex-direction: column;
}
.event-location {
    font-size: 0.85rem;
    font-style: italic;
    color: #555;
    margin-top: 2px;
}
/* Wrapper for dot + status */
.event-content-wrapper {
    display: flex;
    align-items: center; /* center dot vertically with status */
    gap: 15px; /* space between dot and content */
    width: 100%;
}
.event-line-dot-status {
    display: flex;
    align-items: flex-start;
    gap: 15px; /* space between dot and status */
    width: 100%;
    position: relative;
}
.event-status-location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.event-status-location strong {
    font-weight: 600;
}

.event-status-location em {
    font-style: italic;
    font-size: 0.85rem;
    color: #555;
}
.event-date,
.event-time {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}
.event-date-block {
    min-width: 90px;      /* keeps all dates aligned */
    text-align: right;
    line-height: 1.2;
}
@media (max-width: 768px) {
    
    .event-status-location {
        font-size: 0.80rem;
    }
    .event-date,
    .event-time {
        font-size: 0.80rem;
    }
}
/* =========================
   FAQ PAGE STYLING
   ========================= */

.faq {
    background: #ffffff;
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #0077cc;
}

.faq p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* FAQ list */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Each FAQ item */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0077cc;
    cursor: pointer;
    padding: 15px 0;
    position: relative;
}

/* + / − icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: "−";
}

/* Answer */
.faq-answer {
    display: none;
    padding: 0 0 15px 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Links inside answers */
.faq-answer a {
    color: #0077cc;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
    .faq h1 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}
/* Contact Page */
.contact-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-section h1 {
    color: #0077cc;
    margin-bottom: 10px;
}

.contact-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.contact-links {
    margin-top: 30px;
    font-size: 0.95rem;
}

.contact-links a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 600;
}

.contact-links a:hover {
    text-decoration: underline;
}
.form-success {
    max-width: 620px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease-in-out;
}

.form-success h2 {
    font-size: 24px;
    color: #1e7f5c;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-errors {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff5f5;
    border-left: 5px solid #e74c3c;
    border-radius: 10px;
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.form-errors li {
    color: #c0392b;
    font-size: 15px;
    margin-bottom: 8px;
}
/* =========================
   SHIPMENT ON HOLD NOTICE
   ========================= */

.tracking-hold {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1px solid #fecaca;
    border-left: 6px solid #dc2626;
    padding: 18px 20px;
    border-radius: 14px;
    margin: 25px 0 30px 0;
    box-shadow: 0 10px 25px rgba(220,38,38,0.08);
     text-align: center;
}

.hold-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 6px;
}
.hold-notice {
    font-size: 0.9rem;
    color: #7f1d1d;
    background: rgba(220,38,38,0.1);
    padding: 10px 14px;
    border-radius: 10px;
    margin-top: 6px;
    display: inline-block;
}
.tracking-hold + .tracking-service {
    margin-top: 10px;
}
.tracking-resumed {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-left: 6px solid #10b981;
    padding: 18px 20px;
    border-radius: 14px;
    margin: 25px 0 30px 0;
    box-shadow: 0 10px 25px rgba(16,185,129,0.12);
}

.tracking-resumed strong {
    color: #065f46;
    font-size: 1.05rem;
}

.tracking-resumed p {
    margin-top: 6px;
    color: #047857;
    font-size: 0.95rem;
}
/* =========================
   NEW CONTINUOUS PROGRESS BAR
   ========================= */

.progress-track {
    position: relative;
    width: 100%;
    height: 16px;
    background: #e5e7eb;
    border-radius: 999px;
    margin: 18px 0 22px 0; /* tighter */
}
.progress-segment {
    position: absolute;
    top: 50%;
    height: 100%;
    background: #e5e7eb;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 999px;
    transition: background 0.4s ease;
}

/* Segment positions */
.seg-1 {
    left: 0%;
    width: 33.33%;
}
.seg-2 {
    left: 33.33%;
    width: 33.33%;
}
.seg-3 {
    left: 66.66%;
    width: 33.33%;
}

/* Completed segments */
.progress-segment.completed {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}


/* Progress nodes (4 fixed points) */
.progress-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #d1d5db;
    border:none;   /* neutral ring, not white */
    box-shadow: 0 9px 30px rgba(0,0,0,0.25);
    z-index: 3;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Node positions */
.progress-node.node-1 { left: 0%; }
.progress-node.node-2 { left: 33.33%; }
.progress-node.node-3 { left: 66.66%; }
.progress-node.node-4 { left: 100%; }

/* Completed state */
.progress-node.completed {
    background: #22c55e;
    transform: translate(-50%, -50%) scale(1.08);
}
/* Final delivery check inside last node */
.progress-node.node-4.completed::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    translate: -50% -60%;
}
/* =========================
   DELIVERED SUCCESS CARD
   ========================= */

.delivered-card {
    margin: 25px auto 10px auto;
    padding: 20px 20px;
    max-width: 400px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(16,185,129,0.18);
}

.delivered-icon {
    width: 54px;
    height: 50px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(34,197,94,0.45);
}

.delivered-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 4px;
}

.delivered-thanks {
    font-size: 0.95rem;
    color: #047857;
}
@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content .btn {
        margin-left: auto;
        margin-right: auto;
    }
    
}
/* =========================
   MODERN 2026 FOOTER
   ========================= */

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 40px 20px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto 24px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand strong {
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 14px;
}

.site-footer .footer-brand img {
    width: 200px;       /* modern, controlled size */
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile footer – clean stack */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px; /* vertical rhythm */
    }

    .footer-brand img {
        height: 56px; /* controlled logo size */
        width: 150px;
    }

    .footer-links {
        flex-direction: column;   /* 👈 critical */
        align-items: center;
        gap: 14px;                /* list spacing */
    }

    .footer-links a {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .footer-bottom {
        margin-top: 10px;
    }
    .site-footer {
        padding-top: 10px; /* was 40px – pulls logo up */
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }
  
    
}
.footer-legal {
    text-align: center;
    margin-bottom: 10px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: underline;
    font-weight: 500;
}

.footer-legal a:hover {
    color: #38bdf8;
}
/* =========================
   PRIVACY & TERMS PAGE
   ========================= */

.privacy-terms {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 24px;
    text-align: left;
}

.privacy-terms h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 30px;
}

.privacy-terms h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 30px;
}

.privacy-terms p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 16px;
}


.privacy-last-updated {
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Mobile refinement */
@media (max-width: 600px) {
    .privacy-terms {
        margin: 30px auto;
        padding: 0 18px;
    }

    .privacy-last-updated {
    margin-top: 50px;

}
}
/* =========================
   REVIEWS SECTION (STEP 1.4)
   ========================= */

.reviews-section {
    background-color: #ffffff;
    padding: 60px 20px;
    margin-top: 40px;
}

.reviews-section h2 {
    font-size: 2rem;
    color: #0077cc;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.review-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    text-align: left;
}

.review-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.review-content h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-country {
    font-size: 0.8rem;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.review-content p {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
}

.review-rating {
    font-size: 0.85rem;
    color: #f5a623;
}
/* =========================
   REVIEWS RESPONSIVE BEHAVIOR
   STEP 1.5
   ========================= */

/* Desktop hover effect */
@media (min-width: 769px) {
    .review-card {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }
}

/* Mobile horizontal scroll */
@media (max-width: 768px) {
    .reviews-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        scroll-behavior: smooth;
    }

    .review-card {
        min-width: 260px;
        flex-shrink: 0;
    }

    /* Hide scrollbar (clean look) */
    .reviews-wrapper::-webkit-scrollbar {
        display: none;
    }

    .reviews-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}
/* =========================
   STATS SECTION (STEP 2.3)
   ========================= */

.stats-section {
    background-color: #f9fafb;
    padding: 70px 20px;
    margin: 40px 0 60px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2rem;
    color: #0077cc;
    margin-bottom: 50px;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
}


