/* ============================================
   HYPER CONTRACTORS - Main Stylesheet
   Professional Home Services Website
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --primary: #0a3d6b;
    --primary-light: #48545c;
    --primary-dark: #062d4f;
    --accent: #2196F3;
    --accent-light: #64B5F6;
    --secondary: #1a1a2e;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #adb5bd;
    --dark-gray: #495057;
    --text: #2c3e50;
    --text-light: #6c757d;
    --heading: #1a1a2e;
    --border: #dee2e6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

/* ----- 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-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
    background: var(--light-gray);
    color: var(--text);
}

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

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

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

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

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ----- Top Bar ----- */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

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

.top-bar-right {
    display: flex;
    gap: 24px;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar i {
    margin-right: 6px;
}

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

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

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

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

.nav-menu > li > a {
    padding: 10px 18px;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: rgba(10, 61, 107, 0.05);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-cta a {
    padding: 10px 24px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta a:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover {
    background: rgba(10, 61, 107, 0.05);
    color: var(--primary);
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--primary);
    font-size: 14px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* ----- Hero Slider ----- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Prev/Next arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.hero-hvac {
    background-image: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1920&h=700&fit=crop');
}

.hero-plumbing {
    background-image: url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=1920&h=700&fit=crop');
}

.hero-cleaning {
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&h=700&fit=crop');
}

.hero-moving {
    background-image: url('https://images.pexels.com/photos/4569340/pexels-photo-4569340.jpeg?auto=compress&cs=tinysrgb&w=1920&h=700&fit=crop');
}

.hero-contact {
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=500&fit=crop');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 107, 0.92) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

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

.text-accent {
    color: var(--accent-light);
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.85;
}

.trust-item i {
    color: var(--accent-light);
}

/* ----- Stats Bar ----- */
.stats-bar {
    background: var(--primary);
    padding: 50px 0;
    margin-top: -1px;
}

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

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.8;
    font-weight: 400;
}

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

.bg-light {
    background: var(--off-white);
}

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

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ----- Service Showcase Cards ----- */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-showcase-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

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

.showcase-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.service-showcase-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.service-showcase-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.showcase-features {
    list-style: none;
    margin-bottom: 24px;
}

.showcase-features li {
    padding: 6px 0;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-features li i {
    color: var(--success);
    font-size: 12px;
}

/* ----- Service Cards (Featured/Grid) ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-icon {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

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

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 14px;
    color: var(--success);
    margin-bottom: 16px;
}

.service-price strong {
    font-size: 20px;
}

/* ----- Why Choose Us ----- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: 20px;
}

.why-us-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.why-us-features {
    margin-top: 32px;
    display: grid;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(10, 61, 107, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon i {
    font-size: 20px;
    color: var(--primary);
}

.why-feature h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.why-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.why-us-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    opacity: 0.85;
}

/* ----- Process Steps ----- */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.process-step {
    text-align: center;
    padding: 20px;
    max-width: 250px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10, 61, 107, 0.08);
    line-height: 1;
    margin-bottom: -10px;
}

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

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

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 85px;
    flex-shrink: 0;
}

/* ----- Testimonials ----- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 16px;
}

.testimonial-content p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar i {
    font-size: 40px;
    color: var(--medium-gray);
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    color: var(--heading);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

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

.rating-overview {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--off-white);
    border-radius: 50px;
}

.rating-stars i {
    color: var(--warning);
    font-size: 18px;
}

.rating-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* ----- CTA Section ----- */
.section-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
}

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

.cta-content p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----- Service Areas ----- */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.area-tag {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.area-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(10, 61, 107, 0.04);
}

/* ----- Content Split ----- */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split-reverse {
    direction: rtl;
}

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

.content-text h2 {
    margin-bottom: 20px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ----- Detail Cards ----- */
.detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

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

.detail-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(10, 61, 107, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.detail-card-icon i {
    font-size: 24px;
    color: var(--primary);
}

.detail-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.detail-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--text);
}

.detail-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ----- Plan Features ----- */
.plan-features {
    margin: 24px 0;
    display: grid;
    gap: 10px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
}

.plan-feature i {
    color: var(--success);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

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

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

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

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

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

.required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 61, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-disclaimer {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    margin-top: 2px;
}

.alert ul {
    margin: 0;
    padding-left: 18px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: grid;
    gap: 24px;
}

.contact-info-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    font-size: 14px;
}

.contact-emergency {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.contact-emergency h3 {
    color: var(--white);
}

.contact-emergency p {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 16px;
}

.emergency-icon i {
    font-size: 32px;
    color: var(--warning);
    margin-bottom: 12px;
}

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

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Map */
.section-map {
    line-height: 0;
}

.section-map iframe {
    display: block;
}

/* ----- Footer ----- */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a,
.footer-col ul li span {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--accent-light);
    margin-top: 4px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-badges {
    display: flex;
    gap: 24px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.7;
}

.footer-badges span i {
    color: var(--accent-light);
}

/* ----- Back to Top ----- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }
    .hero h1, .hero-slide h1 { font-size: 2.75rem; }
    
    .services-showcase,
    .detail-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid,
    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-split-reverse {
        direction: ltr;
    }

    .why-us-image {
        order: -1;
    }

    .why-us-image img {
        height: 400px;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    .hero h1, .hero-slide h1 { font-size: 2.25rem; }
    
    .section { padding: 60px 0; }

    /* Mobile Nav */
    .mobile-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu > li > a {
        padding: 14px 16px;
        font-size: 16px;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
    }

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

    .nav-cta {
        margin-top: 16px;
    }

    .nav-cta a {
        width: 100%;
        justify-content: center;
    }

    /* Top bar */
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

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

    /* Hero */
    .hero { min-height: 500px; }
    .hero-slider, .hero-slide { min-height: 600px; }
    .hero-contact { min-height: 350px; }

    .hero-actions {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number { font-size: 2rem; }

    /* Process */
    .process-steps { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 40px; margin: 0; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Services Grid */
    .services-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-badges { flex-direction: column; gap: 8px; align-items: center; }

    /* CTA */
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.75rem; }
    .hero h1, .hero-slide h1 { font-size: 1.875rem; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .logo-img { height: 45px; }
    .experience-badge { right: 10px; }
}
