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

:root {
    --dark-navy: #999999;
    --darker-navy: #333333;
    --green-accent: #D32F2F;
    --light-green: #D32F2F;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --medium-gray: #666;
    --border-gray: #ddd;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: var(--dark-navy);
    color: var(--white);
    padding: 12px 0;
}

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

.emergency-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.emergency-badge {
    background: var(--green-accent);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

/* Header */
.header {
    background: var(--darker-navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.logo img {
    width: 50px;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: block;
}

.nav-menu>li>a:hover {
    color: var(--light-green);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker-navy);
    min-width: 260px;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

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

.dropdown-menu li a {
    padding: 12px 20px;
    color: var(--white);
    display: block;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: rgba(211, 47, 47, 0.2);
    padding-left: 25px;
}

.dropdown>a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

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

.btn-primary {
    background: var(--green-accent);
    padding: 12px 28px;
    border-radius: 5px;
    color: var(--white) !important;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--light-green);
}

/* Hero Section Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.tree-slide {
    background-image: url('../img/tree.jpg');
}

.water-slide {
    background-image: url('../img/water.png');
}

.mold-slide {
    background-image: url('../img/mold.png');
}

.fire-slide {
    background-image: url('../img/fire.png');
}

.storm-slide {
    background-image: url('../img/storm.png');
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--white);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 300;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--green-accent);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-arrow i {
    font-size: 20px;
}

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

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

.slider-dot.active {
    background: var(--green-accent);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Services Section - All 6 Services */
.services-preview {
    padding: 80px 0;
    background: #000000;
}

.section-title-main {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--darker-navy);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle-main {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 60px;
    font-weight: 400;
}

.services-grid-3 {
    display: flex;
    gap: 20px;
}

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

.service-card-large {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    width: 100%;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-badge-primary {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green-accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tree-removal {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/tree.jpg');
    background-position: center;
    background-size: cover;
}

.water-damage {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/water.png');
    background-position: center;
    background-size: cover;
}

.mold-remediation {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/mold.png');
    background-position: center;
    background-size: cover;
}

.fire-damage {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/fire.png');
    background-position: center;
    background-size: cover;
}

.storm-wind {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/storm.png');
    background-position: center;
    background-size: cover;
}

.emergency-cleanup {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/emergency.png');
    background-position: center;
    background-size: cover;
}

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

.service-card-content h3 {
    font-size: 19px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-card-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.btn-service {
    display: inline-block;
    background: var(--green-accent);
    color: var(--white);
    padding: 11px 26px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-service:hover {
    background: var(--light-green);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--darker-navy);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle-center {
    text-align: center;
    font-size: 17px;
    color: var(--medium-gray);
    margin-bottom: 50px;
    font-weight: 400;
}

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

.process-item {
    text-align: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--green-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
    transition: transform 0.3s;
}

.process-item:hover .process-icon {
    transform: scale(1.1);
}

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

.process-item h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--darker-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.process-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: #000000;
    border-top: 1px solid var(--border-gray);
}

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

.trust-badge {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.trust-badge:hover .trust-icon {
    border-color: #D32F2F;
    transform: scale(1.1);
}

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

.trust-badge h4 {
    font-size: 14px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.trust-badge p {
    color: #999999;
    font-size: 13px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--darker-navy);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--green-accent);
    color: var(--white);
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: var(--light-green);
    transform: scale(1.05);
}

/* All Services Section (Footer Services) */
.all-services {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.services-col h3 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--darker-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-list,
.contact-list,
.links-list {
    list-style: none;
}
.contact-list a{
    text-decoration: none;
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.services-list li,
.contact-list li , .services-list a{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
    font-size: 14px;
    text-decoration: none;
}

.services-list i {
    color: var(--green-accent);
    font-size: 12px;
}

.contact-list i {
    color: var(--green-accent);
    font-size: 14px;
}

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

.links-list a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.links-list a:hover {
    color: var(--green-accent);
}

.location-text {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-text i {
    color: var(--green-accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--darker-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--green-accent);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--darker-navy);
    color: #888;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: inline-block;
}

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

.footer-col p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-green);
    margin: 10px 0;
}

.footer-email {
    color: var(--light-green);
}

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

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

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

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

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

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

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

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 178px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 140px);
        background: var(--darker-navy);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-arrow i {
        font-size: 16px;
    }

    .services-grid-3 {
        flex-wrap: wrap;
    }

    .service-card-large {
        width: 100%;
    }

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

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

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

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

    .cta-title {
        font-size: 28px;
    }

    .btn-cta-large {
        font-size: 20px;
        padding: 18px 35px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 450px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .slider-arrow {
        display: none;
    }

    .btn-hero {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .section-title-main {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-cta-large {
        font-size: 18px;
        padding: 16px 30px;
        gap: 12px;
    }

    .services-col h3 {
        font-size: 16px;
    }

    .emergency-number {
        font-size: 16px;
    }

    .emergency-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
}