/* ===================================
   FREIGHT TRUCKING INDUSTRIAL DESIGN
   DinerRun Logistics - 2024
   ================================== */

/* === CSS VARIABLES === */
:root {
    --steel-gray: #4B5563;
    --dark-gray: #1F2937;
    --red-accent: #E63946;
    --red-dark: #A4161A;
    --black: #0F1419;
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --border-gray: #D1D5DB;
    --orange: #F59E0B;

    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Arial Black', 'Arial Bold', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }

/* === HEADER === */
.header {
    background: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--light-gray);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red-accent);
    border-bottom-color: var(--red-accent);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-gray);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--light-gray);
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--steel-gray);
    color: var(--white);
}

.btn-header {
    background: var(--red-accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--red-accent);
}

.btn-header:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* === BUTTONS === */
.btn-primary,
.btn-secondary,
.btn-cta,
.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid;
    text-align: center;
}

.btn-primary {
    background: var(--red-accent);
    color: var(--white);
    border-color: var(--red-accent);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border-color: var(--steel-gray);
}

.btn-secondary:hover {
    background: var(--steel-gray);
    color: var(--white);
    transform: scale(1.05);
}

.btn-cta {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-service {
    background: transparent;
    color: var(--red-accent);
    border-color: var(--red-accent);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-service:hover {
    background: var(--red-accent);
    color: var(--white);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(230, 57, 70, 0.1));
    pointer-events: none;
}

.hero-stats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-block {
    grid-column: 1 / 2;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-text-block .btn-primary {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-stats-grid {
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-radius: 8px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--red-accent);
    transform: translateY(-5px);
}

.stat-item .num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-accent);
    font-family: var(--font-heading);
}

.stat-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

.hero-image-side {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--red-accent);
}

/* === SECTIONS === */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--steel-gray);
}

/* === SERVICES === */
.services-section {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--red-accent);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--steel-gray);
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red-accent);
    font-weight: bold;
    pointer-events: none;
}

/* === EQUIPMENT === */
.equipment-section {
    background: var(--white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.equipment-specs {
    font-weight: 600;
    color: var(--red-accent);
    margin-bottom: 0.75rem;
}

/* === COVERAGE === */
.coverage-section {
    background: var(--light-gray);
}

.coverage-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coverage-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--steel-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.coverage-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.coverage-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.coverage-item h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.coverage-item p {
    color: var(--steel-gray);
}

.coverage-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* === INDUSTRIES === */
.industries-section {
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.industry-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--red-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--steel-gray);
}

/* === CERTIFICATIONS === */
.certifications-section {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

.certifications-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    padding: 2rem;
}

.cert-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cert-item:hover .cert-badge {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--white);
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--light-gray);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--red-accent);
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red-accent);
}

.testimonial-header h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--steel-gray);
}

.testimonial-rating {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red-accent);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--red-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--red-accent);
    transform: scale(1.3);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--red-accent) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* === NEWSLETTER === */
.newsletter-section {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.newsletter-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--steel-gray);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--white);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--red-accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: var(--light-gray);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--red-accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    flex-shrink: 0;
    color: var(--red-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--steel-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--steel-gray);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--red-accent);
}

/* === SERVICE DETAIL PAGES === */
.service-hero {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.service-detail {
    padding: 4rem 0;
}

.service-split {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-description h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-description h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.feature-list {
    padding-left: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--red-accent);
    pointer-events: none;
}

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

.spec-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--red-accent);
}

.spec-item h4 {
    color: var(--black);
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

/* === PROCESS SECTION === */
.process-section {
    background: var(--light-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

/* === PRICING SECTION === */
.pricing-section {
    background: var(--white);
}

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

.pricing-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.factor-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--red-accent);
}

.factor-card h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cta-box {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* === ABOUT PAGE === */
.about-hero {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-accent);
    transform: translateX(-50%);
    pointer-events: none;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    width: calc(50% - 2rem);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--red-accent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-accent);
    display: block;
}

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

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--red-accent);
}

.team-member h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--red-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.value-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--red-accent);
}

.value-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

/* === CONTACT PAGE === */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-accent);
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--red-accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 1rem;
    border-left: 4px solid var(--red-accent);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.info-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.map-section {
    margin-top: 3rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

details.accordion-item {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--red-accent);
    cursor: pointer;
}

details.accordion-item summary {
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    user-select: none;
}

details.accordion-item[open] summary {
    color: var(--red-accent);
    margin-bottom: 1rem;
}

details.accordion-item p {
    color: var(--steel-gray);
    line-height: 1.7;
}

/* === BLOG PAGE === */
.blog-hero {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--steel-gray);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    color: var(--steel-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* === ARTICLE PAGE === */
.article-header {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 1rem;
    color: var(--light-gray);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-featured {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    font-size: 2rem;
    color: var(--black);
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--steel-gray);
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    list-style: disc;
}

.highlight-box {
    background: var(--light-gray);
    border-left: 4px solid var(--red-accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.author-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red-accent);
}

.author-info h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.author-role {
    color: var(--red-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-articles {
    background: var(--light-gray);
    padding: 3rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* === LEGAL PAGES === */
.legal-hero {
    background: linear-gradient(135deg, var(--dark-gray), var(--steel-gray));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--steel-gray);
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--red-accent);
}

.contact-box {
    background: var(--dark-gray);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-box a {
    color: var(--red-accent);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-stats-layout {
        grid-template-columns: 1fr;
    }

    .hero-image-side {
        grid-column: 1;
        grid-row: auto;
    }

    .coverage-split,
    .service-split,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

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

    .stat-item .num {
        font-size: 1.5rem;
    }
}