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

:root {
    --primary-red: #E31E24;
    --dark-red: #C41E3A;
    --primary: #E31E24;
    --accent: #1a1a1a;
    --text: #1a1a1a;
    --text-light: #666;
    --border: #e0e0e0;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --dark-bg: #2c3e50;
    --gray-bg: #f5f7fa;
    --fedex-purple: #4d148c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.top-bar-item svg,
.top-bar-item span:first-child {
    font-size: 1.1rem;
}

/* Scrolling animation for mobile */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 968px) {
    .top-bar {
        padding: 0.6rem 0;
        font-size: 0.85rem;
    }
    
    .top-bar .container {
        gap: 1.5rem;
    }
    
    .top-bar-item {
        gap: 0.4rem;
    }
    
    .top-bar-item span:first-child {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }
    
    .top-bar .container {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 3rem;
        animation: scroll-left 20s linear infinite;
        width: max-content;
    }
    
    /* Duplicate items for seamless loop */
    .top-bar .container::after {
        content: '🚚 SAME DAY DELIVERY ⏱️ QUOTE WITHIN TWO MINUTES 🔒 FULLY INSURED ✓ 40 YEARS EXPERIENCE';
        display: flex;
        align-items: center;
        gap: 3rem;
        margin-left: 3rem;
        white-space: nowrap;
    }
    
    .top-bar-item {
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.7rem;
    }
    
    .top-bar .container {
        gap: 2.5rem;
        animation: scroll-left 15s linear infinite;
    }
    
    .top-bar .container::after {
        gap: 2.5rem;
        margin-left: 2.5rem;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--text);
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-cta {
    background: var(--primary-red);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle:hover span {
    background-color: var(--dark-red);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 3px solid var(--primary-red);
    flex-direction: column;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    display: flex;
    max-height: 600px;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu a:hover::before,
.mobile-menu a:active::before {
    transform: scaleY(1);
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: linear-gradient(90deg, rgba(227, 30, 36, 0.1) 0%, transparent 100%);
    color: var(--primary-red);
    padding-left: 2.5rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.85) 0%, rgba(196, 30, 58, 0.85) 100%), url('../images/slide2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.hero p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero.home-hero {
    background: transparent;
    color: white;
    padding: 10rem 0;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide:nth-child(1) {
    background-image: url('../images/slide.webp');
}

.hero-slide:nth-child(2) {
    background-image: url('../images/slide2.jpg');
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.6) 0%, rgba(196, 30, 58, 0.6) 100%);
    z-index: 1;
}

@keyframes slideBackground {
    0%, 100% {
        background-image: linear-gradient(135deg, rgba(227, 30, 36, 0.6) 0%, rgba(196, 30, 58, 0.6) 100%), url('../images/slide.webp');
    }
    50% {
        background-image: linear-gradient(135deg, rgba(227, 30, 36, 0.6) 0%, rgba(196, 30, 58, 0.6) 100%), url('../images/slide2.jpg');
    }
}

.hero.home-hero h1 {
    color: white;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero.home-hero p {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero.track-hero {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.6) 0%, rgba(196, 30, 58, 0.6) 100%), url('../images/trackpage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0;
    min-height: 600px;
}

.hero.track-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero.track-hero p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.search-form {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    min-width: 0;
}

.search-form button {
    padding: 1.25rem 3rem;
    background: var(--text);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.search-form button:hover {
    background: #000;
    transform: scale(1.02);
}

.home-hero .search-form {
    max-width: 800px;
}

.home-hero .search-form input {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
}

.home-hero .search-form button {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.track-hero .search-form {
    max-width: 800px;
}

.track-hero .search-form input {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
}

.track-hero .search-form button {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: white;
}

.btn-secondary {
    background-color: var(--text);
    color: white;
}

.btn-secondary:hover {
    background-color: #000;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* ===== ALERTS ===== */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-color: #27ae60;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border-color: #e74c3c;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--fedex-purple);
    box-shadow: 0 0 0 3px rgba(77, 20, 140, 0.1);
}

.form-large {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 2rem auto;
}

fieldset {
    border: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

fieldset:last-of-type {
    border-bottom: none;
}

legend {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== TRACK CONTAINER ===== */
.track-container {
    background: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.track-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 2rem;
}

.delivery-info {
    margin-top: 2rem;
}

.delivery-info h2 {
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--fedex-purple);
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
}

.delivery-info h3 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--fedex-purple);
}

.info-item label {
    font-weight: 600;
    color: var(--fedex-purple);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.info-item span {
    color: var(--text);
    font-size: 1rem;
}

.info-item span.status-badge {
    color: #28a745 !important;
}

/* ===== STATUS BADGES ===== */
.status-badge {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    background-color: transparent;
    color: #28a745;
}

.status-pending {
    background-color: transparent;
    color: #28a745;
}

.status-processing {
    background-color: transparent;
    color: #28a745;
}

.status-in-transit {
    background-color: transparent;
    color: #28a745;
}

.status-out-for-delivery {
    background-color: transparent;
    color: #28a745;
}

.status-delivered {
    background-color: transparent;
    color: #28a745;
}

.status-failed-delivery {
    background-color: transparent;
    color: #28a745;
}

.status-returned {
    background-color: transparent;
    color: #28a745;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background-color: var(--fedex-purple);
    border-radius: 50%;
    margin-right: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--fedex-purple);
}

.timeline-content {
    flex: 1;
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--fedex-purple);
}

.timeline-content h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-content small {
    color: #999;
}

/* ===== ADMIN CONTAINER ===== */
.admin-container {
    background: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    border: 1px solid var(--border);
    min-height: auto;
}

.admin-container h1 {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--fedex-purple);
    color: white;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.stat-card h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ===== TABLES ===== */
.deliveries-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.deliveries-table thead {
    background-color: var(--fedex-purple);
    color: white;
}

.deliveries-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.deliveries-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.deliveries-table tbody tr:hover {
    background-color: var(--light-bg);
}

.deliveries-table strong {
    color: var(--fedex-purple);
}

/* ===== LOGIN CONTAINER ===== */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-bg);
}

.login-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 400px;
}

.login-box h1 {
    text-align: center;
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.login-box form {
    margin-bottom: 1rem;
}

.demo-creds {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ===== DELIVERY SUMMARY ===== */
.delivery-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--fedex-purple);
}

.delivery-summary h2 {
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ===== ACTIONS ===== */
.actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--fedex-purple);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    opacity: 0.9;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 6rem 0;
    background: white;
}

.why-choose-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: white;
    padding: 3rem 2.5rem;
    border-left: 6px solid var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--dark-red);
    transition: height 0.3s ease;
}

.why-item:hover::before {
    height: 100%;
}

.why-item:hover {
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.2);
    transform: translateX(10px);
    border-left-width: 6px;
}

.why-item h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .why-list {
        gap: 1.5rem;
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    
    .why-item {
        padding: 2rem 1.5rem;
        border-left-width: 5px;
    }
    
    .why-item:hover {
        transform: translateX(5px);
    }
    
    .why-item h3 {
        font-size: 1.1rem;
    }
    
    .why-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section h2 {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }
    
    .why-item {
        padding: 1.5rem 1.25rem;
    }
    
    .why-item h3 {
        font-size: 1rem;
    }
    
    .why-item p {
        font-size: 0.9rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 6rem 0;
    background: var(--gray-bg);
    text-align: center;
}

.services-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.services-section > p {
    color: var(--text-light);
    margin-bottom: 4rem;
    font-size: 1.15rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.2);
}

.service-item h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }
    
    .services-section > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .services-list {
        margin: 0 1rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-item:hover {
        transform: translateY(-5px);
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section h2 {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }
    
    .services-section > p {
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 1.5rem 1.25rem;
    }
    
    .service-item h3 {
        font-size: 1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 5rem 0 8rem;
    background: white;
    text-align: center;
    overflow: visible;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 5rem;
    color: var(--text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.trust-semicircle-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 500px;
}

.semicircle-background {
    width: 100%;
    height: 400px;
    background: #5a6d7e;
    border-radius: 700px 700px 0 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.06) 20px,
            rgba(0, 0, 0, 0.06) 40px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            rgba(0, 0, 0, 0.03) 3px,
            transparent 3px,
            transparent 20px
        );
    background-size: 100% 100%;
}

.trust-content-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1100px;
    z-index: 10;
}

.trust-item {
    text-align: center;
}

.trust-left,
.trust-right {
    color: white;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trust-left .trust-icon,
.trust-right .trust-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.trust-left h3,
.trust-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-left p,
.trust-right p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 250px;
}

.trust-center {
    position: relative;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-banner {
    background: linear-gradient(180deg, #e74c3c 0%, #d62c1a 50%, #c0392b 100%);
    color: white;
    padding: 3rem 3rem 5rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    width: 280px;
    transition: all 0.3s ease;
}

.trust-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.5), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.trust-banner .trust-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trust-banner p {
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.85rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.trust-pointer-bottom {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    border: 8px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .trust-content-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .trust-left h3,
    .trust-right h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .trust-banner {
        width: 220px;
        padding: 2.5rem 2rem 4rem;
    }
    
    .trust-banner h3 {
        font-size: 1.4rem;
    }
    
    .trust-left p,
    .trust-right p,
    .trust-banner p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .trust-left .trust-icon,
    .trust-right .trust-icon,
    .trust-banner .trust-icon {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0 4rem;
    }
    
    .trust-section h2 {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
        letter-spacing: 0.5px;
    }
    
    .trust-semicircle-wrapper {
        min-height: auto;
        padding: 0 1rem;
    }
    
    .semicircle-background {
        height: auto;
        border-radius: 0;
        padding: 3rem 0;
        background-image: 
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 15px,
                rgba(0, 0, 0, 0.06) 15px,
                rgba(0, 0, 0, 0.06) 30px
            ),
            repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.03) 0px,
                rgba(0, 0, 0, 0.03) 2px,
                transparent 2px,
                transparent 15px
            );
    }
    
    .trust-content-grid {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .trust-left,
    .trust-right {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 12px;
        padding: 2rem 1.5rem;
        backdrop-filter: blur(5px);
    }
    
    .trust-left h3,
    .trust-right h3 {
        font-size: 1.5rem;
    }
    
    .trust-left p,
    .trust-right p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .trust-banner {
        clip-path: none;
        border-radius: 12px;
        width: 100%;
        padding: 2.5rem 2rem;
    }
    
    .trust-banner h3 {
        font-size: 1.5rem;
    }
    
    .trust-banner p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .trust-pointer-bottom {
        display: none;
    }
}

@media (max-width: 480px) {
    .trust-section h2 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .trust-left,
    .trust-right,
    .trust-banner {
        padding: 1.5rem 1rem;
    }
    
    .trust-left h3,
    .trust-right h3,
    .trust-banner h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-left p,
    .trust-right p,
    .trust-banner p {
        font-size: 0.85rem;
    }
    
    .trust-left .trust-icon,
    .trust-right .trust-icon,
    .trust-banner .trust-icon {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--fedex-purple);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    opacity: 0.9;
}

/* ===== FEATURE SECTION ===== */
.feature-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--gray-bg);
}

.feature-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 3rem;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
}

.feature-icon svg {
    width: 60%;
    height: 60%;
    stroke: var(--primary-red);
    stroke-width: 2;
    fill: none;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .feature-section {
        padding: 3rem 0;
    }
    
    .feature-section h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .feature-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .feature-section {
        padding: 2rem 0;
    }
    
    .feature-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-card {
        padding: 0.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .feature-card h3 {
        font-size: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.content-image div {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .content-section.reverse {
        direction: ltr;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .content-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .content-image {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .content-text h2 {
        font-size: 1.3rem;
    }
    
    .content-text p {
        font-size: 0.85rem;
    }
    
    .content-image {
        border-radius: 6px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero.home-hero {
        padding: 4rem 0;
        min-height: 400px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero.home-hero h1 {
        font-size: 2.5rem;
    }

    .hero.home-hero p {
        font-size: 1.1rem;
    }

    .hero.track-hero {
        padding: 4rem 0;
        min-height: 400px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero.track-hero h1 {
        font-size: 2.5rem;
    }

    .hero.track-hero p {
        font-size: 1.1rem;
    }

    .home-hero .search-form {
        flex-direction: column;
        max-width: 100%;
    }

    .home-hero .search-form input,
    .home-hero .search-form button {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }

    .home-hero .search-form button {
        margin-bottom: 0;
    }

    .track-hero .search-form {
        flex-direction: row;
        max-width: 100%;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .track-hero .search-form input {
        border: none;
        border-radius: 0;
        padding: 1rem;
        font-size: 1rem;
        flex: 1;
    }

    .track-hero .search-form button {
        border-radius: 0;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    /* Show hamburger menu */
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar .container {
        position: relative;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        padding: 4rem 0;
        min-height: 300px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .hero h1::after {
        height: 3px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliveries-table {
        font-size: 0.9rem;
    }

    .deliveries-table th,
    .deliveries-table td {
        padding: 0.75rem;
    }

    .quick-actions {
        flex-direction: column;
    }

    .quick-actions .btn {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .content-section {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }

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

    .trust-card-center {
        transform: scale(1);
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero.home-hero {
        padding: 2rem 0;
        min-height: 300px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero.home-hero h1 {
        font-size: 1.6rem;
    }

    .hero.home-hero p {
        font-size: 0.9rem;
    }

    .hero.track-hero {
        padding: 2rem 0;
        min-height: 300px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero.track-hero h1 {
        font-size: 1.6rem;
    }

    .hero.track-hero p {
        font-size: 0.9rem;
    }

    .home-hero .search-form {
        flex-direction: row;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        max-width: 100%;
    }

    .home-hero .search-form input {
        padding: 0.75rem;
        font-size: 1rem;
        border: none;
        border-radius: 0;
        flex: 1;
        min-width: 0;
    }

    .home-hero .search-form button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 0;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .track-hero .search-form {
        flex-direction: row;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
        max-width: 100%;
    }

    .track-hero .search-form input {
        border: none;
        border-radius: 0;
        padding: 0.75rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
    }

    .track-hero .search-form button {
        border-radius: 0;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero {
        padding: 3rem 0;
        min-height: 250px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -0.3px;
    }
    
    .hero h1::after {
        height: 2px;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .search-form {
        flex-direction: column;
    }

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

    /* Admin Navigation Mobile */
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .navbar .nav-links li:last-child {
        border-bottom: none;
    }

    .navbar .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    /* Admin Table Mobile */
    .deliveries-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .deliveries-table thead {
        display: table-header-group;
    }

    .deliveries-table tbody {
        display: table-row-group;
    }

    .deliveries-table tr {
        display: table-row;
    }

    .deliveries-table th,
    .deliveries-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.7rem;
    }

    .deliveries-table .btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    /* Admin Container Mobile */
    .admin-container {
        padding: 1rem;
        margin: 1rem 0;
    }

    .admin-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .admin-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    /* Quick Actions Mobile */
    .quick-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quick-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Stat Cards Mobile */
    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-card h3 {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Status Badge Mobile */
    .status-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .feature-card {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .feature-card h3 {
        font-size: 0.85rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 1.5rem;
    }
}


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

    .trust-card-center {
        transform: scale(1);
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}


/* ===== MAP & TESTIMONIALS SECTION ===== */
.map-testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.map-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.map-testimonials-section .container {
    padding: 0 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 2px;
}

.map-testimonials-section p {
    max-width: 1000px;
    margin: 3rem auto 4rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-red);
}

.red-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 2px;
}

.red-link:hover {
    color: var(--dark-red);
    border-bottom: 2px solid var(--dark-red);
}

.map-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.map-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
    border-radius: 20px;
    z-index: 0;
}

.uk-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(227, 30, 36, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid white;
    position: relative;
    z-index: 1;
}

.uk-map-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 100px rgba(227, 30, 36, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .map-testimonials-section {
        padding: 3rem 0;
    }
    
    .map-testimonials-section .container {
        padding: 0 1.5rem 2rem;
    }
    
    .map-testimonials-section h2 {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.3;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .map-testimonials-section h2::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .map-testimonials-section p {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.7;
        padding: 1.5rem 1.5rem;
        margin: 2rem auto 3rem;
    }
    
    .map-image-container {
        padding: 0 1rem;
    }
    
    .map-image-container::before {
        top: -10px;
        width: 95%;
    }
    
    .uk-map-image {
        border-radius: 12px;
        border-width: 2px;
    }
    }
    
    .uk-map-image:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .map-testimonials-section {
        padding: 2rem 0;
    }
    
    .map-testimonials-section .container {
        padding: 0 1rem 1.5rem;
    }
    
    .map-testimonials-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-testimonials-section h2::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .map-testimonials-section p {
        font-size: 0.9rem;
        margin: 1.5rem auto 2rem;
        padding: 1.25rem 1rem;
    }
    
    .map-image-container {
        padding: 0 0.5rem;
    }
    
    .map-image-container::before {
        top: -8px;
        width: 98%;
    }
    
    .uk-map-image {
        border-radius: 8px;
        border-width: 2px;
    }
}


/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    background: white;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1.5rem;
    color: var(--text);
    font-weight: 800;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form {
    width: 100%;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-full {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .contact-wrapper {
        padding: 2rem;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 1rem;
    }
    
    .contact-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-item:hover {
        transform: translateX(3px);
    }
}

@media (max-width: 480px) {
    .contact-wrapper {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .btn-full {
        padding: 1rem;
        font-size: 1rem;
    }
}
