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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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


/* =====================
   HEADER & NAV
   ===================== */

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-top {
    background: #0f0f0f;
    padding: 1px 0;
    font-size: 0.9em;
}

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

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.contact-info a:hover {
    color: #d43120;
}

.contact-info svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    height: 85px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

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

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s;
    position: relative;
    display: block;
    padding: 5px 0;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d43120;
    transition: width 0.3s;
}

.nav-links > li > a:hover::after {
    width: 100%;
}


/* =====================
   DROPDOWN
   ===================== */

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid white;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #2d2d2d;
    min-width: 220px;
    padding: 0px 0;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    margin-top: 10px;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: white;
    font-size: 1.1em;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
    min-height: 44px;
}

.dropdown-menu a:hover {
    background: #d43120;
    color: white;
}

.dropdown-menu a::after {
    display: none;
}


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

.hero {
    background: linear-gradient(rgba(0,0,0,0.625), rgba(0,0,0,0.625)), url('media/main-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 220px 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


/* =====================
   CTA BUTTON
   ===================== */

.cta-button {
    display: inline-block;
    background: #d43120;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 49, 32, 0.3);
    min-height: 44px;
    line-height: 1.4;
}

.cta-button:hover {
    background: #b82a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 49, 32, 0.4);
}


/* =====================
   SECTION TITLES
   ===================== */

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* =====================
   CONTENT SECTIONS
   ===================== */

.services-overview,
.about-intro,
.contact-content {
    padding: 60px 20px 80px;
    background: white;
}

.intro-content,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.intro-text h3,
.contact-info-section h2,
.contact-form-wrapper h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-section h2,
.contact-form-wrapper h2 {
    text-align: center;
}

.intro-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =====================
   SERVICES GRID
   ===================== */

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

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1em;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    color: #d43120;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-card a:hover {
    color: #b82a1a;
}


/* =====================
   BENEFITS / VALUES SECTIONS
   ===================== */

.benefits-section,
.values-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.benefits-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card,
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.benefit-icon,
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #d43120;
    stroke: #d43120;
}

.benefit-card h3,
.value-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p,
.value-card p {
    color: #666;
    line-height: 1.6;
}


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

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

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-badge {
    width: 60px;
    height: 60px;
    background: #d43120;
    color: white;
    font-size: 1.6em;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}


/* =====================
   FAQ SECTION
   ===================== */

.faq-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #d43120;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}


/* =====================
   REVIEWS SECTION
   ===================== */

.reviews-section {
    padding: 60px 20px 80px;
    background: white;
}

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

.review-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9em;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.1em;
}

.review-stars {
    color: #ffa500;
    font-size: 1em;
    margin-top: 5px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}


/* =====================
   GALLERY SECTION
   ===================== */

.gallery-section {
    padding: 60px 20px 80px;
    background: #f9f9f9;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =====================
   SERVICE AREAS
   ===================== */

.service-areas {
    padding: 60px 20px 80px;
    background: #f9f9f9;
}

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

.area-card {
    background: linear-gradient(135deg, #d43120 0%, #b82a1a 100%);
    color: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 49, 32, 0.3);
    transition: transform 0.3s;
}

.area-card:hover {
    transform: scale(1.05);
}

.area-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.area-card ul {
    list-style: none;
    font-size: 0.95em;
    line-height: 1.8;
    font-weight: normal;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.area-card ul::-webkit-scrollbar {
    width: 6px;
}

.area-card ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.area-card ul::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.area-card ul::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.area-card li {
    padding-left: 15px;
    position: relative;
}

.area-card li::before {
    content: "•";
    position: absolute;
    left: 0;
}


/* =====================
   CONTACT SECTION
   ===================== */

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.contact-item p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
    padding-left: 34px;
}

.contact-item a {
    color: #d43120;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #b82a1a;
}


/* =====================
   MAP SECTION
   ===================== */

.map-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2em;
}

.map-embed {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}


/* =====================
   CTA SECTION (with form)
   ===================== */

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-text {
    text-align: left;
}

.cta-section h2 {
    font-size: 2.4em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}


/* =====================
   FORMS
   ===================== */

.contact-form,
.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 0;
}

.contact-form-section {
    background: #f9f9f9;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
    color: #333;
    font-family: inherit;
    /* Prevent iOS zoom on focus — needs min 16px font-size */
    font-size: max(1em, 16px);
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea,
.contact-form-section .form-group select {
    border: 2px solid #ddd;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d43120;
}

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

.contact-form-section .form-group textarea {
    min-height: 150px;
}

.form-submit {
    width: 100%;
    background: #d43120;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 44px;
    touch-action: manipulation;
}

.form-submit:hover {
    background: #b82a1a;
}

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

footer {
    background: #0f0f0f;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #d43120;
    margin-bottom: 20px;
}

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

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

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

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

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


/* =====================
   HAMBURGER BUTTON
   ===================== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    /* Enlarge tap target without affecting layout */
    position: relative;
}

.hamburger::before {
    content: '';
    position: absolute;
    inset: -12px -10px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* =====================
   TABLET (max-width: 968px)
   ===================== */

@media (max-width: 968px) {
    .intro-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-text {
        text-align: center;
    }
}


/* =====================
   MOBILE (max-width: 768px)
   ===================== */

@media (max-width: 768px) {
    /* Header top bar */
    .serving-text {
        display: none;
    }

    .logo {
        height: 75px;
    }

    .header-top .container {
        justify-content: center;
    }

    .contact-info {
        justify-content: center;
        gap: 40px;
    }

    .intro-text h3 {
        text-align: center;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2d2d2d;
        flex-direction: column;
        gap: 0;
        padding: 0px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.4);
        z-index: 1050;
    }

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

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li > a {
        padding: 16px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        width: 100%;
        display: flex;
        align-items: center;
        font-size: 1.1em;
        min-height: 44px;
    }

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

    /* Mobile dropdown — toggle via JS class */
    .dropdown-menu {
        position: static;
        transform: none !important;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border-radius: 0;
        background: #1a1a1a;
        padding: 0;
    }

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

    .dropdown-menu a {
        padding: 14px 40px;
        font-size: 1.05em;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .dropdown > a {
        justify-content: space-between;
    }

    /* Hero */
    .hero {
        padding: 180px 20px;
    }

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

    .hero p {
        font-size: 1.2em;
    }

    .cta-phone {
        display: none;
    }

    /* Typography */
    .section-title {
        font-size: 1.8em;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.1em;
    }

    /* Stat numbers */
    .stat-number {
        font-size: 2.5em;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        text-align: center;
    }

    /* Forms — prevent iOS auto-zoom on focus */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    /* Gallery — 2 column on tablet-ish, 1 on small */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    /* Contact form padding */
    .contact-form,
    .contact-form-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4em;
    }

    .cta-button {
        padding: 15px 24px;
        font-size: 1em;
    }

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

    .gallery-grid,
    .reviews-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .area-card:hover {
        transform: none;
    }
}


/* =====================
   404 PAGE
   ===================== */

.error-section {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
    min-height: calc(100vh - 370px);
    display: flex;
    align-items: center;
}

.error-section .container {
    width: 100%;
}

.error-graphic {
    margin-bottom: 40px;
}

.error-numeral {
    font-size: 11em;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -4px;
    line-height: 1;
}

.error-divider {
    width: 60px;
    height: 4px;
    background: #d43120;
    border-radius: 2px;
    margin: 0 auto 30px;
}

.error-section h1 {
    font-size: 2.4em;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.error-section p {
    font-size: 1.2em;
    color: #666;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.error-links p {
    font-size: 1em;
    color: #999;
    margin-bottom: 20px;
}

.error-links ul {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links ul li a {
    color: #d43120;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s;
}

.error-links ul li a:hover {
    color: #b82a1a;
}

@media (max-width: 600px) {
    .error-numeral {
        font-size: 7em;
    }

    .error-section h1 {
        font-size: 1.8em;
    }

    .error-section p {
        font-size: 1.05em;
    }
}