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

:root {
    --primary-blue: #4A90E2;
    --light-blue: #E3F2FD;
    --accent-blue: #2196F3;
    --primary-red: #d90a2c;
    --light-red: #FFE5E5;
    --dark-color: #2C3E50;
    --heading-color: #270d56;
    --text-dark: #333333;
    --text-light: #666666;
    --light-gray: #F8F9FA;
    --lighter-gray: #FAFBFC;
    --white: #FFFFFF;
    --border-color: #E1E8ED;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header */
header {
    background: var(--white);
    color: var(--dark-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg,
.logo img {
    flex-shrink: 0;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #206df1;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-slogan {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    letter-spacing: 0.2px;
    line-height: 1.2;
    margin-top: -2px;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-blue);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Header CTA Desktop */
.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-blue);
}

/* Hide mobile CTA buttons on desktop */
.header-cta-mobile {
    display: none;
}

.phone-btn, .quote-btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.phone-btn {
    background: var(--light-blue);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.phone-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quote-btn {
    background: var(--primary-red);
    color: var(--white) !important;
    border: 2px solid var(--primary-red);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.quote-btn:hover {
    background: #000000;
    border-color: #000000;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 0;
    position: relative;
}

/* Service Page Hero */
.hero-service {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Specific Service Page Backgrounds */
.hero-bathtub {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-shower {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-sink {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-vanity-sink {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-jacuzzi {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-tile {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-countertops {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), url('images/1white-bathroom-reglaze.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    color: var(--white);
    stroke: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #b70823;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: 90px 0;
}

/* Gallery Grid Section */
.gallery-grid-section {
    background: var(--white);
    padding: 75px 0 0 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background: var(--lighter-gray);
    height: 420px;
    cursor: pointer;
}

.gallery-image:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-image:hover img {
    opacity: 0.95;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10000;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxImageFade 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    font-weight: bold;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    backdrop-filter: blur(5px);
}

.lightbox-close:hover {
    color: var(--white);
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 0 20px rgba(217, 10, 44, 0.6);
}

.lightbox-close:active {
    transform: scale(1.05) rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 20px 25px;
    z-index: 10000;
    transition: all 0.3s ease;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 20px rgba(33, 113, 249, 0.6);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
        width: 50px;
        height: 50px;
    }

    .lightbox-counter {
        top: 15px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

/* Section Badge Label */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2171f9;
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 auto 24px;
    box-shadow: 0 2px 12px rgba(33, 113, 249, 0.25);
    border: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
    max-width: 900px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #6B7280;
    margin-bottom: 50px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

.intro-section {
    background: var(--white);
    padding: 80px 0;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}

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

.about-content .section-badge {
    margin-bottom: 20px;
    display: inline-flex;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 350px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.testimonial-rating .stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--heading-color);
}

.rating-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

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

/* Stats Card */
.stats-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 350px;
}

.stats-card-header h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: -0.3px;
}

.stats-highlight {
    padding: 20px;
    background: linear-gradient(135deg, #2171f9 0%, #1c5ed6 100%);
    border-radius: 12px;
    text-align: center;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.stats-note {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Statistics Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #2171f9;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    background: var(--lighter-gray);
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--white);
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #E8F0FE;
    border-radius: 50%;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: #2171f9;
    fill: none;
    stroke-width: 2;
}

.benefit-item h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--heading-color);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--lighter-gray);
    position: relative;
}

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

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.review-stars {
    color: #FFB800;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 1rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

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

.author-info strong {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 70px;
    padding-top: 70px;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Service Areas Section */
.service-areas {
    background: var(--lighter-gray);
}

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

.area-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.area-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F0FE;
    border-radius: 50%;
}

.area-icon svg {
    width: 32px;
    height: 32px;
}

.area-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #2171f9 0%, #1c5ed6 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.area-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.area-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-areas-cta {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px dashed var(--border-color);
}

.service-areas-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-areas-cta a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--lighter-gray) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 100px;
}

.contact-info-side h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.quote-benefit {
    display: flex;
    gap: 15px;
    align-items: start;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.quote-benefit strong {
    display: block;
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.quote-benefit p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.direct-contact {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.direct-contact h4 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.phone-number svg {
    flex-shrink: 0;
}

.contact-hours {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 20px 32px;
}

.contact-hours-detailed {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.contact-hours-detailed p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-hours-detailed strong {
    color: var(--heading-color);
    font-weight: 700;
}

.email-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.email-contact svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.email-contact a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: var(--primary-blue);
}

.form-container {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    position: relative;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--lighter-gray);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--primary-red);
    background: var(--light-red);
}

.error-message {
    color: var(--primary-red);
    font-size: 0.9rem;
    margin-top: 6px;
    display: none;
    font-weight: 600;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #b70823;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 10, 44, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

.success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.success-message.show {
    display: flex;
}

.success-message.show ~ form {
    opacity: 0.3;
    pointer-events: none;
}

.success-message h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.success-message p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.3px;
}

.footer-section h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-blue);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
}

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

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    border: 3px solid var(--white);
}

.scroll-top:hover {
    background: #b70823;
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* Main Gallery Section */
.main-gallery-section {
    background: var(--white);
    padding: 90px 0;
}

.main-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.main-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background: var(--lighter-gray);
    cursor: pointer;
    aspect-ratio: 4 / 5;
}

.main-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.main-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Main Gallery Lightbox */
.main-gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.main-gallery-lightbox.active {
    display: flex;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .main-gallery-grid {
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .main-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .main-gallery-section {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .main-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .hero {
        padding: 100px 0;
    }

    .hero-service {
        padding: 80px 0;
    }

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

    .hero-text {
        padding: 0;
    }

    .hero-features {
        gap: 35px;
        margin-top: 40px;
    }

    .hero-feature-icon {
        width: 42px;
        height: 42px;
    }

    .hero-feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    header {
        padding: 16px 0;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .header-cta {
        display: none;
    }

    .header-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 12px 0 0 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        z-index: 999;
        gap: 4px;
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .header-nav a {
        padding: 18px 24px;
        margin: 0 12px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.2s ease;
        display: block;
        border-radius: 8px;
    }

    .header-nav a:hover,
    .header-nav a:active {
        background: var(--light-blue);
        color: var(--primary-blue);
        transform: translateX(4px);
    }

    .header-nav a::after {
        display: none;
    }

    .header-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px;
        background: var(--white);
        margin-top: 16px;
        position: relative;
    }

    .header-cta-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    }

    .header-cta-mobile .phone-btn,
    .header-cta-mobile .quote-btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1.05rem;
        font-weight: 700;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .header-cta-mobile .quote-btn {
        color: var(--white);
    }

    .header-cta-mobile .quote-btn:hover {
        background: #000000;
        border-color: #000000;
        text-decoration: none;
    }

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

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-service {
        padding: 60px 0;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .gallery-grid-section {
        padding: 50px 0 0 0;
    }

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

    .header-content {
        justify-content: space-between;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .logo-slogan {
        font-size: 0.65rem;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 35px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .before-after-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .reviews-stats {
        gap: 50px;
    }

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

    .contact-info-side {
        position: static;
    }

    .form-container {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .service-areas-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-features {
        gap: 30px;
        margin-top: 35px;
    }

    .hero-feature-icon {
        width: 38px;
        height: 38px;
    }

    .hero-feature-text {
        font-size: 0.85rem;
    }

    header {
        padding: 12px 0;
    }

    .header-nav {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 8px 0 0 0;
        gap: 2px;
    }

    .header-nav a {
        padding: 16px 20px;
        margin: 0 8px;
        font-size: 1.05rem;
    }

    .header-cta-mobile {
        padding: 20px;
        gap: 10px;
        margin-top: 8px;
    }

    .header-cta-mobile .phone-btn,
    .header-cta-mobile .quote-btn {
        padding: 15px 18px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .header-cta-mobile .quote-btn {
        color: var(--white);
    }

    .header-cta-mobile .quote-btn:hover {
        background: #000000;
        border-color: #000000;
        text-decoration: none;
    }

    .logo-name {
        font-size: 1.05rem;
    }

    .logo-slogan {
        font-size: 0.6rem;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .testimonial-card,
    .stats-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .before-after-slider {
        aspect-ratio: 4 / 3;
    }

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

    .review-card {
        padding: 25px;
    }

    .reviews-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .area-card {
        padding: 25px 20px;
    }

    .quote-benefits {
        gap: 20px;
    }

    .quote-benefit {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .direct-contact {
        padding: 20px;
    }

    .phone-number {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-hours {
        margin-left: 0;
        text-align: center;
    }

    .form-container {
        padding: 25px 20px;
    }

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

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.content-main {
    line-height: 1.8;
}

.content-main h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.content-main p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.content-main ul.benefits-list,
.content-main ol.process-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content-main ul.benefits-list li,
.content-main ol.process-list li {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-main ul.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.content-main ol.process-list {
    counter-reset: process-counter;
}

.content-main ol.process-list li {
    counter-increment: process-counter;
}

.content-main ol.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cta-box,
.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.cta-box {
    background: linear-gradient(135deg, #E8F0FE 0%, var(--lighter-gray) 100%);
    border-color: var(--primary-blue);
}

.cta-box h3,
.info-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.cta-box p {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1rem;
}

.cta-box .btn-primary,
.cta-box .btn-secondary {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    padding: 14px 28px;
    font-size: 1rem;
}

.cta-box .btn-secondary {
    margin-bottom: 0;
}

.info-box p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.info-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: var(--lighter-gray);
    padding: 90px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Responsive adjustments for content grid */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        order: -1;
    }

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

@media (max-width: 768px) {
    .content-main h3 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .cta-box,
    .info-box {
        padding: 25px;
    }

    .faq-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .content-main h3 {
        font-size: 1.3rem;
    }

    .cta-box,
    .info-box {
        padding: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}