/* ============================================================
   DAVREN TRUCKING LTD. — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:     #E63012; 
    --primary-dark:#bf2510;
    --dark:        #111827;
    --dark-2:      #1f2937;
    --gray:        #6b7280;
    --light-gray:  #f3f4f6;
    --white:       #ffffff;
    --font:        'Segoe UI', system-ui, -apple-system, sans-serif;
    --transition:  0.3s ease;
    --shadow:      0 4px 24px rgba(0,0,0,0.08);
    --radius:      6px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ---------- Reusable ---------- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-heading h2 span,
.about-content h2 span,
.about-who-content h2 span,
.about-why-content h2 span,
.cta-content h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--gray);
    font-size: 1rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition), transform var(--transition);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}


/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--dark-2);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 0.55rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar i {
    color: var(--primary);
    font-size: 0.8rem;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    gap: 1.5rem;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Fallback when logo image is missing */
.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile nav */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem 1.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 0.25rem;
        border-top: 1px solid var(--light-gray);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 0.65rem 0.5rem;
    }

    .quote-btn {
        display: none;
    }
}

@media (max-width: 500px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.6rem 1rem;
        gap: 0.4rem;
    }

    .top-bar-left {
        gap: 1rem;
    }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-background.png') center center / cover no-repeat;
    background-color: var(--dark); /* fallback */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 14, 20, 0.85) 0%,
        rgba(10, 14, 20, 0.45) 60%,
        rgba(10, 14, 20, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.hero-small-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
    padding: 6rem 2rem;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #fef2f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.services .section-heading {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.service-image {
    height: 220px;
    overflow: hidden;
    background: var(--dark-2);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.75rem;
}

.service-content > i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.service-content a:hover {
    gap: 0.7rem;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
    min-height: 520px;
}

.about-image {
    overflow: hidden;
    background: var(--dark-2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.about-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.about-content .primary-btn {
    margin-top: 1rem;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .about-content {
        padding: 3rem 2rem;
    }
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
    background: var(--primary);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-content .section-label {
    color: rgba(255,255,255,0.8);
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content h2 span {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-content .primary-btn {
    background: var(--white);
    color: var(--primary);
}

.cta-content .primary-btn:hover {
    background: var(--light-gray);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0d1117;
    color: rgba(255,255,255,0.65);
    position: relative;
    overflow: hidden;
}

/* world map watermark */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/world-map.png') center center / cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
}

/* --- Brand --- */
.footer-brand .footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    max-width: 240px;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* --- Columns --- */
.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.6);
    padding: 0.3rem 0;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a i {
    font-size: 0.65rem;
    color: var(--primary);
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Serving note under Company column */
.footer-serving {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.75rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-serving i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Contact column */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}

.footer-contact-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- Bottom bar --- */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
    max-width: 100%;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* orange accent line at very bottom */
.footer-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
}

.footer-tagline i {
    color: var(--primary);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal .divider {
    color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 1.25rem 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
    }
}

@media (max-width: 400px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   RESPONSIVE — General
   ============================================================ */
@media (max-width: 640px) {
    .why-us,
    .services {
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 4rem 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: url('../images/hero-background.png') center center / cover no-repeat;
    background-color: var(--dark);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 14, 20, 0.88) 0%,
        rgba(10, 14, 20, 0.6) 60%,
        rgba(10, 14, 20, 0.4) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    width: 100%;
}

.page-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.page-hero-content h1 span {
    color: var(--primary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.breadcrumb a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 0.6rem;
    color: var(--primary);
}

.breadcrumb span {
    color: rgba(255,255,255,0.85);
}


/* ============================================================
   WHO WE ARE
   ============================================================ */
.about-who {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-who-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-who-image {
    position: relative;
    border-radius: 12px;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
}

.about-who-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(230, 48, 18, 0.35);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.3rem;
    opacity: 0.9;
    white-space: nowrap;
}

.about-who-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.about-who-content h2 span {
    color: var(--primary);
}

.about-who-content > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-who-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .about-who-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-who-image img {
        height: 320px;
    }

    .about-badge {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .about-who-stats {
        gap: 1.5rem;
    }
}


/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */
.mvv {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.mvv-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e7eb;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.mvv-card--accent {
    background: var(--primary);
    border-color: transparent;
}

.mvv-card--accent h3,
.mvv-card--accent p,
.mvv-card--accent .mvv-card p {
    color: var(--white) !important;
}

.mvv-card--accent .mvv-icon {
    background: rgba(255,255,255,0.2);
}

.mvv-card--accent .mvv-icon i {
    color: var(--white);
}

.mvv-icon {
    width: 56px;
    height: 56px;
    background: #fef2f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.mvv-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.mvv-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   WHY CHOOSE US (about page)
   ============================================================ */
.about-why {
    padding: 6rem 2rem;
    background: var(--dark);
}

.about-why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-why-content .section-label {
    color: var(--primary);
}

.about-why-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-why-content h2 span {
    color: var(--primary);
}

.about-why-content > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-list-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 48, 18, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-list-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.why-list li h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.why-list li p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

.about-why-image {
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-why-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .about-why-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-why-image img {
        height: 300px;
    }
}


/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certifications {
    padding: 5rem 2rem;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.cert-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.cert-logos{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logos img {
    max-width: 80px;
    margin-right: 10px;
    height: auto;
    object-fit: contain;
}


/* ============================================================
   TRANSPORTATION PAGE
   ============================================================ */

/* ---- Intro ---- */
.tp-intro {
    padding: 6rem 2rem;
    background: var(--white);
}

.tp-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.tp-intro-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.tp-intro-content h2 span {
    color: var(--primary);
}

.tp-intro-content > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.tp-intro-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.tp-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tp-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.tp-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tp-intro-image {
    border-radius: 12px;
    overflow: hidden;
}

.tp-intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.6s ease;
}

.tp-intro-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .tp-intro-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tp-intro-image img {
        height: 300px;
    }

    .tp-intro-stats {
        gap: 1.5rem;
    }
}


/* ---- Services ---- */
.tp-services {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.tp-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.tp-service-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.tp-service-row--reverse {
    direction: rtl;
}

.tp-service-row--reverse > * {
    direction: ltr;
}

.tp-service-image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.tp-service-image img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.tp-service-row:hover .tp-service-image img {
    transform: scale(1.04);
}

.tp-service-icon {
    width: 56px;
    height: 56px;
    background: #fef2f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tp-service-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.tp-service-content h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tp-service-content > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.tp-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.tp-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

.tp-feature-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .tp-service-row,
    .tp-service-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .tp-service-image {
        min-height: 220px;
    }
}


/* ---- Process ---- */
.tp-process {
    padding: 6rem 2rem;
    background: var(--dark);
}

.tp-process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-process .section-heading h2 {
    color: var(--white);
}

.tp-process .section-heading p {
    color: rgba(255,255,255,0.55);
}

.tp-process .section-label {
    color: var(--primary);
}

.tp-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 1rem;
}

.tp-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.tp-step-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.tp-step-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 48, 18, 0.12);
    border: 2px solid rgba(230, 48, 18, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition), border-color var(--transition);
}

.tp-step:hover .tp-step-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.tp-step-icon i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: color var(--transition);
}

.tp-step:hover .tp-step-icon i {
    color: var(--white);
}

.tp-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.tp-step p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

.tp-step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(230,48,18,0.5), rgba(230,48,18,0.2));
    margin-top: 32px; /* aligns with center of icon */
    border-radius: 2px;
}

@media (max-width: 768px) {
    .tp-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tp-step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
        background: linear-gradient(to bottom, rgba(230,48,18,0.5), rgba(230,48,18,0.2));
    }

    .tp-step {
        max-width: 320px;
        width: 100%;
    }
}


/* ---- Certifications strip ---- */
.tp-certs {
    padding: 3.5rem 2rem;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.tp-certs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-certs-inner > .section-label {
    display: block;
    margin-bottom: 2rem;
}

.tp-certs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tp-cert-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--light-gray);
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.tp-cert-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.tp-cert-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tp-cert-item:hover i {
    color: var(--white);
}


/* ---- Why Choose Us ---- */
.tp-why {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.tp-why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tp-why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border: 1px solid #e5e7eb;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tp-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.tp-why-icon {
    width: 52px;
    height: 52px;
    background: #fef2f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}

.tp-why-card:hover .tp-why-icon {
    background: var(--primary);
}

.tp-why-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color var(--transition);
}

.tp-why-card:hover .tp-why-icon i {
    color: var(--white);
}

.tp-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.tp-why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .tp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .tp-why-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   WAREHOUSING PAGE
   ============================================================ */

/* ---- Intro ---- */
.wh-intro {
    padding: 6rem 2rem;
    background: var(--white);
}

.wh-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wh-intro-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.wh-intro-content h2 span {
    color: var(--primary);
}

.wh-intro-content > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.wh-intro-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.wh-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wh-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.wh-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wh-intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.wh-intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.6s ease;
}

.wh-intro-image:hover img {
    transform: scale(1.03);
}

.wh-intro-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-left: 3px solid var(--primary);
}

.wh-intro-badge i {
    color: var(--primary);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .wh-intro-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wh-intro-image img {
        height: 300px;
    }

    .wh-intro-stats {
        gap: 1.5rem;
    }
}


/* ---- Services Grid ---- */
.wh-services {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.wh-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wh-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wh-service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border: 1px solid #e5e7eb;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.wh-service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}


.wh-service-icon {
    width: 52px;
    height: 52px;
    background: #fef2f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.wh-service-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.wh-service-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.wh-service-card > p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.wh-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wh-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 500;
}

.wh-feature-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .wh-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .wh-services-grid {
        grid-template-columns: 1fr;
    }
}


/* ---- Facility ---- */
.wh-facility {
    padding:0px;
    background: var(--white);
    min-height: 460px;
}

.wh-facility-content {
    padding: 5rem 8rem;
    background: var(--white);
}

.wh-facility-content h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.wh-facility-content h2 span {
    color: var(--primary);
}

.wh-facility-content > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.wh-facility-features {
    display: flex;
    gap: 5.5rem;
}

.wh-facility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wh-facility-item > i {
    width: 40px;
    height: 40px;
    background: #fef2f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.wh-facility-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.wh-facility-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .wh-facility {
        grid-template-columns: 1fr;
    }

    .wh-facility-content {
        padding: 3rem 2rem;
    }
}


/* ---- Process ---- */
.wh-process {
    padding: 6rem 2rem;
    background: var(--dark);
}

.wh-process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wh-process .section-heading h2 {
    color: var(--white);
}

.wh-process .section-heading p {
    color: rgba(255,255,255,0.55);
}

.wh-process .section-label {
    color: var(--primary);
}

.wh-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 1rem;
}

.wh-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.wh-step-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.wh-step-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 48, 18, 0.12);
    border: 2px solid rgba(230, 48, 18, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition), border-color var(--transition);
}

.wh-step:hover .wh-step-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.wh-step-icon i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: color var(--transition);
}

.wh-step:hover .wh-step-icon i {
    color: var(--white);
}

.wh-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.wh-step p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

.wh-step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(230,48,18,0.5), rgba(230,48,18,0.2));
    margin-top: 32px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .wh-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .wh-step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
        background: linear-gradient(to bottom, rgba(230,48,18,0.5), rgba(230,48,18,0.2));
    }

    .wh-step {
        max-width: 320px;
        width: 100%;
    }
}


/* ---- Why Choose Us ---- */
.wh-why {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.wh-why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wh-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wh-why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border: 1px solid #e5e7eb;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.wh-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.wh-why-icon {
    width: 52px;
    height: 52px;
    background: #fef2f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}

.wh-why-card:hover .wh-why-icon {
    background: var(--primary);
}

.wh-why-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color var(--transition);
}

.wh-why-card:hover .wh-why-icon i {
    color: var(--white);
}

.wh-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.wh-why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .wh-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .wh-why-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ---- Contact Cards ---- */
.ct-cards {
    padding: 0 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.ct-cards-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ct-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}

.ct-card--accent {
    background: var(--primary);
    border-color: transparent;
}

.ct-card--accent h3,
.ct-card--accent p,
.ct-card--accent a {
    color: var(--white) !important;
}

.ct-card--accent .ct-card-icon {
    background: rgba(255,255,255,0.2);
}

.ct-card--accent .ct-card-icon i {
    color: var(--white);
}

.ct-card-icon {
    width: 56px;
    height: 56px;
    background: #fef2f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.ct-card-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.ct-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
}

.ct-card p {
    font-size: 0.83rem;
    color: var(--gray);
    margin: 0;
}

.ct-card a,
.ct-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.25rem;
    transition: opacity var(--transition);
}

.ct-card a:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .ct-cards-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .ct-cards-inner {
        grid-template-columns: 1fr;
    }

    .ct-cards {
        margin-top: 2rem;
    }
}


/* ---- Form + Info ---- */
.ct-main {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.ct-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: flex-start;
}

/* Form wrap */
.ct-form-wrap h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.ct-form-wrap h2 span {
    color: var(--primary);
}

.ct-form-sub {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ct-form-group--full {
    grid-column: 1 / -1;
}

.ct-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.ct-form-group label span {
    color: var(--primary);
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
    color: #adb5bd;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 48, 18, 0.1);
}

.ct-form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.ct-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .ct-form-row {
        grid-template-columns: 1fr;
    }
}


/* Info sidebar */
.ct-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: sticky;
    top: 90px;
}

.ct-info-block {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
}

.ct-info-block h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.ct-office {
    margin-bottom: 1.25rem;
}

.ct-office:last-child {
    margin-bottom: 0;
}

.ct-office-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.ct-office-label i {
    font-size: 0.8rem;
}

.ct-office p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.ct-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ct-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
}

.ct-info-list li i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.ct-info-list li a {
    color: var(--gray);
    transition: color var(--transition);
}

.ct-info-list li a:hover {
    color: var(--primary);
}

.ct-info-list li span {
    color: var(--gray);
}

.ct-socials {
    display: flex;
    gap: 0.6rem;
}

.ct-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.ct-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

@media (max-width: 1024px) {
    .ct-main-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ct-info {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ct-info {
        grid-template-columns: 1fr;
    }
}


/* ---- Map ---- */
.ct-map {
    line-height: 0;
    border-top: 4px solid var(--primary);
}

.ct-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(20%);
}
