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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.12);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    min-height: 80px;
}

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

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.2);
}

.logo img:not([src]) {
    display: none;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 8px;
    display: none; /* Hide placeholder when using real logo */
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.company-name {
    font-size: 1.6rem;
    font-weight: bold;
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-name:hover {
    color: #b91c1c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #dc2626;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 80%;
    left: 10%;
}

.get-quote-btn {
    background: #dc2626 !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    border: 2px solid #dc2626 !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.get-quote-btn:hover {
    background: transparent !important;
    color: #dc2626 !important;
    border-color: #dc2626 !important;
}

.get-quote-btn::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #dc2626;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(220, 38, 38, 0.1);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
}

.cta-button:hover {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.reviews-scroll {
    max-width: 100%;
}

.reviews-container {
    position: relative;
    width: 100%;
}

.reviews-track {
    white-space: nowrap;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.services-grid .service-card {
    grid-column: span 2;
}

.services-grid .service-card:nth-child(7),
.services-grid .service-card:nth-child(8) {
    grid-column: span 2;
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
}

.services-grid .service-card:nth-child(7) {
    grid-column: 2 / 4;
}

.services-grid .service-card:nth-child(8) {
    grid-column: 4 / 6;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-section {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-intro h3 {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.quote-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-method-icon i {
    font-size: 2rem;
    color: white;
}

.contact-method-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-method-detail {
    font-size: 1.1rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 1rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.contact-method-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 0 0 auto;
}

.contact-btn {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    margin-top: auto;
    margin-bottom: 0;
}

.contact-btn:hover {
    background: transparent;
    color: #dc2626;
}

.business-hours {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hours-card i {
    font-size: 3rem;
    color: #dc2626;
}

.hours-info h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.hours-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.hours-note {
    font-style: italic;
    color: #dc2626 !important;
    font-weight: 500;
}

.why-choose-us {
    margin-bottom: 3rem;
}

.why-choose-us h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-button.primary {
    background: white;
    color: #dc2626;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #dc2626;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #dc2626;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #dc2626;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #b91c1c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    nav {
        padding: 1rem 0;
        min-height: 70px;
        position: relative;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .company-name {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }

    .get-quote-btn {
        margin-top: 0.5rem;
        display: block;
        text-align: center;
        width: auto !important;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0.7rem 1.5rem !important;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid .service-card {
        grid-column: span 1;
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .services-grid .service-card:nth-child(7),
    .services-grid .service-card:nth-child(8) {
        grid-column: span 1;
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .contact-method-detail {
        font-size: 1rem;
        word-break: break-all;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hours-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

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

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 25px;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .services-grid .service-card {
        grid-column: span 1;
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .services-grid .service-card:nth-child(7),
    .services-grid .service-card:nth-child(8) {
        grid-column: span 1;
        margin: 0;
        max-width: none;
        justify-self: stretch;
    }

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

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

    /* Mobile Reviews */
    .reviews-scroll {
        margin-top: 2rem !important;
    }

    .review-item {
        width: 280px !important;
        height: 160px !important;
        margin-right: 1.5rem !important;
    }

    .review-item p {
        font-size: 0.85rem !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .service-card {
        padding: 1.25rem;
    }

    .contact-method-card {
        padding: 1.25rem;
    }

    .contact-method-detail {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .quote-intro h3 {
        font-size: 1.6rem;
    }

    .why-choose-us h3 {
        font-size: 1.6rem;
    }

    /* Small Mobile Reviews */
    .review-item {
        width: 250px !important;
        height: 150px !important;
    }

    .review-item p {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 3 !important;
    }

    .mobile-menu-toggle {
        font-size: 1.5rem;
    }

    .nav-links a {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
