/* Design System & Variables */
:root {
    --primary-blue: #254C86;
    --dark-navy: #1C3E6E;
    --accent-red: #D52B2B;
    --bg-light-gray: #F3F4F6;
    --surface-white: #FFFFFF;
    --text-dark: #1F2937;
    --muted-text: #6B7280;
    --border-gray: #E5E7EB;
    --light-blue-accent: #E7EEF8;

    --max-width: 1200px;
    --padding-x: 24px;
    --section-spacing: 80px;
    --section-spacing-mobile: 48px;

    --radius-default: 10px;
    --radius-button: 8px;
    --radius-card: 12px;

    --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-hero: 0 10px 25px rgba(0, 0, 0, 0.15);

    --transition: all 0.2s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--surface-white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.body-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.caption {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-text);
}

/* Header & Navigation */
.top-bar {
    background-color: var(--dark-navy);
    color: var(--surface-white);
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar {
    background-color: transparent;
    padding: 15px 0;
    box-shadow: none;
    position: relative;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    padding: 6px 10px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #dddddd;
}

.nav-links a.nav-btn {
    background-color: var(--accent-red);
    color: var(--surface-white);
    padding: 9px 32px;
    border-radius: 11px;
}

.nav-links a.nav-btn:hover {
    background-color: #a00d15;
}

/* Dropdown CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown .dropbtn::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--surface-white);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: none;
    /* Override uppercase from nav-links a */
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--bg-light-gray);
    color: var(--primary-blue);
    border-radius: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-button);
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
}

.btn-accent {
    background-color: var(--accent-red);
    color: var(--surface-white);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--surface-white);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    background-image: url(images/house-cleaners.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-container {
    position: relative;
    z-index: 10;
    flex: 1;
    gap: 60px;
    display: grid;
    grid-template-columns: 35% 65%;
    padding-top: 160px;
    padding-bottom: 60px;
    align-items: start;
}

.hero-form-card {
    background: #ffffffb8;
    padding: 30px 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hero);
    width: 450px;
    max-width: 100%;
    border: 4px solid var(--primary-blue);
    margin: 0 auto;
}

.hero-form-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

.form-group.row-align {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 15px;
}

.form-group.row-align.align-top {
    align-items: flex-start;
}

.form-group.row-align label {
    display: block;
    width: 60px;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    flex-shrink: 0;
    text-align: left;
}

.form-group.row-align.align-top label {
    margin-top: 10px;
}

.form-group input,
.form-group textarea {
    flex-grow: 1;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 14px;
    background-color: var(--surface-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px var(--light-blue-accent);
}

.submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.hero-submit-btn {
    border-radius: 25px;
    padding: 10px 40px;
    font-size: 16px;
}

.hero-promo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.promo-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px 60px;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.promo-title {
    font-size: 80px;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1;
    font-weight: 800;
}

.promo-subtitle {
    font-size: 40px;
    color: #000;
    margin: 10px 0 0 0;
    font-weight: 800;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    letter-spacing: 1px;
}

.promo-tagline {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-top: 20px;
    text-shadow: 3px 3px 0 #000, -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 0 0 #000, 0 3px 0 #000, -3px 0 0 #000, 0 -3px 0 #000;
}

.hero-buttons-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-phone {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid white;
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    border-radius: 4px;
    background: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-estimate {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #a3d735, #80b519);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    gap: 10px;
    text-decoration: none;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.4), 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #75a81e;
}

.btn-estimate:hover {
    background: linear-gradient(to bottom, #94c924, #73a612);
}

.estimate-icon {
    width: 32px;
    height: 32px;
    stroke-width: 4;
}

.estimate-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.estimate-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.estimate-sub {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 2px;
}

.hero-bar {
    background-color: var(--primary-blue);
    color: var(--surface-white);
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    z-index: 10;
}

/* Section Utilities */
.section-padding-large {
    padding: var(--section-spacing) 0;
}

.bg-light {
    background-color: var(--bg-light-gray);
}

.text-center {
    text-align: center;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

.max-600 {
    max-width: 600px;
}

.max-900 {
    max-width: 900px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-red);
    margin: 20px auto;
}

/* Service Intro */
.services-intro h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.icon-blue {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* CTA Strip */
.cta-strip {
    background-color: var(--dark-navy);
    color: var(--surface-white);
    padding: 30px 0;
}

.cta-strip h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.cta-phone {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: var(--surface-white);
}

.cta-phone:hover {
    color: var(--accent-red);
}

/* Service Details Section */
.service-details {
    padding: var(--section-spacing) 0;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-content h3 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 20px;
}

.task-list {
    margin: 20px 0;
}

.task-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.task-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 20px;
    line-height: 1;
}

/* Reviews Section */
.google-rating {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google-logo {
    height: 30px;
}

.stars {
    display: flex;
    gap: 5px;
    color: #FBBF24;
}

.star-filled {
    fill: #FBBF24;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-blue);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-blue);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-nav button {
    background: none;
    border: none;
    cursor: pointer;
    color: #D1D5DB;
    pointer-events: auto;
    transition: var(--transition);
}

.carousel-nav button:hover {
    color: var(--primary-blue);
}

/* Footer */
.site-footer {
    background-color: var(--dark-navy);
    color: var(--surface-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-red);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #112746;
    padding: 20px 0;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Plans Section */
.plans-section {
    background-color: var(--surface-white);
}

.plans-title {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
}

.plans-subtitle {
    color: var(--muted-text);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.plans-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(50% - 20px);
    min-width: 300px;
}

.plan-icon {
    color: var(--accent-red);
    width: 36px;
    height: 36px;
    stroke-width: 3;
    flex-shrink: 0;
}

.plan-title {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.plan-card {
    background-color: var(--primary-blue);
    color: var(--surface-white);
    padding: 30px 20px;
    border-radius: 8px;
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plan-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plans-bottom-text {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--surface-white);
    color: var(--text-dark);
}

.why-choose-title {
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    border: 1px solid var(--primary-blue);
    background-color: var(--surface-white);
    border-radius: 8px;
    padding: 30px 20px;
    width: 250px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-box:hover {
    background-color: var(--accent-red);
    transform: translateY(-5px);
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: var(--primary-blue);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover h4 {
    color: var(--surface-white);
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 432px;
    background-image: url(images/house-cleaners.webp);
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 65, 126, 0.85);
}

.contact-hero-title {
    color: var(--surface-white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero-breadcrumb {
    color: var(--surface-white);
    font-size: 16px;
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--surface-white);
    border: 1px solid #E5E7EB;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.info-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #EBF2FA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.info-card h3 {
    color: #1a2b4c;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.section-badge {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-badge .badge-icon {
    width: 18px;
    height: 18px;
}

.form-title {
    color: #1a2b4c;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.input-with-icon input,
.input-with-icon textarea,
.input-with-icon select {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border: 1px solid #E5E7EB;
    background-color: var(--surface-white);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-with-icon select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394A3B8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.input-with-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.textarea-icon i {
    top: 25px;
}

.submit-now-btn {
    background-color: #0c56a6;
    color: white;
    padding: 15px 35px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-top: 10px;
}

.submit-now-btn:hover {
    background-color: var(--dark-navy);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #f4f7fa;
    border: 1px solid #eef1f5;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    color: #1a2b4c;
    font-weight: 600;
}

.faq-icon {
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-item .icon-minus {
    display: none;
}

.faq-item.active .icon-plus {
    display: none;
}

.faq-item.active .icon-minus {
    display: block;
}

.faq-answer {
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
    border-top: 1px solid #eef1f5;
}

.faq-answer p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-navy);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.mobile-active {
        display: flex;
        align-items: center;
    }

    .nav-links>li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .nav-links a.nav-btn {
        width: 100%;
        text-align: center;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown .dropbtn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background-color: transparent;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown-content a {
        color: #ffffff;
        padding: 8px;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .mobile-menu-toggle {
        display: block;
        color: white;
    }

    .service-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .section-padding-large {
        padding: var(--section-spacing-mobile) 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 130px;
        gap: 20px;
    }

    .hero-form-card {
        margin: 0 auto;
        order: 2;
        padding: 20px;
        width: 100%;
    }

    .hero-promo-wrapper {
        order: 1;
        margin-bottom: 20px;
    }

    .promo-box {
        padding: 20px 30px;
    }

    .promo-title {
        font-size: 48px;
    }

    .promo-subtitle {
        font-size: 24px;
        text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    }

    .promo-tagline {
        font-size: 28px;
        margin-top: 15px;
        text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 0 0 #000, 0 2px 0 #000, -2px 0 0 #000, 0 -2px 0 #000;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-image img {
        height: 250px;
    }

    .cards-grid,
    .form-map-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .plans-title,
    .why-choose-title {
        font-size: 26px;
    }

    .plan-item {
        width: 100%;
        min-width: auto;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .plan-title {
        font-size: 22px;
    }

    .plan-icon {
        width: 28px;
        height: 28px;
    }

    .cta-phone {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 36px;
    }

    .promo-subtitle {
        font-size: 18px;
    }

    .promo-tagline {
        font-size: 22px;
    }

    .hero-form-card h3 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.row-align {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group.row-align label {
        margin-bottom: 5px;
        text-align: left;
    }

    .form-group.row-align.align-top label {
        margin-top: 0;
    }
}

/* Custom Services Layout */
.pb-40 {
    padding-bottom: 40px;
}

.service-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-card-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 330px;
}

.service-card-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    border: 3px solid #1C3E6E;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
}

.service-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.service-card-title {
    position: relative;
    z-index: 2;
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card-desc {
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* Fancy Divider */
.fancy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 50px;
    position: relative;
}

.fancy-divider::before,
.fancy-divider::after {
    content: '';
    height: 2px;
    background-color: #72a2bd;
    flex: 1;
    max-width: 350px;
}

.fancy-divider span {
    margin: 0 15px;
    color: #29b6d8;
    font-family: 'Brush Script MT', cursive, "Segoe Print";
    font-size: 40px;
    line-height: 1;
}

/* Detailed Services */
.detailed-services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.detailed-service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
    flex-wrap: wrap;
}

.detailed-content-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detailed-title {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.detailed-desc {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.detailed-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.detailed-btn {
    font-size: 14px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-button);
}

.btn-outline {
    background-color: var(--surface-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--surface-white);
}

.detailed-content-right {
    flex: 1;
    min-width: 300px;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-list>.acc-item {
    border-bottom: 2px solid #006080;
    color: var(--primary-blue);
    font-weight: 700;
    display: block;
    font-size: 16px;
    padding: 0;
}

.accordion-list>.acc-item:first-child {
    border-top: 2px solid #006080;
}

.acc-header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    color: var(--primary-blue);
}

.acc-title {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
}

.acc-icon {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    transition: transform 0.3s ease;
    fill: #0088cc;
    color: #0088cc;
}

.acc-item.active .acc-icon {
    transform: rotate(90deg);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

.acc-item.active .acc-content {
    max-height: 800px;
    padding: 10px 0 20px 30px;
}

.acc-inner-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.acc-inner-list li {
    padding: 4px 0;
    display: list-item;
    color: #006b8f;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.detailed-divider {
    height: 1px;
    background-color: #006080;
    margin: 40px auto;
    width: 100%;
}

.section-padding-large-top-01 {
    padding-top: 10px;
}
.note
{
    color: red;
}

@media (max-width: 768px) {
    .detailed-service-row {
        flex-direction: column;
        gap: 20px;
    }
}