/* CSS Variables */
:root {
    --yellow: #e29105;
    --yellow-dark: #FFC107;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #333333;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-light);
    color: var(--black);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Container for content width control */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 4px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--yellow);
    transition: color 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 120px);
    padding: 40px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-secondary {
    background: var(--gray-medium);
    color: var(--black);
}

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

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.card-content {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Hero Section with CFG-40UF Background */
/* Available hero images: cfg-40uf-1, cfg-40uf-2, cfg-40uf-3, cfg-40uf-4 */
/* Current: cfg-40uf-3 (best file size and quality balance) */
.hero {
    background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/images/hero/cfg-40uf-3-lg.webp') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--yellow);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-location {
    font-size: 20px;
    color: var(--yellow);
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: var(--white);
}

.section:nth-child(odd):not(.cta-section) {
    background: var(--gray-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray-dark);
}

/* Fleet Section */
.fleet-section {
    background: var(--white);
    border-top: 1px solid var(--gray-medium);
    border-bottom: 1px solid var(--gray-medium);
}

.fleet-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.fleet-stat {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--shadow);
    border-top: 4px solid var(--yellow);
    transition: transform 0.3s ease;
}

.fleet-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* Fleet Equipment Showcase */
.fleet-equipment-showcase {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    border-left: 4px solid var(--yellow);
}

.fleet-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.fleet-showcase-image:hover {
    transform: scale(1.05);
}

.fleet-showcase-caption {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.4;
}

.fleet-showcase-caption strong {
    color: var(--black);
    font-weight: 600;
}

.fleet-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--yellow);
    display: block;
}

.fleet-label {
    font-size: 16px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    border-top: 4px solid var(--yellow);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Service List Styling */
.card-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.card-content li {
    margin-bottom: 8px;
    color: var(--gray-dark);
    line-height: 1.5;
}

/* Value Cards Styling */
.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 24px var(--shadow);
    border-top: 5px solid var(--yellow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow) 0%, #FFE135 100%);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    line-height: 1;
}

.value-title {
    color: var(--gray-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-description {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Equipment Cards Styling */
.equipment-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
    border-left: 6px solid var(--yellow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* Equipment Photo Styling */
.equipment-photo-wrapper {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--gray-light);
}

.equipment-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

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

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent var(--yellow) transparent transparent;
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 15px;
}

.equipment-model {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    letter-spacing: 0.5px;
}

.equipment-capacity {
    background: var(--yellow);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.equipment-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.equipment-description {
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 20px;
}

.equipment-specs {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
}

.equipment-specs h4 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    padding: 6px 0;
    color: var(--gray-dark);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.specs-list li::before {
    content: '⚙️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Attachment Cards Styling */
.attachment-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 20px var(--shadow);
    border-top: 4px solid var(--yellow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attachment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.attachment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, #FFE135 100%);
}

.attachment-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.attachment-title {
    color: var(--gray-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.attachment-description {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.equipment-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--shadow);
    border-top: 4px solid var(--yellow);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.equipment-details {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* CTA Section with TL80 Action Background - LIGHTER OVERLAY! */
.cta-section {
    background: linear-gradient(rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.2)), 
                url('/images/hero/cfg-tl80-2-lg.webp') center/cover no-repeat;
    color: var(--black);
    padding: 80px 0;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Equipment Page CTA - CFG-40UF-4 Excavator Background */
body[data-page="equipment"] .cta-section,
.equipment-page .cta-section {
    background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(0, 0, 0, 0.5)), 
                url('/images/hero/cfg-40uf-4-lg.webp') center/cover no-repeat;
    color: var(--white);
}

body[data-page="equipment"] .cta-title {
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

body[data-page="equipment"] .cta-subtitle {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Emergency Page Hero - CFG-40UF-2 Excavator with Trailer Background */
body[data-page="emergency"] .emergency-hero {
    background: linear-gradient(rgba(255, 68, 68, 0.85), rgba(204, 0, 0, 0.9)), 
                url('/images/hero/cfg-40uf-2-lg.webp') center/cover no-repeat !important;
}

/* Responsive Emergency Hero */
@media (min-width: 1440px) {
    body[data-page="emergency"] .emergency-hero {
        background: linear-gradient(rgba(255, 68, 68, 0.85), rgba(204, 0, 0, 0.9)), 
                    url('/images/hero/cfg-40uf-2-xl.webp') center/cover no-repeat !important;
    }
}

@media (max-width: 768px) {
    body[data-page="emergency"] .emergency-hero {
        background: linear-gradient(rgba(255, 68, 68, 0.85), rgba(204, 0, 0, 0.9)), 
                    url('/images/hero/cfg-40uf-2-md.webp') center/cover no-repeat !important;
    }
}

@media (max-width: 480px) {
    body[data-page="emergency"] .emergency-hero {
        background: linear-gradient(rgba(255, 68, 68, 0.85), rgba(204, 0, 0, 0.9)), 
                    url('/images/hero/cfg-40uf-2-sm.webp') center/cover no-repeat !important;
    }
}

/* Page-Specific Hero Backgrounds */
/* Services Page - TL80-1 Skid Steer */
body[data-page="services"] .hero {
    background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/images/hero/cfg-tl80-1-lg.webp') center/cover no-repeat;
}

/* Equipment Page - QNT30-2 Excavator */
body[data-page="equipment"] .hero {
    background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/images/hero/agt-qnt-30-2-lg.webp') center/cover no-repeat;
}

/* About Page - CFG-40UF-1 Excavator */
body[data-page="about"] .hero {
    background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/images/hero/cfg-40uf-1-lg.webp') center/cover no-repeat;
}

/* Responsive Page-Specific Heroes */
@media (min-width: 1440px) {
    body[data-page="services"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-tl80-1-xl.webp') center/cover no-repeat;
    }
    
    body[data-page="equipment"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/agt-qnt-30-2-xl.webp') center/cover no-repeat;
    }
    
    body[data-page="about"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-1-xl.webp') center/cover no-repeat;
    }
}

@media (max-width: 768px) {
    body[data-page="services"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-tl80-1-md.webp') center/cover no-repeat;
    }
    
    body[data-page="equipment"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/agt-qnt-30-2-md.webp') center/cover no-repeat;
    }
    
    body[data-page="about"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-1-md.webp') center/cover no-repeat;
    }
}

@media (max-width: 480px) {
    body[data-page="services"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-tl80-1-sm.webp') center/cover no-repeat;
    }
    
    body[data-page="equipment"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/agt-qnt-30-2-sm.webp') center/cover no-repeat;
    }
    
    body[data-page="about"] .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-1-sm.webp') center/cover no-repeat;
    }
}

/* About Page CTA - CFG-40UF-2 with Trailer */
body[data-page="about"] .cta-section {
    background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/images/hero/cfg-40uf-2-lg.webp') center/cover no-repeat !important;
    color: var(--white) !important;
}

body[data-page="about"] .cta-title {
    color: var(--white) !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

body[data-page="about"] .cta-subtitle {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive About Page CTA */
@media (min-width: 1440px) {
    body[data-page="about"] .cta-section {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-2-xl.webp') center/cover no-repeat !important;
        color: var(--white) !important;
    }
}

@media (max-width: 768px) {
    body[data-page="about"] .cta-section {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-2-md.webp') center/cover no-repeat !important;
        color: var(--white) !important;
    }
}

@media (max-width: 480px) {
    body[data-page="about"] .cta-section {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-2-sm.webp') center/cover no-repeat !important;
        color: var(--white) !important;
    }
}

/* Emergency Page Bottom CTA - AGT-QNT-30-2 with Black Overlay */
body[data-page="emergency"] .cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('/images/hero/agt-qnt-30-2-lg.webp') center/cover no-repeat !important;
    color: var(--white) !important;
}

body[data-page="emergency"] .cta-title {
    color: var(--white) !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

body[data-page="emergency"] .cta-subtitle {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Footer */
/* Professional Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--yellow);
    position: relative;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-link i {
    width: 16px;
    color: var(--yellow);
}

/* Company Info Column */
.footer-company {
    grid-column: span 1;
    max-width: 400px;
    justify-self: end;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo-img {
    height: 220px;
    width: auto;
    filter: brightness(1.1);
    max-width: 450px;
}

.company-info h4.company-name {
    color: var(--yellow);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.company-tagline {
    color: var(--gray-medium);
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
}

.company-location {
    color: var(--gray-medium);
    font-size: 14px;
    margin-bottom: 12px;
}

.company-phone {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.company-email {
    color: var(--yellow);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.company-email:hover {
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: var(--gray-medium);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--yellow);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-company {
        grid-column: span 2;
        justify-self: center;
        max-width: none;
        text-align: center;
        order: -1;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-logo-img {
        height: 180px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-company {
        grid-column: span 1;
        order: -1;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 150px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(0, 0, 0, 0.9)), 
                var(--black);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-content {
    padding: 80px 0;
    background: var(--gray-light);
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
}

.policy-summary {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--yellow);
}

.policy-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.policy-intro {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
}

.policy-section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-section-title i {
    color: var(--yellow);
    font-size: 20px;
    width: 24px;
}

.policy-content p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-content strong {
    color: var(--black);
    font-weight: 600;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--yellow);
    font-weight: bold;
    font-size: 18px;
}

.policy-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
    text-align: center;
}

.policy-contact h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.policy-contact p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-card {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    .policy-title {
        font-size: 28px;
    }
    
    .policy-intro {
        font-size: 16px;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }
    
    .privacy-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .policy-title {
        font-size: 24px;
    }
    
    .policy-section-title {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-yellow {
    color: var(--yellow-dark);
}

.text-gray {
    color: var(--gray-dark);
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Why Choose Us Section */
.advantages-section {
    background: var(--gray-light);
    padding: 60px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    border-top: 4px solid var(--yellow);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.advantage-description {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Large Desktop - High DPI displays */
@media (min-width: 1440px) {
    .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-3-xl.webp') center/cover no-repeat;
        min-height: 700px;
    }

    .cta-section {
        background: linear-gradient(rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.2)), 
                    url('/images/hero/cfg-tl80-2-xl.webp') center/cover no-repeat;
        min-height: 500px;
    }

    body[data-page="equipment"] .cta-section {
        background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(0, 0, 0, 0.5)), 
                    url('/images/hero/cfg-40uf-4-xl.webp') center/cover no-repeat;
        color: var(--white);
    }

    body[data-page="emergency"] .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                    url('/images/hero/agt-qnt-30-2-xl.webp') center/cover no-repeat !important;
        color: var(--white) !important;
    }


}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-3-sm.webp') center/cover no-repeat;
        min-height: 350px;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-location {
        font-size: 16px;
    }

    .cta-section {
        background: linear-gradient(rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.2)), 
                    url('/images/hero/cfg-tl80-2-sm.webp') center/cover no-repeat;
        min-height: 250px;
        padding: 40px 0;
    }

    body[data-page="equipment"] .cta-section {
        background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(0, 0, 0, 0.5)), 
                    url('/images/hero/cfg-40uf-4-sm.webp') center/cover no-repeat;
        color: var(--white);
    }

    body[data-page="emergency"] .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                    url('/images/hero/agt-qnt-30-2-sm.webp') center/cover no-repeat !important;
        color: var(--white) !important;
    }



    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

/* Service Areas with Maps Styling */
.service-areas-section {
    background: var(--gray-light);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.service-area-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-area-header {
    padding: 25px 25px 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-area-title {
    color: var(--gray-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.service-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.extended-badge {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

.service-area-map {
    height: 280px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.service-area-card:hover .map-embed {
    filter: grayscale(0%);
}

.service-area-content {
    padding: 0 25px 25px 25px;
}

.area-name {
    color: var(--yellow);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.area-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-item span:last-child {
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Service Summary */
.service-summary {
    margin-top: 50px;
}

.summary-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    border-top: 4px solid var(--yellow);
}

.summary-title {
    color: var(--gray-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.summary-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0 0 30px 0;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Design for Service Areas */
@media (max-width: 768px) {
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-area-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-area-map {
        height: 250px;
        margin: 15px 0;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .summary-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .service-area-content,
    .service-area-header {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .service-area-map {
        height: 200px;
    }
    
    .area-name {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-menu {
        margin-top: 20px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        font-size: 24px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .attachment-card {
        padding: 25px 20px;
    }
    
    .attachment-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .attachment-title {
        font-size: 1.1rem;
    }

    .hero {
        background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(0, 0, 0, 0.7)), 
                    url('/images/hero/cfg-40uf-3-md.webp') center/cover no-repeat;
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-location {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .fleet-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fleet-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-number {
        font-size: 36px;
    }

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

    .cta-section {
        background: linear-gradient(rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.2)), 
                    url('/images/hero/cfg-tl80-2-md.webp') center/cover no-repeat;
        min-height: 300px;
        padding: 60px 0;
    }

    body[data-page="equipment"] .cta-section {
        background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(0, 0, 0, 0.5)), 
                    url('/images/hero/cfg-40uf-4-md.webp') center/cover no-repeat;
        color: var(--white);
    }

    body[data-page="emergency"] .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                    url('/images/hero/agt-qnt-30-2-md.webp') center/cover no-repeat !important;
        color: var(--white) !important;
    }



    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 