/* ============================================
   Source: assets/css/static-pages.css
   ============================================ */

/* ============================================
   Oregon Exterior Experts - Static Pages CSS
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #104377;
    --color-secondary: #02B100;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #e0e0e0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --container-max: 1200px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* Bold styling for internal content links */
.feature-content p a,
.section p a,
p a[href^="/"] {
    font-weight: 800;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP HEADER BAR
   ============================================ */
.top-header {
    background-color: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gray-medium);
}

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

.top-header .logo {
    display: inline-block;
    line-height: 0;
}

.top-header .logo img {
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
    font-size: 24px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item a {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:not(.btn-alt) {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn:not(.btn-alt):hover {
    background-color: #029900;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 177, 0, 0.3);
}

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

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

/* Button with icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon svg {
    flex-shrink: 0;
}

/* Outlined button (white border) */
.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-content {
    color: var(--color-white);
}

.hero-content .tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.0;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form-wrapper {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.quote-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 20px 0;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--color-gray-medium);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 67, 119, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group > label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.checkbox-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    cursor: pointer;
}

.checkbox-options input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    width: 100%;
    padding: 14px 28px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 177, 0, 0.3);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-xl);
}

.section-gray {
    background-color: var(--color-gray-light);
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.roofing-solutions-bg {
    background-image: url('../../assets/images/roofing-oregon-exterior-experts.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.roofing-solutions-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 0;
}

.roofing-solutions-bg > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title .lead {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-title span:not(.lead):not(.sep-primary):not(.sep-secondary) {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.1;
}

.section-title span.text-secondary:not(.sep-primary):not(.sep-secondary) {
    color: var(--color-secondary) !important;
}

.section-title span.text-primary:not(.sep-primary):not(.sep-secondary) {
    color: var(--color-primary) !important;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-top: -5px;
}

.separator {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.sep-primary {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
}

.sep-secondary {
    width: 30px;
    height: 4px;
    background-color: var(--color-secondary);
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-section.reverse {
    direction: rtl;
}

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

.feature-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.feature-content .btn {
    margin-top: 10px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card a {
    display: block;
    padding: 25px 15px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card:hover a {
    color: var(--color-secondary);
}

/* ============================================
   REVIEWS / CTA SECTION
   ============================================ */
.reviews-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reviews-section .tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.reviews-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 30px 0;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: var(--spacing-lg) 20px;
    background-color: var(--color-white);
    flex-wrap: wrap;
}

.trust-badges img {
    max-height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.trust-badges a:hover img {
    transform: scale(1.05);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-list a {
    display: block;
    padding: 12px 20px;
    background-color: var(--color-white);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.area-list a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateX(5px);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background-color: var(--color-white);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-decoration: none;
}

.location-card:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.location-card:hover svg {
    fill: var(--color-white);
}

.location-card svg {
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

/* Full-width map */
.map-wrapper-full {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.map-wrapper-full iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* ============================================
   ECOSYSTEM GRID
   ============================================ */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.ecosystem-icon {
    margin-bottom: 20px;
}

.ecosystem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.ecosystem-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   DARK SECTION (for FAQ)
   ============================================ */
.section-dark {
    background-color: var(--color-primary);
    padding: var(--spacing-xl) 0;
}

.section-title.light .lead,
.section-title.light span {
    color: var(--color-white);
}

.section-title.light .sep-primary {
    background-color: var(--color-secondary);
}

.section-title.light .sep-secondary {
    background-color: rgba(255,255,255,0.3);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255,255,255,0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   NEW GLOBAL ACCORDION SECTION
   ============================================ */
.accordion-section {
    padding: 80px 0;
}
.accordion-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}
.accordion-title {
    color: var(--color-white);
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.accordion-subtitle {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.accordion-item {
    background-color: #12467a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: visible;
    transition: border-color 0.3s ease;
}
.accordion-btn {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
}
.accordion-btn:hover,
.accordion-btn:focus,
.accordion-btn:active {
    background: none;
    color: var(--color-white);
}
.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: transform 0.3s ease;
}
.accordion-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-content {
    padding: 0 24px 24px;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.accordion-item.active {
    background-color: #1a568a;
    border-color: rgba(255, 255, 255, 0.3);
}
.accordion-item.active .accordion-content-wrapper {
    max-height: 9999px;
}
@media (max-width: 767px) {
    .accordion-title {
        font-size: 2rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: var(--spacing-md);
}

@media (max-width: 1200px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 20px 0;
}

.footer p {
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.footer > .container > .footer-inner > div:first-child p {
    font-weight: bold;
}

.footer > .container > .footer-inner > div:last-child p {
    font-weight: bold;
}

.footer a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    font-weight: bold;
}

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

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    font-weight: bold;
}

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

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .top-header .logo img {
        max-height: 70px;
        max-width: 150px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-section.reverse {
        direction: ltr;
    }
    
    .feature-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-header {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 0.9;
        text-transform: none;
    }
    
    .quote-form-wrapper {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-options {
        grid-template-columns: 1fr;
    }
    
    .section-title span:not(.lead):not(.sep-primary):not(.sep-secondary) {
        font-size: 1.8rem;
    }
    
    .section-title span.text-primary:not(.sep-primary):not(.sep-secondary) {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature-images {
        grid-template-columns: 1fr;
    }
    
    .feature-images img {
        height: 200px;
    }
    
    .feature-images img:nth-child(2),
    .feature-images img:nth-child(3) {
        display: none;
    }
    
    .feature-content .btn {
        display: inline-block;
        margin-top: 15px;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-section h2 {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-badges img {
        max-height: 70px;
    }
    
    .area-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .scroll-top {
        bottom: 25px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .map-wrapper-full iframe {
        height: 350px;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Related Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.service-card-content {
    padding: 30px 25px;
    text-align: center;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: #f5f5f5;
    padding: 12px;
    margin: 0 auto 20px;
    display: block;
}

.service-card-content h3 {
    color: var(--color-primary);
    margin: 0 0 15px 0;
    font-size: 1.4rem;
}

.service-card-content p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

/* Nearby Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.city-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.city-card-content {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.city-card-content svg {
    margin-bottom: 5px;
}

.city-card-content h3 {
    color: var(--color-primary);
    margin: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Source: assets/css/base.css
   ============================================ */

/* Typography */
.headerfix {
    color: #3A3A3A;
    font-family: Montserrat;
    font-size: 27px;
    font-weight: 800;
    text-align: center;
}

/* Hide Elementor device mode detection element and its pseudo-elements */
#elementor-device-mode-wpr {
    display: none !important;
    visibility: hidden !important;
}

#elementor-device-mode-wpr::after,
.elementor-screen-only#elementor-device-mode-wpr::after {
    display: none !important;
    visibility: hidden !important;
    content: "" !important;
}

/* Hide unwanted pseudo-elements from Astra theme */
#content.site-content::before,
.site-content#content::before {
    display: none !important;
    visibility: hidden !important;
    content: "" !important;
}

.ast-container::after {
    display: none !important;
    visibility: hidden !important;
    content: "" !important;
    clear: none !important;
}

/* ============================================
   Source: assets/css/layout.css
   ============================================ */

/* Layout utilities - currently empty, reserved for future shared layout styles */

/* ============================================
   Source: assets/css/components.css
   ============================================ */

/* Critical CSS - Hide Get A Quote button by default, show on desktop to prevent flash */
.elementor-element-46740d1 {
  display: none !important;
}
@media (min-width: 768px) {
  .elementor-element-46740d1 {
    display: flex !important;
  }
}



/* <-- Sticky Quote FAB Styles --> */
.sticky-quote-fab {
  display: none;
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: calc(20px + env(safe-area-inset-right));
  z-index: 9999;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  line-height: 0;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0;
  margin: 0;
  color: transparent;
  box-shadow: none !important;
}

.sticky-quote-fab:hover {
  transform: scale(1.1);
  color: transparent;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.sticky-quote-fab svg {
  display: block;
  width: 64px;
  height: 64px;
  color: transparent;
}

.sticky-quote-fab:hover svg {
  color: transparent;
}

@media (max-width: 767px) {
  .sticky-quote-fab {
    display: block;
  }
}



/* --------------------------------------------- */ 
/* <-- Quote Modal Styles --> */
/* --------------------------------------------- */

/* Hide modal by default (prevents flash) */ 
#quote-modal-overlay { 
  position: fixed; 
  inset: 0; 
  background-color: rgba(0, 0, 0, 0.75); 
  backdrop-filter: blur(4px); 
  z-index: 10000; 
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.3s ease, visibility 0.3s ease; 
}

/* Show overlay when open */
#quote-modal-overlay.quote-modal-open {
  opacity: 1;
  visibility: visible;
}

/* Modal container (centered desktop layout) */
#quote-modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;

/* Start hidden */ 
  opacity: 0; 
  visibility: hidden; 
  transform: translate(-50%, -50%) scale(0.95);

  display: flex; 
  flex-direction: column; 
  transition: opacity 0.3s ease, 
  visibility 0.3s ease, 
  transform 0.3s ease;
}

/* Modal visible state */
#quote-modal-container.quote-modal-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal header */
#quote-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
  background-color: #f8f9fa;
}

/* Title */
#quote-modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

/* Close button */
#quote-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#quote-modal-close:hover,
#quote-modal-close:focus {
  background-color: #e0e0e0;
  color: #000;
}

/* Modal body */
#quote-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* Ensure form content is visible */
#quote-modal-body .gform_wrapper,
#quote-modal-body .gform_body,
#quote-modal-body form {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Quote modal submit button styles */
#quote-modal-body .gform_button,
#quote-modal-body input[type="submit"],
#quote-modal-body button[type="submit"] {
  color: #ffffff !important;
  background-color: #104377 !important;
  border: none !important;
  padding: 14px 28px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
}

/* Modal form input styles */
#quote-modal-body input[type="text"],
#quote-modal-body input[type="email"],
#quote-modal-body input[type="tel"],
#quote-modal-body input[type="number"],
#quote-modal-body select,
#quote-modal-body textarea {
  border-radius: 8px !important;
  border: 2px solid #e0e0e0 !important;
  padding: 12px 14px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

#quote-modal-body input[type="text"]:focus,
#quote-modal-body input[type="email"]:focus,
#quote-modal-body input[type="tel"]:focus,
#quote-modal-body input[type="number"]:focus,
#quote-modal-body select:focus,
#quote-modal-body textarea:focus {
  border-color: #104377 !important;
  box-shadow: 0 0 0 3px rgba(16, 67, 119, 0.1) !important;
  outline: none !important;
}

#quote-modal-body .gform_button:hover,
#quote-modal-body input[type="submit"]:hover,
#quote-modal-body button[type="submit"]:hover {
  color: #ffffff !important;
  background-color: #02B100 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(2, 177, 0, 0.3) !important;
}

#quote-modal-body .gform_button:focus,
#quote-modal-body input[type="submit"]:focus,
#quote-modal-body button[type="submit"]:focus {
  color: #ffffff !important;
  background-color: #005a87 !important;
  outline: 2px solid #009A44 !important;
  outline-offset: 2px !important;
}

/* --------------------------------------------- */ 
/* <-- Mobile Optimizations for Quote Modal --> */ 
/* --------------------------------------------- */

@media (max-width: 767px) {
  #quote-modal-container {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;

    /* Slide up animation for mobile */
    top: auto;
    top: 0;
    left: 0;
    transform: translate(0, 100%);
  }

  #quote-modal-container.quote-modal-open {
    transform: translateY(0);
  }
}


/* <-- Screen reader only class --> */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Scroll to top button - position on left */
#ast-scroll-top.ast-scroll-to-top-left {
  right: auto !important;
  left: 20px !important;
  z-index: 9998 !important; /* Below FAB (9999) and modal (10000+) */
}

/* Hero title styling */
.elementor-element-b18655a .elementor-heading-title {
  line-height: 1.0 !important;
}

/* Uppercase hero title only on desktop */
@media (min-width: 768px) {
  .elementor-element-b18655a .elementor-heading-title {
    text-transform: uppercase !important;
  }
}

/* Title case hero title on mobile */
@media (max-width: 767px) {
  .elementor-element-b18655a .elementor-heading-title {
    text-transform: capitalize !important;
  }
}

/* Mobile-specific component visibility */
@media (max-width: 767px) {
  #ast-scroll-top.ast-scroll-to-top-left {
    left: 20px !important;
    right: auto !important;
  }
  
  #quote {
    display: none !important;
  }
  
  /* Increase hero title size on mobile */
  .elementor-element-b18655a .elementor-heading-title {
    font-size: 4.0em !important;
  }
  
  /* Hide Get A Quote button from nav bar on mobile */
  .elementor-element-46740d1 {
    display: none !important;
  }

  /* Hide primary Get A Quote button in hero sections on mobile */
  .hero-cta a[href="#quote"] {
    display: none !important;
  }
  
  /* Hide top header section (logo section) on mobile */
  .elementor-1713 .elementor-element.elementor-element-4d38094a {
    display: none !important;
  }
}

/* Hide mobile logo on desktop and tablet */
@media (min-width: 768px) {
  .elementor-1713 .elementor-element.elementor-element-mobile-logo-nav {
    display: none !important;
  }
}


/* Gutter Services Card Section - Responsive Fixes */
/* Target only the specific gutter services card section using unique classes */

/* Tablet and below: Allow cards to wrap */
@media (max-width: 1024px) {
  .gutter-services-cards-section .gutter-services-cards-container {
    flex-wrap: wrap !important;
  }
  
  .gutter-services-cards-section .gutter-services-card {
    width: 48% !important;
    flex: 0 0 calc(48% - 10px) !important;
    max-width: 48% !important;
    margin-bottom: 20px;
  }
}

/* Tablet: Two columns or single column */
@media (max-width: 768px) {
  .gutter-services-cards-section .gutter-services-cards-container {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  
  .gutter-services-cards-section .gutter-services-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 10px;
  }
  
  /* Ensure card content doesn't overflow on tablet */
  .gutter-services-cards-section .gutter-services-card-inner {
    aspect-ratio: auto !important;
  }
}

/* Mobile: Full width cards with adjusted spacing */
@media (max-width: 480px) {
  /* Reduce top and bottom padding of the section on mobile */
  .gutter-services-cards-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  .gutter-services-cards-section .gutter-services-cards-container {
    padding: 0 60px !important;
    gap: 15px !important;
  }
  
  /* Reduce margin on first and last cards */
  .gutter-services-cards-section .gutter-services-card:first-child {
    margin-top: 0 !important;
  }
  
  .gutter-services-cards-section .gutter-services-card:last-child {
    margin-bottom: 0 !important;
  }
  
  .gutter-services-cards-section .gutter-services-card-inner {
    padding: 40px 35px !important;
    min-height: 300px !important;
  }
}

/* Hide "The Complete Gutter Ecosystem" section on mobile */
@media (max-width: 767px) {
  .gutter-ecosystem-section {
    display: none !important;
  }
}

/* Remove unwanted ::before pseudo-element from header and nav */
header[data-elementor-id="1713"]::before,
.elementor-1713::before,
.elementor-element-641ca33::before,
nav.elementor-element-641ca33::before {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* --------------------------------------------- */ 
/* <-- Spline 3D Canvas Styles --> */
/* --------------------------------------------- */

#spline-canvas {
  width: 100%;
  height: 500px;
  max-width: 100%;
  border-radius: 8px;
  background: transparent;
  display: block;
  margin: 0 auto;
  outline: none;
}

/* Responsive adjustments for Spline canvas */
@media (max-width: 1024px) {
  #spline-canvas {
    height: 450px;
  }
}

@media (max-width: 768px) {
  #spline-canvas {
    height: 400px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  #spline-canvas {
    height: 350px;
    border-radius: 4px;
  }
}

/* ============================================
   Source: assets/css/nav.css
   ============================================ */

/* ============================================
   STATIC SITE NAVIGATION STYLES
   ============================================ */

/* Main Header / Navigation */
.header {
    background-color: var(--color-primary);
    border-top: 3px solid var(--color-secondary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
        align-items: center;
    padding: 10px 0;
    gap: 20px;
    overflow: visible;
    position: relative;
    width: 100%;
}

.mobile-logo {
    display: none;
}

/* Navigation Menu */
.nav-menu {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    overflow-x: visible;
    overflow-y: visible; /* Allow dropdowns to show */
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    flex-wrap: nowrap;
    overflow: visible;
    width: 100%;
}

.nav-list > li {
    position: relative;
    flex: 0 1 auto;
    min-width: 0;
}

.nav-list > li > a {
    display: block;
    padding: 10px 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
        text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--color-secondary);
}

.nav-list > li.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-list > li > a .arrow {
    font-size: 0.7rem;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-primary);
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: none;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* Nested Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-submenu > a .arrow {
    font-size: 0.7rem;
    margin-left: 10px;
}

.dropdown-submenu-content {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--color-primary);
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1002;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dropdown-submenu:hover > .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu-content li a {
    padding: 10px 20px;
    white-space: nowrap;
    font-weight: 600;
    color: rgb(167, 211, 255);
}

.dropdown-submenu-content li a:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.dropdown-submenu-content li a:hover {
    background-color: var(--color-secondary);
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    gap: 10px;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: auto;
    position: relative;
    z-index: 10;
    min-width: 0;
}

.header-cta .btn {
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 999;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list > li > a {
    display: block;
    padding: 15px 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    position: absolute;
    right: 0;
    top: 12px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 10px 20px;
}

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

.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Nested Mobile Dropdown (second level) */
.mobile-dropdown-menu .mobile-dropdown {
    padding-left: 0;
}

.mobile-dropdown-menu .mobile-dropdown > a {
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.mobile-dropdown-menu .mobile-dropdown-toggle {
    top: 8px;
}

.mobile-dropdown-menu .mobile-dropdown-menu {
    padding-left: 15px;
}

.mobile-dropdown-menu .mobile-dropdown-menu li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Responsive Navigation Styles */
/* Large Desktop - start scaling down */
@media (max-width: 1400px) {
    .header-cta .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .header-cta {
        gap: 8px;
    }
}

/* Desktop - further scaling */
@media (max-width: 1200px) {
    .header-cta .btn {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .header-cta {
        gap: 8px;
    }
}

/* Hide CTA buttons when scaled down significantly (past ~40% of typical desktop) */
@media (max-width: 1000px) {
    .header-cta {
        display: none !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    /* Reduce nav menu font size and padding to prevent overflow */
    .nav-list > li > a {
        font-size: 0.7rem;
        padding: 10px 8px;
    }
    
    .header-inner {
        gap: 15px;
    }
    
    .header-cta {
        gap: 8px;
    }
    
    .header-cta .btn {
        font-size: 0.8rem;
        padding: 9px 14px;
    }
}

/* Smaller tablets - further reduce nav sizes */
@media (max-width: 900px) {
    .nav-list > li > a {
        font-size: 0.65rem;
        padding: 10px 6px;
    }
    
    .nav-list {
        gap: 3px;
    }
    
    .header-inner {
        gap: 12px;
    }
    
    .header-cta {
        gap: 6px;
    }
    
    .header-cta .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
}

/* Mega Menu Styles */
.dropdown-menu.mega-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    min-width: 650px;
    padding: 20px;
}

.mega-menu .dropdown-submenu-content {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 5px 0 0;
}

.mega-menu .dropdown-submenu > a,
.mega-menu > li > a {
    font-weight: 700;
    padding: 0 0 8px 0;
}

.mega-menu .dropdown-submenu > a .arrow {
    display: none;
}

/* Hide mobile nav on tablet and up */
@media (min-width: 768px) {
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header {
        background-color: var(--color-white);
        border-top: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-logo {
        display: block;
        transform: translateY(4px);
    }
    
    .mobile-logo img {
        max-height: 50px;
        max-width: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .nav-menu,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn span {
        background-color: var(--color-primary);
    }
    
    .mobile-nav-overlay {
        display: block;
    }
}

/* ============================================
   Source: assets/css/footer.css
   ============================================ */

/* Custom Footer Styles */
.custom-footer {
    background-color: #104377;
    color: #8cb3d9;
    padding: 40px 20px 40px 20px;
    font-family: 'Montserrat', sans-serif;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
}

/* Make footer container wider on desktop */
.footer .container {
    max-width: 1400px;
}

@media (min-width: 1600px) {
    .footer .container {
        max-width: 1600px;
    }
}
.footer-column {
    flex: 0 1 auto;
    min-width: 200px;
}
.footer-column h3 {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.footer-column.company-info {
    margin-left: 0;
}
@media (min-width: 1025px) {
    .footer-column.company-info {
        margin-left: 40px;
    }
}
.footer-column.company-info h3 {
    font-size: 1.5rem !important;
}
.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-column ul li {
    margin-bottom: 8px !important;
}
.footer-column a {
    color: #8cb3d9 !important;
    text-decoration: none !important;
    font-size: 1rem;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: #ffffff !important;
}
.footer-column p {
    color: #8cb3d9 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.6 !important;
    font-size: 1rem;
}
@media (max-width: 1024px) {
    .footer-column {
        flex: 1 1 40%;
    }
}
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        flex: 1 1 100%;
    }
    .footer-column.company-info {
        margin-left: 0;
    }
}

/* ============================================
   Source: assets/css/forms.css
   ============================================ */

/* Gravity Forms Styles */
h2.eael-dch-title, h3.eael-dch-title { 
    text-align: center; 
}
.gform_wrapper .gfield_label { 
    display: none; 
}
.gform_wrapper li.gfield--type-checkbox .gfield_label,
.gform_wrapper .gfield--type-checkbox .gfield_label,
.gform_wrapper li.gfield--type-address .gfield_label,
.gform_wrapper .gfield--type-address .gfield_label {
    display: block !important;
}
.gform_wrapper .gform_fields { 
    list-style: none; 
    padding-left: 0; 
}
.gform_wrapper .gform_fields li { 
    list-style: none; 
}
.gform_wrapper li { 
    list-style: none; 
}
.gform_wrapper ul.gform_fields li.gfield {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}
.gform_wrapper ul.gform_fields li.gfield--type-text,
.gform_wrapper ul.gform_fields li.gfield--type-email,
.gform_wrapper ul.gform_fields li.gfield--type-phone,
.gform_wrapper ul.gform_fields li.gfield--type-address {
    margin-left: auto;
    margin-right: auto;
}
.gform_wrapper ul.gform_fields li.gfield.gfield--type-checkbox {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    width: auto;
    max-width: none;
}
.gform_wrapper ul.gform_fields li.gfield.gfield--type-checkbox .ginput_container {
    width: auto;
    max-width: 100%;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.gform_wrapper ul.gform_fields li.gfield.gfield--type-checkbox .gfield_checkbox {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: block;
    width: auto;
    float: none;
}
.gform_wrapper ul.gform_fields li.gfield.gfield--type-checkbox .gfield_checkbox li.gchoice {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    list-style: none;
    display: block;
    width: auto;
    float: none;
}
.gform_wrapper ul.gform_fields li.gfield.gfield--type-checkbox .gfield-choice-input {
    float: left;
    margin-right: 8px;
    margin-left: 0;
}
.gform_wrapper ul.gform_fields li.gfield.gfield--type-checkbox .gform-field-label {
    text-align: left;
    display: inline-block;
    float: none;
}
.gform_wrapper ul.gform_fields li.gfield .ginput_container {
    width: 100%;
    max-width: 100%;
}
.gform_wrapper ul.gform_fields li.gfield input,
.gform_wrapper ul.gform_fields li.gfield select {
    width: 100%;
    max-width: 100%;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper select {
    height: 29px;
    padding: 2.5px 12px;
    box-sizing: border-box;
    line-height: 1.4;
}
.gform_wrapper input.large {
    height: 29px;
    padding: 2.5px 12px;
    box-sizing: border-box;
}
.gform_wrapper {
    padding: 0;
}
.gform_wrapper .gform-body {
    padding: 0 15px;
}
.gform_wrapper .gform_fields {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

/* ============================================
   Source: assets/css/animations.css
   ============================================ */

/* Animation utilities - currently empty, reserved for future shared animation styles */