/* ==========================================
   Distinctive Service - Main Stylesheet
   Professional Bus & Motorcoach Repair
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #1e3a5f;
    --primary-dark: #0f2744;
    --primary-light: #2d5a8a;
    --secondary-color: #e67e22;
    --secondary-dark: #d35400;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #ecf0f1;
    --border-color: #dde1e5;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

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

a:hover {
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

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

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

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

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

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--text-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--primary-color);
}

.header.scrolled .logo a,
.header.scrolled .nav-list a,
.header.scrolled .phone-link {
    color: var(--text-white);
}

.header.scrolled .nav-list a:hover,
.header.scrolled .nav-list a.active {
    color: var(--secondary-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--secondary-color);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.phone-link i {
    font-size: 16px;
}

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

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--text-white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(15, 39, 68, 0.3) 100%),
                url('images/hero-bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 52px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge i {
    font-size: 20px;
    color: var(--secondary-color);
}

.badge span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Careers Section - Job Accordion */
.careers-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Featured Job Posting */
.featured-job {
    max-width: 900px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    padding: 35px 40px;
    color: var(--text-white);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.featured-job-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-job h3 {
    color: var(--text-white);
    font-size: 28px;
    margin-bottom: 5px;
}

.featured-job-company {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.featured-job-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.featured-job-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.featured-job-details p {
    margin: 8px 0;
    font-size: 15px;
}

.featured-job-details strong {
    color: var(--secondary-color);
}

.featured-job-apply {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-job-apply span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.featured-job-apply a {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.featured-job-apply a:hover {
    background: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
}

.jobs-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.job-item {
    background: var(--text-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.job-item:hover {
    box-shadow: var(--shadow-lg);
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.job-header:hover {
    background: var(--bg-light);
}

.job-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-title i {
    font-size: 24px;
    color: var(--secondary-color);
}

.job-title h3 {
    font-size: 20px;
    margin: 0;
    color: var(--primary-color);
}

.job-toggle {
    font-size: 18px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.job-item.active .job-toggle {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.job-item.active .job-content {
    max-height: 1000px;
}

.job-description {
    padding: 0 30px 30px;
    border-top: 1px solid var(--border-color);
}

.job-description h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin: 25px 0 12px;
}

.job-description h4:first-child {
    margin-top: 25px;
}

.job-description p {
    color: var(--text-light);
    line-height: 1.7;
}

.job-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-description ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

.job-description ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 12px;
}

.job-description ul li strong {
    color: var(--primary-color);
}

.job-apply {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 8px;
}

.job-apply p {
    color: var(--text-white);
    margin: 0;
}

.job-apply a {
    color: var(--secondary-color);
    font-weight: 600;
}

.job-apply a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: var(--secondary-dark);
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.why-choose-text .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-list li i {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-list li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-list li span {
    font-size: 15px;
    color: var(--text-light);
}

.why-choose-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    padding: 100px 40px;
    text-align: center;
    color: var(--text-white);
}

.image-placeholder.dark {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.image-placeholder.large {
    padding: 150px 40px;
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-placeholder span {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--text-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Area */
.service-area {
    padding: 100px 0;
    background: var(--bg-light);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--text-white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.area-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.area-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services-intro {
    padding: 80px 0;
    background: var(--text-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: var(--bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-badge i {
    font-size: 30px;
    color: var(--text-white);
}

.service-detail-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-detail-text .lead {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 16px;
}

.service-list li i {
    color: var(--accent-color);
    font-size: 18px;
}

.service-list.columns {
    columns: 2;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
}

.emergency-content {
    text-align: center;
    color: var(--text-white);
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-icon i {
    font-size: 45px;
    color: var(--text-white);
}

.emergency-content h2 {
    font-size: 38px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.emergency-content .lead {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.emergency-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.emergency-feature i {
    font-size: 36px;
    margin-bottom: 15px;
}

.emergency-feature h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.emergency-feature p {
    font-size: 14px;
    opacity: 0.9;
}

.emergency-cta p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.emergency-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    transition: transform 0.3s;
}

.emergency-phone:hover {
    color: var(--text-white);
    transform: scale(1.05);
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.story-text .lead {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--text-white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* Our Team */
.our-team {
    padding: 80px 0;
}

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

.team-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.team-info .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.certifications h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

.cert-list li i {
    color: var(--secondary-color);
}

.team-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 42px;
}

.stat-card .stat-label {
    font-size: 14px;
}

/* Why Us */
.why-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--text-white);
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 26px;
    color: var(--text-white);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* Partners */
.partners {
    padding: 80px 0;
}

.partners-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner {
    background: var(--bg-light);
    padding: 25px 40px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Careers */
.careers {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.careers-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.careers-text > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.careers-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.jobs-list {
    margin-bottom: 30px;
}

.jobs-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--text-white);
    border-radius: 8px;
    margin-bottom: 12px;
}

.jobs-list li i {
    font-size: 20px;
    color: var(--secondary-color);
}

.jobs-list li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-color);
}

.jobs-list li span {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-cards {
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 15px;
}

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

.info-icon i {
    font-size: 20px;
    color: var(--text-white);
}

.info-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-dark);
}

.info-content a {
    color: var(--text-dark);
}

.info-content a:hover {
    color: var(--secondary-color);
}

.info-content .highlight {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.hours-card {
    background: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    color: var(--text-white);
}

.hours-card h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    opacity: 0.9;
}

.hours-list li.emergency {
    background: rgba(230, 126, 34, 0.3);
    margin: 10px -15px -10px;
    padding: 15px;
    border-radius: 0 0 5px 5px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--text-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

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

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

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.directions {
    max-width: 1000px;
    margin: 0 auto;
}

.directions h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

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

.direction-card {
    background: var(--text-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.direction-card h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.direction-card h4 i {
    color: var(--secondary-color);
}

.direction-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Emergency CTA */
.emergency-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.emergency-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.emergency-icon-large i {
    font-size: 35px;
    color: var(--text-white);
}

.emergency-text h2 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-white);
    color: var(--secondary-dark);
    padding: 18px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    transition: var(--transition);
}

.emergency-btn:hover {
    transform: scale(1.05);
    color: var(--secondary-dark);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--secondary-color);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
}

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

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary-color);
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

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

.footer-contact ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom .designer a {
    color: var(--secondary-color);
}

.footer-bottom .designer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-choose-content,
    .story-content,
    .team-content,
    .careers-content,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

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

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

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--text-white);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .header.scrolled .nav {
        background: var(--primary-color);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .header.scrolled .nav-list a {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

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

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

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 30px;
    }

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .emergency-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

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

    .service-list.columns {
        columns: 1;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .emergency-cta-content {
        flex-direction: column;
    }

    .emergency-phone {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .emergency-btn {
        font-size: 18px;
        padding: 15px 25px;
    }
}
