/* ========================================
   BATH REMODELING WEBSITE - STYLES.CSS
   Design: LeafHomeBath.com Style
   ======================================== */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

:root {
    /* Primary Colors */
    --color-primary-dark: #1B2A4A;
    --color-footer-dark: #0D1321;
    --color-accent-green: #309B42;
    --color-accent-green-hover: #267A33;
    --color-white: #ffffff;
    --color-bg-light: #f7f7f7;
    --color-text-dark: #333333;
    --color-text-medium: #666666;
    --color-text-light: #999999;
    --color-border-gray: #e0e0e0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B2A4A;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: #666666;
}

a {
    color: #309B42;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #267A33;
}

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

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.02);
}

/* Primary Button - Green */
.cta-primary {
    background-color: #309B42;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #267A33;
}

/* Header CTA Button */
.cta-header {
    background-color: #309B42;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 12px;
}

.cta-header:hover {
    background-color: #267A33;
}

/* Secondary Button */
.cta-secondary {
    background-color: #309B42;
    color: #ffffff;
}

.cta-secondary:hover {
    background-color: #267A33;
}

.cta-secondary-outline {
    background-color: transparent;
    color: #309B42;
    border: 2px solid #309B42;
}

.cta-secondary-outline:hover {
    background-color: #309B42;
    color: #ffffff;
}

/* Large CTA Button */
.cta-large {
    padding: 16px 40px;
    font-size: 16px;
    background-color: #309B42;
    color: #ffffff;
}

.cta-large:hover {
    background-color: #267A33;
}

/* ===== HEADER & NAVIGATION ===== */
.header-dark {
    background-color: #1B2A4A;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    flex-shrink: 0;
    min-width: 100px;
}

.logo-placeholder {
    width: 120px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Phone */
.header-phone {
    flex: 0 1 auto;
}

.phone-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #309B42;
}

.phone-number {
    display: inline-block;
}

/* Main Navigation */
.main-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 20px 18px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #309B42;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    min-width: 200px;
    padding: 8px 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f7f7f7;
    color: #309B42;
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 60vh;
    padding: 60px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Hero Left - Content */
.hero-left {
    flex: 1;
    color: #ffffff;
    min-width: 0;
}

.hero-headline {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-left .cta-button {
    margin-top: 20px;
}

/* Hero Right - Form */
.hero-right {
    flex: 0 0 380px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-form {
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #309B42;
    box-shadow: 0 0 0 3px rgba(48, 155, 66, 0.1);
}

.form-group input::placeholder {
    color: #999999;
}

.form-submit-btn {
    padding: 14px 24px;
    background-color: #309B42;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #267A33;
    transform: scale(1.02);
}

.form-consent {
    font-size: 12px;
    color: #999999;
    margin-top: 15px;
    line-height: 1.4;
}

.form-consent a {
    color: #309B42;
    font-weight: 600;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background-color: #309B42;
    padding: 20px 0;
    text-align: center;
}

.promo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1B2A4A;
    text-align: center;
    margin-bottom: 50px;
}

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

/* Service Card */
.service-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.service-icon .pending-image {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 12px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

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

/* Offer Card */
.offer-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.offer-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.offer-image .pending-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content {
    padding: 30px;
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 12px;
}

.offer-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #309B42;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    background-color: #267A33;
    transform: scale(1.05);
}

.offer-social {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #666666;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #309B42;
    color: #309B42;
    background-color: #f7f7f7;
}

/* ===== CREDENTIALS SECTION ===== */
.credentials {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list i {
    color: #309B42;
    font-size: 24px;
    flex-shrink: 0;
    min-width: 30px;
}

.credentials-list span {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

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

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.gallery-link {
    font-size: 14px;
    font-weight: 700;
    color: #309B42;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.gallery-link:hover {
    color: #267A33;
}

.gallery-nav {
    display: flex;
    gap: 15px;
}

.gallery-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid #e0e0e0;
    background-color: transparent;
    border-radius: 4px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.gallery-arrow:hover {
    border-color: #309B42;
    color: #309B42;
    background-color: #f7f7f7;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-paragraph {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.about-buttons .cta-button {
    flex: 1;
    text-align: center;
}

.about-image {
    width: 100%;
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA BANNER SECTION ===== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background-color: #1B2A4A;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.95), rgba(13, 19, 33, 0.95));
    z-index: 0;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-headline {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-banner-subheadline {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer-dark {
    background-color: #0D1321;
    color: #aaaaaa;
}

.footer-main {
    padding: 60px 0 0;
    border-top: 1px solid #333333;
}

.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Company Info */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.footer-logo-placeholder {
    width: 120px;
    height: 50px;
    background-color: #1B2A4A;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-address,
.footer-phone {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-phone a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: #ffffff;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #333333;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #444444;
    border-radius: 50%;
    color: #aaaaaa;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #309B42;
    color: #309B42;
    background-color: rgba(48, 155, 66, 0.1);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #333333;
    background-color: #0A0F19;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright,
.footer-legal,
.footer-contractor {
    font-size: 13px;
    color: #888888;
}

.footer-legal {
    text-align: center;
}

.footer-legal a {
    color: #888888;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #aaaaaa;
}

.separator {
    margin: 0 8px;
}

.contractor-text {
    font-size: 12px;
    color: #666666;
}

/* ===== PENDING IMAGE PLACEHOLDER ===== */
.pending-image {
    background-color: #e0e0e0;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== ANIMATIONS ===== */
.visible {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .main-nav {
        gap: 0;
    }

    .main-nav a {
        padding: 15px 12px;
        font-size: 13px;
    }

    .hero-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-right {
        flex: 1;
        max-width: none;
    }

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

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

/* Mobile: < 768px */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1B2A4A;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        justify-content: flex-start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

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

    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        display: none;
        background-color: #16213e;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 20px;
        border-radius: 0;
        padding: 8px 0;
    }

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

    .header-content {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .header-phone {
        display: none;
    }

    .header-cta {
        order: 3;
        width: 100%;
    }

    .header-cta .cta-button {
        width: 100%;
    }

    .hero {
        min-height: 100vh;
        padding: 40px 0;
    }

    .hero-headline {
        font-size: 28px;
    }

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

    .hero-right {
        padding: 30px 20px;
        flex: 1;
    }

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

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .gallery-item {
        aspect-ratio: 1;
    }

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

    .about-buttons .cta-button {
        width: 100%;
    }

    .cta-banner-headline {
        font-size: 28px;
    }

    .cta-banner-subheadline {
        font-size: 16px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-legal {
        text-align: left;
    }

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .services,
    .offers-section,
    .credentials,
    .gallery,
    .about,
    .cta-banner {
        padding: 50px 0;
    }

    .form-title {
        font-size: 20px;
    }

    .promo-text {
        font-size: 18px;
    }
}

/* Extra Small: < 480px */
@media (max-width: 480px) {
    .logo-placeholder,
    .footer-logo-placeholder {
        width: 100px;
        height: 40px;
        font-size: 10px;
    }

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

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

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-social {
        gap: 15px;
    }

    .form-group input,
    .form-group select {
        font-size: 13px;
    }

    .services,
    .offers-section,
    .credentials,
    .gallery,
    .about,
    .cta-banner {
        padding: 40px 0;
    }

    .hero-right {
        padding: 25px 15px;
    }

    .offer-content,
    .about-text {
        padding: 20px;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #309B42;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #267A33;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: #ffffff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1B2A4A;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f7f7f7;
}

.faq-question .faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #309B42;
}

.faq-item.active .faq-question {
    background-color: #f7f7f7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

/* ===== FORM FIELD ERRORS ===== */
.field-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
    background-color: #1B2A4A;
    padding: 60px 0 40px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== COMING SOON PAGE ===== */
.coming-soon {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.coming-soon h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.coming-soon p {
    font-size: 18px;
    max-width: 500px;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff;
}

.text-dark {
    color: #1B2A4A;
}

.text-green {
    color: #309B42;
}

.bg-white {
    background-color: #ffffff;
}

.bg-light {
    background-color: #f7f7f7;
}

.bg-dark {
    background-color: #1B2A4A;
}

.bg-green {
    background-color: #309B42;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}
