/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
    /* Color Palette - Modern Professional Aesthetic */
    --primary: #be272e;
    --primary-light: #e74c53;
    --primary-dark: #8f1e23;
    --accent: #48b1f1;
    --accent-light: #6bc1f5;
    --accent-dark: #2a8ac7;
    --text-dark: #141515;
    --text-medium: #3b3d3f;
    --text-light: #6b7280;
    --bg-light: #F8FAFA;
    --bg-white: #FFFFFF;
    --bg-gray: #f3f4f6;
    --border: #E0E8EB;
    --border-light: #f0f0f0;
    --shadow: rgba(10, 77, 78, 0.08);
    --shadow-md: rgba(10, 77, 78, 0.12);
    --shadow-lg: rgba(10, 77, 78, 0.15);
    --shadow-xl: rgba(10, 77, 78, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    
    /* Typography */
    --font-display: 'Crimson Pro', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary);
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-medium);
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
}

.cta-nav:hover {
    background: var(--primary-light);
}

.cta-nav::after {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 77, 78, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(10, 77, 78, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(2deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    animation: revealText 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 0.1em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.02em;
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-medium);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.trust-item .stars {
    color: var(--accent);
    font-size: 1rem;
}

.trust-item .icon {
    color: var(--primary);
    font-weight: bold;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary));
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-lg);
}

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

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

.btn-tertiary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-tertiary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   Why Choose Us
   ======================================== */

.why-choose {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.why-choose h2 {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--accent-light);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: var(--section-padding);
}

.services h2 {
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 40px var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card.priority {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.02) 0%, white 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.badge {
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-card h3 {
    color: var(--primary);
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

/* ========================================
   Process Section
   ======================================== */

.process {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.process h2 {
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    font-family: var(--font-display);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.step-arrow {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 300;
}

/* ========================================
   Brands & Areas
   ======================================== */

.brands-areas {
    padding: var(--section-padding);
}

.split-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.brand-list,
.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-list span,
.area-list span {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-medium);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.brand-list span:hover,
.area-list span:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.area-list .highlight {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.03) 0%, var(--bg-light) 100%);
}

.testimonials h2 {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.testimonial .stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Safety Section
   ======================================== */

.safety {
    padding: var(--section-padding);
    text-align: center;
}

.safety-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ========================================
   Bottom CTA
   ======================================== */

.bottom-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

.bottom-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.bottom-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.bottom-cta .btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.bottom-cta .btn-primary:hover {
    background: var(--accent-light);
}

.bottom-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--shadow);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.hours {
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px var(--shadow);
        transition: right 0.3s ease-in-out;
        align-items: flex-start;
        z-index: 999;
        gap: 1rem;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .nav-menu a.cta-nav {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    :root {
        --section-padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   Service Pages
   ======================================== */

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.05) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
}

.intro-section {
    padding: var(--section-padding);
}

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

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.problems-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.problems-section h2 {
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateY(-3px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.95rem;
    margin: 0;
}

.service-details {
    padding: var(--section-padding);
}

.service-details h2 {
    text-align: center;
}

.service-detail-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.service-detail-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-detail-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-detail-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.brands-section {
    padding: var(--section-padding);
    background: var(--bg-light);
    text-align: center;
}

.brands-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

.pricing-section {
    padding: var(--section-padding);
}

.pricing-section h2 {
    text-align: center;
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px var(--shadow);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 600;
    margin: 1rem 0;
}

.note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.warranty-box {
    background: var(--primary-dark);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.warranty-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.warranty-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.related-services {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.related-services h2 {
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.related-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateY(-3px);
}

.related-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.related-card p {
    color: var(--text-medium);
    margin: 0;
}

.related-card .arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent);
    font-size: 1.5rem;
    transition: var(--transition);
}

.related-card:hover .arrow {
    transform: translateX(5px);
}

/* ========================================
   Contact Page
   ======================================== */

.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.contact-item p,
.contact-item a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

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

.form-submit {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-cta {
        flex-direction: column;
    }
}

/* Hero Slider */
.hero-slider {
width: 100%;
height: auto;
overflow: hidden;
}


.hero-slide {
position: relative;
width: 100%;
height: 100vh;
}


.hero-slide picture,
.hero-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}


/* Overlay */
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
pointer-events: none;
}


/* Content */
.hero-content1 {
position: absolute;
top: 50%;
left: 8%;
transform: translateY(-50%);
max-width: 500px;
color: #fff;
z-index: 10;
}


.hero-content1 h1 {
font-size: 3rem;
font-weight: 600;
margin-bottom: 15px;
line-height: 1.2;
color: #fff;
}


.hero-content1 p {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 25px;
color: #fff;
}


.hero-btn {
display: inline-block;
padding: 12px 28px;
background: #a50c0c;
color: #fff;
text-decoration: none;
}

.hero-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 12;
    transition: var(--transition);
}

.hero-slider .slick-arrow::before {
    color: #ffffff;
    font-size: 20px;
    opacity: 1;
}

.hero-slider .slick-prev {
    left: 20px;
}

.hero-slider .slick-next {
    right: 20px;
}

.hero-slider .slick-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
}

.slick-dotted.slick-slider {
    margin-top: 7%;
    margin-bottom: 0px;
}

/* ========================================
   Modern Enhancements
   ======================================== */

/* Safety Badges */
.safety-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.badge-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.badge-item:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateY(-3px);
}

.safety-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.badge-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.badge-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Emergency Note */
.emergency-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid white;
}

.emergency-note p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

/* Review CTA */
.review-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonial Time */
.testimonial time {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: normal;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.faq-cta p {
    margin: 0;
    font-size: 1.1rem;
}

.faq-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-cta a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Footer Keywords */
.footer-keywords {
    margin-top: 1rem;
    opacity: 0.5;
}

.footer-keywords small {
    font-size: 0.75rem;
}

/* Social Icons in Footer */
.footer .social-links a {
    width: 45px;
    height: 45px;
}

.footer .social-links a svg {
    width: 20px;
    height: 20px;
}

/* Improved Grid Layouts for SEO Content */
.why-choose .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Better Service List Styling */
.service-list li {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Enhanced Hero Slider Content */
.hero-content1 h1,
.hero-content1 h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content1 p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    transition: var(--transition);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Lazy Loading Optimization */
img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* Skip to main content link (for accessibility) */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    right: 2rem;
    bottom: 6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #ffffff;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
    transition: var(--transition);
    z-index: 998;
}

.whatsapp-float__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1ebe5d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-float__icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
}

.whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 185, 129, 0.45);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 5rem;
        padding: 0.6rem;
    }

    .whatsapp-float__text {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-toggle,
    .hero-slider,
    .bottom-cta,
    .scroll-indicator,
    .social-links,
    .slick-dots,
    .slick-arrow {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Progressive Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f9fafb;
        --text-medium: #e5e7eb;
        --text-light: #9ca3af;
        --bg-white: #1f2937;
        --bg-light: #111827;
        --bg-gray: #374151;
        --border: #4b5563;
        --shadow: rgba(0, 0, 0, 0.3);
        --shadow-md: rgba(0, 0, 0, 0.4);
        --shadow-lg: rgba(0, 0, 0, 0.5);
    }
    
    .navbar {
        background: rgba(31, 41, 55, 0.95);
    }
    
    .hero-bg {
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .hero-content1 h1 {
        font-size: 2rem;
    }
    
    .hero-content1 p {
        font-size: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
    
    :root {
        --section-padding: 2rem 0;
    }
}

/* Modern Card Hover Effects */
.service-card,
.feature-card,
.problem-card,
.testimonial {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.feature-card::after,
.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(72, 177, 241, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover::after,
.feature-card:hover::after,
.problem-card:hover::after {
    opacity: 1;
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Badge Styles */
.badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}