/* ========================================
   SCRUB SQUAD PROFESSIONAL WEBSITE STYLES
   Similar to Veteran Interior Construction
======================================== */

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

:root {
    /* Scrub Squad Color Scheme */
    --primary-navy: #1e3a5f;
    --primary-green: #2d8a3e;
    --dark-navy: #152a45;
    --light-navy: #2d4a6f;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --light-gray: #f5f5f5;
    --nav-gray: #e8e8e8;
    --white: #ffffff;

    /* Backward compatibility aliases */
    --primary-blue: #1e3a5f;
    --primary-orange: #2d8a3e;
    --dark-blue: #152a45;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

/* ========================================
   NAVIGATION
======================================== */

/* Top Utility Bar */
.top-bar {
    background: var(--dark-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.top-bar-right a:hover {
    color: var(--primary-orange);
}

.navbar {
    background: var(--nav-gray);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    max-height: 65px;
    width: auto;
}

.logo-text {
    display: inline-block;
}

.logo-blue {
    color: var(--primary-blue);
}

.logo-orange {
    color: var(--primary-green);
}

.logo-green {
    color: var(--primary-green);
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: block;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-menu > li > a.btn-quote {
    background: var(--primary-green);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.nav-menu > li > a.btn-quote:hover {
    background: #256f32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 138, 62, 0.4);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
    padding-left: 30px;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('itachiipr_Wide_professional_website_hero_image_of_a_modern_comm_de2e5460-dac0-4993-a6da-9dfaac6554fb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-services {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #256f32;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 138, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.divider {
    opacity: 0.7;
}

/* ========================================
   QUICK FACTS
======================================== */

.quick-facts {
    background: #f5f5f5;
    padding: 60px 0;
    color: var(--text-dark);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.fact-item {
    padding: 20px;
}

.fact-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.fact-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.fact-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ========================================
   SECTION STYLING
======================================== */

.services-section,
.service-areas,
.testimonials {
    padding: 60px 0;
    background: var(--white);
}

.section {
    padding: 60px 0;
}

/* Two Column Layout */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.two-column-section.reverse {
    direction: rtl;
}

.two-column-section.reverse > * {
    direction: ltr;
}

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

.content-column h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.content-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-column p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.content-column ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-column ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-gray);
}

.image-column {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(76, 175, 80, 0.1));
    padding: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-column img {
    max-width: 100%;
    border-radius: 8px;
}

.quick-facts-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.quick-facts-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 700;
}

.quick-facts-box ul {
    list-style: none;
    padding: 0;
}

.quick-facts-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.quick-facts-box ul li:last-child {
    border-bottom: none;
}

/* ========================================
   SERVICE NAVIGATION
======================================== */

.service-nav {
    background: var(--primary-navy);
    border-bottom: 3px solid var(--primary-green);
    padding: 0;
}

.service-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.service-nav-link {
    padding: 18px 30px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.service-nav-link:hover {
    color: var(--white);
    background: var(--light-navy);
}

.service-nav-link.active {
    color: var(--white);
    border-bottom: 3px solid var(--primary-green);
    background: var(--light-navy);
}

@media (max-width: 768px) {
    .service-nav-links {
        flex-direction: column;
        gap: 0;
    }

    .service-nav-link {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .service-nav-link.active {
        border-bottom: 1px solid var(--primary-green);
        border-left: 3px solid var(--primary-green);
        background: var(--light-navy);
    }
}

.content-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
    margin: 0;
    border-top: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.content-intro .container {
    max-width: 1100px;
    padding: 45px 50px;
}

.content-intro p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 0;
    color: var(--text-dark);
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.content-intro p::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .content-intro .container {
        padding: 35px 25px;
    }

    .content-intro p {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 22px;
    }

    .content-intro p::before {
        font-size: 20px;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column-section.reverse {
        direction: ltr;
    }

    .image-column {
        min-height: 300px;
        padding: 40px;
    }
}

.why-choose-us,
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.bg-light,
.section-gray {
    background: var(--light-gray);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   SERVICE CARDS
======================================== */

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-blue);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

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

.btn-learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.btn-learn-more:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* ========================================
   BENEFITS GRID
======================================== */

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

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 64px;
    height: 64px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   LOCATION CARDS
======================================== */

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

.location-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.location-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.location-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-location {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-location:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* ========================================
   PROCESS STEPS
======================================== */

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    opacity: 0.9;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
======================================== */

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

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card .stars {
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-blue);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('office-cleaning-service.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section > div > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-white {
    background: var(--white);
    color: var(--primary-navy);
    font-size: 18px;
    padding: 18px 45px;
}

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

.btn-light:hover {
    background: var(--light-gray);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-phone {
    font-size: 18px;
    margin: 0;
}

.cta-phone a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--white);
    transition: all 0.3s ease;
}

.cta-phone a:hover {
    opacity: 0.8;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    max-height: 80px;
    width: auto;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.footer-column p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-phone {
    margin-top: 15px;
}

.footer-phone a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--white);
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 25px;
    text-align: center;
    color: #999999;
    font-size: 14px;
}

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

.footer-bottom a:hover {
    color: var(--primary-orange);
}

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

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

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 0;
    }

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

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-menu > li > a {
        padding: 15px 0;
    }

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

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

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

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

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

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

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-grid,
    .benefits-grid,
    .locations-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section > div > p {
        font-size: 16px;
    }

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

/* ========================================
   ANIMATIONS
======================================== */

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}
