/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --accent: #f1c40f;
    --dark: #0d1b2a;
    --gray-dark: #2c3e50;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --green: #10b981;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Header ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.logo:hover {
    color: var(--primary);
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Open / Closed status */
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.open-status .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
}

.open-status.open .status-dot {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}

.open-status.closed .status-dot {
    background: var(--primary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

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

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    width: 100%;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(29, 53, 87, 0.85) 60%, rgba(193, 18, 31, 0.75) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.05;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature strong {
    display: block;
    font-size: 38px;
    color: var(--white);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.hero-feature span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== Carrier Logo Strip ===== */
.carrier-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-light);
}

.carrier-strip-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 24px;
}

.carrier-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* ===== Branded Carrier Badges ===== */
.carrier-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    min-width: 90px;
    height: 44px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.carrier-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.carrier-badge.large {
    padding: 16px 24px;
    font-size: 22px;
    height: 64px;
    min-width: 140px;
    margin-bottom: 16px;
}

/* Brand colors */
.carrier-badge.dhl {
    background: #FFCC00;
    color: #D40511;
    font-style: italic;
}

.carrier-badge.fedex {
    background: var(--white);
    color: #4D148C;
    padding: 0;
    border: 1px solid var(--gray-light);
}
.carrier-badge.fedex .fed { color: #4D148C; padding: 10px 0 10px 16px; }
.carrier-badge.fedex .ex { color: #FF6600; padding: 10px 16px 10px 0; }
.carrier-badge.large.fedex .fed { padding: 16px 0 16px 24px; }
.carrier-badge.large.fedex .ex { padding: 16px 24px 16px 0; }

.carrier-badge.ups {
    background: #351C15;
    color: #FFB500;
}

.carrier-badge.purolator {
    background: #EE3D42;
    color: var(--white);
    font-style: italic;
}

.carrier-badge.canada-post {
    background: #EE3124;
    color: var(--white);
    font-size: 13px;
}

.carrier-badge.large.canada-post {
    font-size: 18px;
}

.carrier-badge.canpar {
    background: #003DA5;
    color: var(--white);
    font-size: 14px;
}

.carrier-badge.large.canpar {
    font-size: 18px;
}

.carrier-badge.loomis {
    background: #003366;
    color: var(--white);
    font-size: 14px;
}

.carrier-badge.large.loomis {
    font-size: 18px;
}

.carrier-badge.meest {
    background: #00529B;
    color: var(--white);
}

.carrier-badge.aramex {
    background: #CD171F;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    text-transform: lowercase;
}

.carrier-badge.pudo {
    background: #00A859;
    color: var(--white);
}

/* ===== Section Layouts ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header p {
    color: var(--gray);
    font-size: 17px;
}

/* ===== Services ===== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card.highlight {
    background: var(--dark);
    color: var(--white);
}

.service-card.highlight h3 {
    color: var(--white);
}

.service-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.service-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Home Pickup Callout ===== */
.home-pickup {
    background: var(--bg-light);
    padding: 0 0 60px;
}

.home-pickup-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.home-pickup-icon {
    font-size: 72px;
    line-height: 1;
}

.home-pickup-text h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 8px;
}

.home-pickup-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    margin: 0;
    max-width: 600px;
}

.home-pickup-card .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.home-pickup-card .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===== Partners ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.partner-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.partner-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.partner-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== Tracking ===== */
.tracking {
    background: var(--bg-light);
    padding: 80px 0;
}

.tracking-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.tracking-card h2 {
    color: var(--white);
    font-size: 32px;
    margin: 8px 0 12px;
}

.tracking-card p {
    color: rgba(255, 255, 255, 0.85);
}

.tracking-card .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tracking-form input,
.tracking-form select {
    padding: 14px 18px;
    border-radius: var(--radius);
    border: none;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--dark);
}

.tracking-form input:focus,
.tracking-form select:focus {
    outline: 3px solid rgba(255, 255, 255, 0.4);
}

/* ===== Gallery ===== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item.gallery-placeholder {
    background: linear-gradient(135deg, var(--gray-light) 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.gallery-placeholder::before {
    content: '📷';
    font-size: 48px;
    opacity: 0.4;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

/* ===== About ===== */
.about {
    background: var(--bg-light);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-stat {
    text-align: center;
}

.about-stat strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-list {
    list-style: none;
    margin: 24px 0 32px;
}

.about-list li {
    padding: 8px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 24px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Quote / Price Inquiry ===== */
.quote {
    background: var(--white);
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

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

.form-subheading {
    font-size: 18px;
    margin: 16px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.form-hint {
    display: block;
    color: var(--gray);
    font-size: 13px;
    margin-top: 6px;
    font-style: italic;
}

.form-disclaimer {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-top: 16px;
}

.quote-success {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    margin: 0 auto 24px;
}

.quote-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.quote-success p {
    color: var(--gray);
    margin-bottom: 28px;
}

/* ===== Contact ===== */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.link-arrow {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-about,
.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 4px 0;
}

/* ===== Floating Action Buttons ===== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.floating-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    animation: callPulse 2s infinite;
}

.floating-whatsapp {
    background: #25D366;
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4), 0 0 0 0 rgba(230, 57, 70, 0.6); }
    50% { box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4), 0 0 0 12px rgba(230, 57, 70, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .open-status { display: none; }
    .tracking-card { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item.gallery-large { grid-column: span 2; }
    .gallery-item { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
    .top-bar-inner { font-size: 12px; justify-content: center; text-align: center; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

    .nav.active { display: flex; }
    .menu-toggle { display: flex; }
    .header-inner { position: relative; }

    .hero { padding: 70px 0 80px; min-height: 500px; }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .hero-features { gap: 24px; }
    .hero-feature strong { font-size: 28px; }

    .section { padding: 70px 0; }
    .section-header h2 { font-size: 32px; }

    .services-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.gallery-large { grid-column: span 1; }

    .home-pickup-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
    .home-pickup-icon { font-size: 56px; }
    .home-pickup-text h3 { font-size: 22px; }

    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-image-card { padding: 24px; grid-template-columns: 1fr 1fr; }
    .about-content h2 { font-size: 30px; }

    .quote-form, .contact-form { padding: 30px 24px; }
    .form-row, .form-row.three-col { grid-template-columns: 1fr; }

    .tracking-card { padding: 30px 24px; }

    .floating-actions { bottom: 16px; right: 16px; }
    .floating-btn { width: 52px; height: 52px; font-size: 22px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .section-header h2 { font-size: 26px; }
    .partners-grid { grid-template-columns: 1fr; }
    .logo-title { font-size: 18px; }
    .logo-subtitle { font-size: 10px; }
    .logo-img { height: 36px; }
    .btn { padding: 12px 24px; font-size: 14px; }
}
