/* ============================================
   ALL STAR COOLING & HEATING
   Custom CSS — Mobile-First Responsive
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary: #1B2A4A;
    --primary-light: #2A3F6B;
    --primary-dark: #0F1A30;
    --accent: #E63946;
    --accent-hover: #B71C2C;
    --accent-light: #FDECEE;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-600: #495057;
    --gray-700: #343A40;
    --gray-800: #212529;
    --success: #28A745;
    --danger: #DC3545;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s ease;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p + p { margin-top: 1rem; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    color: var(--white);
    font-weight: 500;
}
.top-bar-link:hover {
    color: var(--accent);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.25);
}

.top-bar-text {
    color: rgba(255,255,255,0.8);
}
.top-bar-text i {
    margin-right: 4px;
    color: var(--accent);
}

.top-bar-right {
    display: none;
}

/* --- Header / Navigation --- */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 100%;
}

/* Navigation */
.nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
}

.nav.open {
    display: block;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-light);
}

.nav-link i {
    font-size: 0.75em;
    margin-left: 2px;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 4px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color var(--transition);
}

.nav-phone:hover {
    color: var(--accent);
}

.nav-phone i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.nav-phone:hover i {
    background: var(--accent);
    color: var(--white);
}

/* Dropdown */
.nav-dropdown-menu {
    display: none;
    padding-left: 16px;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-dropdown-menu li a:hover {
    color: var(--accent);
    background: var(--accent-light);
}

.nav-dropdown-menu li a i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 16px;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 56px 0 44px;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(15,26,48,0.82) 0%, rgba(27,42,74,0.65) 55%, rgba(15,26,48,0.4) 100%),
        radial-gradient(circle at 80% 0%, rgba(230,57,70,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(15, 26, 48, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-stat {
    text-align: center;
    padding: 10px 8px;
    border-radius: var(--radius);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1.1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* --- Page Hero (smaller, for inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}
.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    font-size: 0.7em;
}

/* --- Section Utilities --- */
.section {
    padding: 64px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-dark .section-header .label {
    background: rgba(230,57,70,0.2);
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* --- Feature Cards (Why Choose Us) --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-light), #FBC9CE);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    flex: 1;
    margin-bottom: 16px;
}

.service-card .card-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card:hover .card-link {
    gap: 10px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--accent), #FF6B7A);
    padding: 64px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* --- Blog Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
    overflow: hidden;
}

.blog-card-image-photo {
    padding: 0;
    background: var(--primary-dark);
}

.blog-card-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image-photo img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.blog-card-category {
    background: var(--accent-light);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.blog-card-date {
    color: var(--gray-500);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.blog-card .card-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
    transition: border-color var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.contact-info-list .info-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-list .info-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    display: block;
}

.contact-info-list .info-value {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-info-list .info-value a {
    color: var(--accent);
}

/* --- Service Detail Page --- */
.service-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.service-intro {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 500;
    color: var(--gray-700);
    padding-top: 4px;
}

/* FAQ */
.faq-list {
    margin-top: 32px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* --- Content Blocks (for inner pages) --- */
.content-block {
    padding: 48px 0;
}

.content-block + .content-block {
    border-top: 1px solid var(--gray-200);
}

.content-block h2 {
    margin-bottom: 16px;
}

.content-block p {
    color: var(--gray-600);
    line-height: 1.8;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-600);
}

.icon-list li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- Emergency Page --- */
.emergency-phone {
    background: linear-gradient(135deg, var(--accent), #FF6B7A);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    color: var(--white);
    margin-bottom: 48px;
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

.emergency-phone h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.emergency-phone .phone-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin: 16px 0;
}

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

/* --- Privacy Page --- */
.privacy-content h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy-content p,
.privacy-content ul {
    margin-bottom: 16px;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 24px;
}

.privacy-content ul li {
    margin-bottom: 6px;
    color: var(--gray-600);
}

/* --- 404 Page --- */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.error-page h2 {
    margin-bottom: 12px;
}

.error-page p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* --- Footer --- */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
}

.footer-about p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 60px;
    max-width: 220px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}
.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
    color: var(--accent);
}

/* --- Form Success Message --- */
.form-message {
    padding: 16px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
    margin-bottom: 20px;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.about-copy .label {
    margin-bottom: 12px;
}

.about-copy h2 {
    margin-bottom: 20px;
}

.about-copy p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-copy p:last-of-type {
    margin-bottom: 24px;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.about-media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--gray-200);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
    }
    .about-media {
        aspect-ratio: 4 / 5;
    }
}

/* --- Fleet Section --- */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.fleet-card {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    background: var(--white);
    aspect-ratio: 4 / 3;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.fleet-card:hover img {
    transform: scale(1.04);
}

.fleet-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 18px 16px;
    background: linear-gradient(180deg, rgba(15,26,48,0) 0%, rgba(15,26,48,0.85) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fleet-card-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.fleet-card-featured .fleet-card-title {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .fleet-card-featured {
        grid-column: span 2;
        aspect-ratio: 21 / 9;
    }
}

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .fleet-card-featured {
        grid-column: span 4;
        aspect-ratio: 24 / 7;
    }
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }

    .top-bar-right {
        display: flex;
    }

    .hero {
        padding: 72px 0 56px;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

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

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

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

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

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

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

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

    .emergency-phone .phone-number {
        font-size: 3rem;
    }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    h1 { font-size: 3.25rem; }

    .container {
        padding: 0 32px;
    }

    .section {
        padding: 80px 0;
    }

    /* Desktop navigation */
    .hamburger {
        display: none;
    }

    .nav {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        overflow: visible;
        align-items: center;
        gap: 4px;
    }

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

    .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .nav-phone {
        margin-top: 0;
        margin-left: 12px;
    }

    /* Desktop dropdown */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
        min-width: 240px;
        padding: 8px;
        z-index: 100;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
        align-items: center;
    }

    .hero-stats {
        margin-top: 0;
        padding: 28px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

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

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .cta-banner h2 {
        font-size: 2.5rem;
    }
}

/* ============================================
   RESPONSIVE — Large Desktop (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Accessibility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* --- Print --- */
@media print {
    .top-bar, .header, .footer, .cta-banner { display: none; }
    .hero { background: none; color: #000; padding: 20px 0; }
    .hero h1 { color: #000; }
}
