/* Base Styles */
:root {
    /* Mountain-inspired color palette */
    --primary: #355c7d;     /* Alpine lake blue */
    --secondary: #39435e;   /* Mountain shadow blue */
    --accent: #c36a2d;      /* Cedar wood brown */
    --light: #f5f1e9;       /* Warm cabin cream */
    --dark: #2d2318;        /* Rich wood brown */
    --gray: #6c757d;        /* Stone gray */
    --forest: #3a5a40;      /* Pine forest green */
    --warm-highlight: #e6c392; /* Aspen gold */
    --success: #3a5a40;     /* Forest green */
    --danger: #a93e3e;      /* Mountain sunset red */
    --warning: #d9a566;     /* Muted gold */
    --info: #5b8a94;        /* Mountain water blue */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #3d3d3d;
    background-color: #fff;
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
}

/* Standard Navigation CSS */
.header {
    background-color: var(--light);
    box-shadow: 0 2px 15px rgba(45, 35, 24, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Page Header with Logo */
.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header-text {
    text-align: left;
    flex: 1;
}

.page-header-logo, .hero .page-header-logo {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-left: 30px;
    position: relative;
}

.hero .page-header-logo {
    width: 200px;
    height: 200px;
}

.page-header-logo img, .hero .page-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header-logo:hover img, .hero .page-header-logo:hover img {
    transform: scale(1.05);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .page-header-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header-text {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .page-header-logo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .page-header-logo {
        width: 60px;
        height: 60px;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
}

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

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 20px rgba(45, 35, 24, 0.1);
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    border-top: 3px solid var(--accent);
}

.dropdown-content a {
    color: var(--dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--light);
    color: var(--accent);
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-cta {
    background-color: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(195, 106, 45, 0.2);
}

.nav-cta:hover {
    background-color: #b15a20;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195, 106, 45, 0.3);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(45, 35, 24, 0.75), rgba(57, 67, 94, 0.75)), 
                url('/api/placeholder/1920/500') center/cover no-repeat;
    color: white;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to right, var(--accent), var(--primary), var(--forest));
    opacity: 0.7;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    float: left;
}

.breadcrumb li {
    margin: 0 10px;
}

.breadcrumb a {
    color: var(--warm-highlight);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

/* Common Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 12px rgba(195, 106, 45, 0.15);
}

.btn:hover {
    background-color: #b15a20;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(195, 106, 45, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.btn-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
    box-shadow: 0 4px 12px rgba(53, 92, 125, 0.15);
}

.btn-submit:hover {
    background-color: #2b4b68;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(53, 92, 125, 0.25);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 35, 24, 0.7), rgba(57, 67, 94, 0.7)), 
                url('/api/placeholder/1920/800') center/cover no-repeat;
    color: white;
    padding: 140px 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, var(--accent), var(--primary), var(--forest));
    opacity: 0.7;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .hero .page-header-logo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-header .container, .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header-text {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .page-header-logo {
        width: 100px;
        height: 100px;
        margin-left: 0;
    }
    
    .hero .page-header-logo {
        width: 150px;
        height: 150px;
        margin-left: 0;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header-logo {
        width: 80px;
        height: 80px;
    }
    
    .hero .page-header-logo {
        width: 120px;
        height: 120px;
    }
}

/* Page Header with Logo */
.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header-text {
    text-align: left;
}

.page-header-logo, .hero .page-header-logo {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-left: 30px;
}

.page-header-logo img, .hero .page-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-header-logo:hover img, .hero .page-header-logo:hover img {
    transform: scale(1.05);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .page-header-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .page-header .container, .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header-text {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .page-header-logo {
        width: 70px;
        height: 70px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero .page-header-logo {
        margin-left: 0;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .page-header-logo {
        width: 60px;
        height: 60px;
    }
}

/* Service Section Styles */
.service-hero {
    padding: 90px 0;
    background-color: white;
}

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

.service-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.service-intro-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 3px;
}

.service-intro-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.service-intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.1);
    position: relative;
}

.service-intro-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(195, 106, 45, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.service-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.service-intro-image:hover img {
    transform: scale(1.03);
}

/* Process Section Styles */
.process-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    opacity: 0.1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.process-card {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    border-bottom: 4px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 12px 12px 0 0;
    opacity: 0.7;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(195, 106, 45, 0.1);
}

.process-card:hover .process-icon {
    background-color: var(--accent);
    color: white;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(195, 106, 45, 0.2);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.process-card:hover h3 {
    color: var(--accent);
}

/* Approach Steps */
.approach-section {
    padding: 90px 0;
    background-color: white;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(53, 92, 125, 0.15);
    transition: transform 0.3s;
}

.step:hover .step-number {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(53, 92, 125, 0.2);
}

.step-content {
    background-color: var(--light);
    padding: 30px;
    border-radius: 12px;
    flex-grow: 1;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.step:hover .step-content {
    background-color: white;
    box-shadow: 0 10px 30px rgba(45, 35, 24, 0.05);
    border-left-color: var(--accent);
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
    transition: color 0.3s;
}

.step:hover .step-content h3 {
    color: var(--accent);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    z-index: 1;
    opacity: 0.4;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(45, 35, 24, 0.85), rgba(57, 67, 94, 0.85)), 
                url('/api/placeholder/1920/600') center/cover no-repeat;
    color: white;
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    opacity: 0.7;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.cta-phone {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-highlight);
    text-decoration: none;
    display: block;
    margin: 25px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.cta-phone:hover {
    color: white;
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

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

.feature {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    text-align: center;
    transition: all 0.4s;
    border-bottom: 4px solid transparent;
}

.feature:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(53, 92, 125, 0.15);
}

.feature:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(53, 92, 125, 0.25);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.feature:hover h3 {
    color: var(--accent);
}

/* Values Section */
.values {
    padding: 90px 0;
    background-color: white;
}

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background-color: var(--light);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.7;
    transition: width 0.3s ease;
}

.value-item:hover {
    background-color: white;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
    transform: translateY(-10px);
}

.value-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
}

.value-item:hover h3 {
    color: var(--accent);
}

/* Emergency Call Section */
.emergency {
    background: linear-gradient(to right, var(--danger), #8a3232);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.emergency h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.emergency-phone {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-highlight);
    text-decoration: none;
    display: block;
    margin: 25px 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

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

/* Emergency Hero */
.emergency-hero {
    padding: 90px 0;
    background: linear-gradient(to right, var(--danger), #8a3232);
    color: white;
    text-align: center;
    position: relative;
}

.emergency-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, #8a3232, var(--danger));
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Promise Section */
.promise-section {
    padding: 90px 0;
    background-color: white;
}

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

.promise-card {
    background-color: var(--light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    text-align: center;
    border-top: 5px solid var(--primary);
}

.promise-card:hover {
    transform: translateY(-10px);
    background-color: white;
    border-top-color: var(--accent);
}

.promise-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(169, 62, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--danger);
    transition: all 0.3s;
}

.promise-card:hover .promise-icon {
    background-color: var(--danger);
    color: white;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(169, 62, 62, 0.15);
}

.promise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.promise-card:hover h3 {
    color: var(--accent);
}

/* Emergency Services */
.emergency-services {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.emergency-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--danger), var(--primary));
    opacity: 0.1;
}

.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.service-tab {
    padding: 15px 25px;
    background-color: white;
    border: none;
    margin: 0 8px 10px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(45, 35, 24, 0.05);
}

.service-tab.active {
    background: linear-gradient(to right, var(--danger), #8a3232);
    color: white;
    box-shadow: 0 5px 15px rgba(169, 62, 62, 0.15);
}

.service-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 35, 24, 0.08);
}

.service-content {
    display: none;
    animation: fadeIn 0.5s;
}

.service-content.active {
    display: block;
}

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

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

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.1);
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(195, 106, 45, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.service-details h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.service-details h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 3px;
}

.service-details p {
    margin-bottom: 25px;
    color: #555;
}

.service-list {
    list-style: none;
    margin-top: 25px;
}

.service-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(45, 35, 24, 0.1);
    transition: all 0.3s;
}

.service-list li:hover {
    transform: translateX(5px);
}

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

.list-icon {
    color: var(--danger);
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.service-list li:hover .list-icon {
    transform: scale(1.2);
}

/* What to Do Section */
.what-to-do {
    padding: 90px 0;
    background-color: white;
}

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

.tip-card {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    position: relative;
}

.tip-card:hover {
    transform: translateY(-10px);
    background-color: white;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.tip-header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 25px;
    text-align: center;
}

.tip-header h3 {
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.tip-content {
    padding: 30px;
}

.tip-list {
    list-style: none;
}

.tip-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(45, 35, 24, 0.1);
    transition: all 0.3s;
}

.tip-list li:hover {
    transform: translateX(5px);
}

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

.tip-icon {
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.tip-list li:hover .tip-icon {
    color: var(--accent);
    transform: scale(1.2);
}

/* Response Time Map */
.response-map {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.1);
    margin-top: 50px;
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(195, 106, 45, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.map-container:hover img {
    transform: scale(1.03);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background-color: white;
}

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

.accordion-item {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.accordion-header {
    background-color: var(--light);
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-item.active .accordion-header,
.accordion-header:hover {
    background-color: white;
}

.accordion-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--secondary);
    transition: color 0.3s;
}

.accordion-item.active .accordion-header h3,
.accordion-header:hover h3 {
    color: var(--accent);
}

.accordion-icon {
    transition: transform 0.3s;
    color: var(--accent);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
}

.accordion-item.active {
    border-left: 4px solid var(--accent);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 25px;
}

/* Team Section */
.team-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
    transition: all 0.4s;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 35, 24, 0.1);
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover::after {
    opacity: 1;
}

.member-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(45, 35, 24, 0.2));
    pointer-events: none;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary);
    transition: color 0.3s;
}

.team-member:hover .member-info h3 {
    color: var(--accent);
}

.member-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-size: 1.05rem;
}

/* About Section */
.about-section {
    padding: 90px 0;
    background-color: white;
}

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

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.1);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(195, 106, 45, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text {
    font-size: 1.1rem;
    color: #555;
}

.about-text p {
    margin-bottom: 25px;
}

/* Warning Signs Section */
.warning-signs {
    padding: 90px 0;
    background-color: white;
}

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

.signs-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
}

.signs-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 3px;
}

.signs-list {
    list-style: none;
}

.signs-list li {
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(45, 35, 24, 0.1);
    transition: all 0.3s;
}

.signs-list li:hover {
    transform: translateX(5px);
}

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

.sign-icon {
    color: var(--danger);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
    transition: transform 0.3s;
}

.signs-list li:hover .sign-icon {
    transform: scale(1.2);
}

.sign-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary);
    transition: color 0.3s;
}

.signs-list li:hover .sign-content h4 {
    color: var(--accent);
}

.signs-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.1);
    position: relative;
}

.signs-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(195, 106, 45, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.signs-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.signs-image:hover img {
    transform: scale(1.03);
}

/* Contact Section */
.contact-section {
    padding: 90px 0;
    background-color: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 3px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(195, 106, 45, 0.1);
}

.contact-item:hover .contact-icon {
    background-color: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(195, 106, 45, 0.15);
}

.contact-text h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-item:hover .contact-text h4 {
    color: var(--accent);
}

.contact-text p, .contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    margin-top: 35px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--accent);
    margin-right: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(45, 35, 24, 0.05);
}

.social-links a:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(195, 106, 45, 0.15);
}

/* Form Styles */
.contact-form-container {
    position: relative;
}

.contact-form {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
    padding: 40px;
    position: relative;
    z-index: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 12px 0 0 12px;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 15px auto 0;
    border-radius: 3px;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--light);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 5px 15px rgba(195, 106, 45, 0.1);
    background-color: white;
}

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

.form-control.is-invalid {
    border-color: var(--danger);
    background-color: rgba(169, 62, 62, 0.05);
}

.invalid-feedback {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
}

.is-invalid + .invalid-feedback {
    display: block;
}

/* Success Message */
.success-message {
    display: none;
    background-color: var(--success);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(58, 90, 64, 0.15);
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
}

.success-message h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Quote Process */
.quote-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.quote-process {
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: rgba(45, 35, 24, 0.1);
    z-index: 1;
    border-radius: 3px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 20%;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(53, 92, 125, 0.1);
}

.process-step.active .step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(53, 92, 125, 0.2);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
    transition: color 0.3s;
}

.process-step.active h3 {
    color: var(--accent);
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Quote Form */
.quote-form-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 12px 0 0 12px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(45, 35, 24, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 25px;
}

.form-group {
    flex: 1 0 calc(50% - 20px);
    margin: 0 10px;
}

.form-group.full-width {
    flex: 1 0 calc(100% - 20px);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.form-check-input {
    margin-right: 12px;
}

.file-upload {
    display: block;
    position: relative;
    width: 100%;
    height: 150px;
    border: 2px dashed rgba(45, 35, 24, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--light);
}

.file-upload:hover {
    border-color: var(--accent);
    background-color: rgba(195, 106, 45, 0.05);
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.file-upload-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 15px;
    opacity: 0.7;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.preview-item {
    width: 80px;
    height: 80px;
    margin: 5px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 10px rgba(45, 35, 24, 0.1);
    transition: all 0.3s;
}

.preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(45, 35, 24, 0.15);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    background-color: rgba(169, 62, 62, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.3s;
}

.preview-remove:hover {
    background-color: var(--danger);
    transform: scale(1.1);
}

/* Error Message */
.error-message {
    display: none;
    background-color: var(--danger);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(169, 62, 62, 0.15);
    position: relative;
    overflow: hidden;
}

.error-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
}

.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Health Risks Section */
.health-risks {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.health-risks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--info), var(--primary));
    opacity: 0.1;
}

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

.risk-card {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--info);
}

.risk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.risk-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(91, 138, 148, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--info);
    transition: all 0.3s;
}

.risk-card:hover .risk-icon {
    background-color: var(--info);
    color: white;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 138, 148, 0.15);
}

.risk-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.risk-card:hover h3 {
    color: var(--info);
}

/* Services Section */
.services-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    opacity: 0.1;
}

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

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    pointer-events: none;
}

.service-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.service-card:hover .service-title {
    bottom: 25px;
    color: var(--warm-highlight);
}

.service-content {
    padding: 30px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    opacity: 0.1;
}

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

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    position: relative;
    transition: all 0.4s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(53, 92, 125, 0.9), rgba(195, 106, 45, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.4s;
    padding: 20px;
    text-align: center;
    transform: translateY(20px);
}

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

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

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.portfolio-category {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.portfolio-button {
    background-color: white;
    color: var(--accent);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-button:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0;
    background-color: white;
}

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

.benefit-card {
    background-color: var(--light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: width 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background-color: white;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.benefit-card:hover::before {
    width: 100%;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.benefit-card:hover h3 {
    color: var(--accent);
}

/* Prevention Section */
.prevention-section {
    padding: 90px 0;
    background-color: white;
}

.prevention-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.prevention-card {
    border: 1px solid rgba(45, 35, 24, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    background-color: white;
}

.prevention-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
    border-color: var(--info);
}

.prevention-image {
    height: 220px;
    overflow: hidden;
}

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

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

.prevention-content {
    padding: 30px;
}

.prevention-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s;
}

.prevention-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--info));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.prevention-card:hover .prevention-content h3 {
    color: var(--info);
}

.prevention-card:hover .prevention-content h3::after {
    width: 80px;
}

/* Equipment Section */
.equipment-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--info), var(--primary));
    opacity: 0.1;
}

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

.equipment-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.equipment-image {
    height: 220px;
    overflow: hidden;
}

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

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

.equipment-content {
    padding: 30px;
}

.equipment-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s;
}

.equipment-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--info), var(--primary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.equipment-item:hover .equipment-content h3 {
    color: var(--info);
}

.equipment-item:hover .equipment-content h3::after {
    width: 80px;
}

/* Technology Section */
.technology-section {
    padding: 90px 0;
    background-color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.tech-item {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    border-bottom: 4px solid transparent;
}

.tech-item:hover {
    transform: translateY(-10px);
    background-color: white;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
    border-bottom-color: var(--primary);
}

.tech-image {
    height: 220px;
    overflow: hidden;
}

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

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

.tech-content {
    padding: 30px;
}

.tech-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.tech-item:hover .tech-content h3 {
    color: var(--primary);
}

/* Insurance Section */
.insurance-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.insurance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    opacity: 0.1;
}

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

.insurance-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.1);
    position: relative;
}

.insurance-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(195, 106, 45, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.insurance-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.insurance-image:hover img {
    transform: scale(1.03);
}

.insurance-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.insurance-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 3px;
}

.insurance-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.insurance-steps {
    list-style: none;
    counter-reset: insurance-counter;
}

.insurance-steps li {
    counter-increment: insurance-counter;
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(45, 35, 24, 0.1);
    transition: all 0.3s;
}

.insurance-steps li:hover {
    transform: translateX(5px);
}

.insurance-steps li:last-child {
    border-bottom: none;
}

.insurance-steps li::before {
    content: counter(insurance-counter);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(195, 106, 45, 0.1);
}

.insurance-steps li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(195, 106, 45, 0.15);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: #eee;
    padding: 70px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--accent), var(--primary));
}

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

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--warm-highlight);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: var(--warm-highlight);
    transform: translateX(5px);
}

.footer-column .social-links {
    margin-top: 25px;
}

.footer-column .social-links a {
    background-color: rgba(255,255,255,0.1);
    color: #eee;
}

.footer-column .social-links a:hover {
    background-color: var(--accent);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

/* Hidden Dangers Section */
.dangers-section {
    padding: 90px 0;
    background-color: white;
}

.danger-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.danger-card {
    background-color: var(--light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
    border-left: 5px solid var(--danger);
    position: relative;
    overflow: hidden;
}

.danger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--danger);
    transition: width 0.3s ease;
}

.danger-card:hover {
    transform: translateY(-10px);
    background-color: white;
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.danger-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.danger-icon {
    font-size: 2.5rem;
    color: var(--danger);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.danger-card:hover .danger-icon {
    transform: scale(1.1) translateY(-5px);
}

.danger-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: color 0.3s;
}

.danger-card:hover h3 {
    color: var(--danger);
}

/* Signs Section */
.signs-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.signs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--danger), var(--primary));
    opacity: 0.1;
}

/* Detection Technology Section */
.detection-section {
    padding: 90px 0;
    background-color: var(--light);
    position: relative;
}

.detection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--info));
    opacity: 0.1;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.tech-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 35, 24, 0.05);
    transition: all 0.4s;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 35, 24, 0.08);
}

.tech-card-image {
    height: 220px;
    overflow: hidden;
}

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

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

.tech-card-content {
    padding: 30px;
}

.tech-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s;
}

.tech-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--info));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.tech-card:hover .tech-card-content h3 {
    color: var(--info);
}

.tech-card:hover .tech-card-content h3::after {
    width: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-container {
        flex-direction: column;
        max-width: 400px;
    }
    
    .process-container::before {
        top: 0;
        bottom: 0;
        right: auto;
        left: 40px;
        width: 2px;
        height: 100%;
    }
    
    .process-step {
        flex-direction: row;
        width: 100%;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .step-icon {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .service-intro, 
    .signs-content, 
    .insurance-content,
    .about-content,
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-intro-image,
    .signs-image,
    .insurance-image,
    .about-image,
    .service-image {
        order: -1;
    }
    
    .hero h2,
    .page-header h1,
    .service-intro-content h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(45, 35, 24, 0.1);
        padding: 25px 0;
        z-index: 100;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        min-width: unset;
        border-radius: 0;
        border-top: none;
        background-color: var(--light);
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 12px;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(195, 106, 45, 0.1);
    }
    
    .hero h2,
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .service-intro-content h2,
    .cta-content h2,
    .section-title h2,
    .signs-text h2,
    .insurance-text h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .cta-phone,
    .emergency-phone {
        font-size: 1.8rem;
    }
    
    .hero p,
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        order: -1;
    }
    
    .contact-form,
    .quote-form-container {
        padding: 25px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
        margin-bottom: 25px;
    }
    
    .form-group {
        flex: 1 0 calc(100% - 20px);
    }
    
    .file-upload {
        height: 120px;
    }
    
    .footer-content {
        gap: 30px;
    }
}
