/* ============================================
   ELITE MOTORS - SERVICE ABOUT (LIGHT LUXURY)
   Theme: White/Clean/Premium
   ============================================ */

/* Root Variables for this page context */
:root {
    --sa-bg: #ffffff;
    --sa-bg-alt: #f8f9fa;
    --sa-text: #1a1a1a;
    --sa-text-muted: #555555;
    --sa-accent: #c40000;
    --sa-border: #e5e5e5;
}

body {
    background-color: var(--sa-bg);
    color: var(--sa-text);
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */
.service-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    /* Keep text white on video */
}

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

.service-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--space-4);
}

.service-hero-subtitle {
    font-family: var(--font-display);
    color: var(--white);
    /* Changed to White */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--sa-accent);
    /* Changed to Red */
}

.service-hero-desc {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   INDUSTRIAL / STORY SECTION (White Theme) 
   ============================================ */
.section-industrial {
    padding: var(--space-8) 0;
    background: var(--sa-bg);
    position: relative;
}

/* Alternate Background for visual break */
.section-industrial:nth-of-type(even) {
    background: var(--sa-bg-alt);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Softer shadow */
}

.story-content {
    padding: var(--space-4);
}

.industrial-label {
    display: block;
    font-family: var(--font-display);
    color: var(--sa-accent);
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
}

.section-industrial h3,
.industrial-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    color: var(--black);
}

/* Override for dark sections or specific headers if needed */
.section-industrial[style*="background: #151619;"] .industrial-title,
.section-industrial[style*="background: #151619;"] .industrial-label,
.section-industrial[style*="#151619"] .industrial-title {
    color: var(--white) !important;
}

.story-content p {
    color: var(--sa-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-size: 1rem;
}

.story-list {
    list-style: none;
    padding: 0;
}

.story-list li {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.story-list li i {
    color: var(--sa-accent);
    min-width: 24px;
}

.story-list li strong {
    color: var(--black);
    display: block;
    margin-bottom: 4px;
}

.story-list li p {
    margin-bottom: 0;
    font-size: 0.9rem;
}


/* ============================================
   SERVICES GRID (Light Mode)
   ============================================ */
.industrial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

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

.service-item {
    background: var(--white);
    border: 1px solid var(--sa-border);
    padding: var(--space-6);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--sa-accent);
}

.service-item i {
    color: var(--sa-accent);
    width: 32px;
    height: 32px;
    margin-bottom: var(--space-4);
}

.service-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
    color: var(--black);
}

.service-item p {
    font-size: 0.9rem;
    color: var(--sa-text-muted);
    line-height: 1.5;
}


/* ============================================
   INFRASTRUCTURE (Light Mode)
   ============================================ */
.infra-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (max-width: 900px) {
    .infra-layout {
        grid-template-columns: 1fr;
    }

    .infra-image {
        order: -1;
    }
}

.infra-text {
    color: var(--sa-text);
}

.infra-stat {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--sa-border);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box .num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    /* Dark number */
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-box .label {
    font-size: 0.85rem;
    color: var(--sa-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PORTFOLIO (Light Mode)
   ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--black-light);
    /* Fallback */
}

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(20%);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-overlay h4 {
    color: var(--white);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   WHY CHOOSE US (Light Mode)
   ============================================ */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.reason-card {
    background: var(--white);
    padding: var(--space-6);
    border: 1px solid var(--sa-border);
    text-align: center;
    border-radius: 4px;
}

.reason-card i {
    width: 40px;
    height: 40px;
    color: var(--sa-accent);
    margin-bottom: var(--space-3);
}

.reason-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-2);
}

.reason-card p {
    font-size: 0.9rem;
    color: var(--sa-text-muted);
}


/* ============================================
   CONTACT SECTION (Light Mode)
   ============================================ */
.service-contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-8);
    background: var(--white);
    border: 1px solid var(--sa-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .service-contact {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    padding: var(--space-8);
    background: var(--sa-bg-alt);
    border-right: 1px solid var(--sa-border);
}

.info-row {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    margin-top: var(--space-4);
}

.info-row i {
    color: var(--sa-accent);
    margin-top: 4px;
}

.info-row strong {
    display: block;
    color: var(--black);
    margin-bottom: 4px;
}

.info-row p {
    color: var(--sa-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-wrapper {
    padding: var(--space-8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--sa-bg-alt);
    border: 1px solid var(--sa-border);
    color: var(--black);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sa-accent);
    background: var(--white);
}

.btn-service {
    background: var(--sa-accent);
    color: var(--white);
    padding: 14px;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
}

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