/* ===== GENESIS CREATION - CUSTOM CSS ===== */

:root {
    --primary: #1a9ed4;
    --primary-dark: #1585b5;
    --primary-light: #e8f5fc;
    --dark-navy: #1a2340;
    --text-dark: #2d3748;
    --text-muted: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e2e8f0;
    --topbar-bg: #1a9ed4;
    --heading-blue: #1a9ed4;
}

/* ===== GLOBAL ===== */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== TOP BAR ===== */
.topbar {
    background-color: var(--topbar-bg);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.topbar a {
    color: white;
}

.topbar a:hover {
    color: rgba(255,255,255,0.8);
}

/* ===== STICKY HEADER ===== */
.sticky-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* ===== NAVBAR ===== */
.main-navbar {
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(0,0,0,0.10);
    padding: 0;
}

.main-navbar .navbar-brand img {
    height: 70px;
}

.main-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 14px !important;
    transition: color 0.2s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary) !important;
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
}

.main-navbar .dropdown-item {
    font-size: 0.88rem;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.main-navbar .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-login {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 25px;
    padding: 5px 18px !important;
    font-size: 0.85rem !important;
    margin-right: 8px;
    transition: all 0.2s;
    line-height: 1.4;
}

.btn-login:hover,
.main-navbar .nav-item .btn-login:hover {
    background-color: var(--primary);
    color: white !important;
}

.btn-contact-nav {
    background-color: #ffaa40 !important;
    color: white !important;
    border-radius: 25px;
    padding: 5px 18px !important;
    font-size: 0.85rem !important;
    transition: background 0.2s;
    line-height: 1.4;
}

.btn-contact-nav:hover,
.main-navbar .nav-item .btn-contact-nav:hover {
    background-color: #f5820a !important;
    color: white !important;
}

/* ===== HOVER DROPDOWNS ===== */
@media (min-width: 992px) {
    .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInDown 0.15s ease;
    }
    .main-navbar .nav-item.dropdown > .dropdown-toggle::after {
        transition: transform 0.2s;
    }
    .main-navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 80px 0 60px;
    background-color: #fff;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-title {
    color: var(--heading-blue);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.hero-rating .google-g {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 520px;
}

.hero-image-placeholder {
    width: 100%;
    height: 520px;
    background: linear-gradient(135deg, #c8e6f5 0%, #a8d4e8 40%, #7bbfd8 100%);
    border-radius: 50% 0 50% 0 / 40% 0 40% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a8ea8;
    font-size: 1.1rem;
    font-weight: 600;
    overflow: hidden;
    object-fit: cover;
}

.hero-image-placeholder.has-image {
    background: none;
    border-radius: 50% 0 50% 0 / 40% 0 40% 0;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    width: 100%;
}

.hero-banner-inner {
    width: 100%;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 10, 40, 0.55) 0%, rgba(0, 10, 40, 0.30) 55%, rgba(0, 10, 40, 0.05) 100%);
    display: flex;
    align-items: center;
}

.hero-banner-content {
    padding: 70px 80px;
    max-width: 620px;
}

.hero-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 32px;
}

.btn-get-estimate {
    display: inline-block;
    background: #ff9520;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 44px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.btn-get-estimate:hover {
    background: #d96c00;
    color: #fff;
}

.hero-banner-badges {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    margin-top: 10px;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .hero-banner-inner {
        min-height: 380px;
    }
    .hero-banner-content {
        padding: 40px 24px;
    }
    .hero-banner-title {
        font-size: 1.8rem;
    }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-block;
}

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

/* ===== SECTION HEADINGS ===== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title.blue {
    color: var(--heading-blue);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px 0 25px;
    border-radius: 2px;
}

.section-divider.center {
    margin: 15px auto 25px;
}

/* ===== SERVICES GRID ===== */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

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

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #c8e6f5, #7bbfd8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a8ea8;
    font-size: 0.95rem;
    font-weight: 600;
}

.service-card-body {
    padding: 22px;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.service-card-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ===== WHY CHOOSE US ===== */
.why-us-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 18px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== PROJECT CARDS ===== */
.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    background: white;
}

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

.project-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, #b8d8e8 0%, #7aaec4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #4a7a90;
    font-weight: 600;
}

.project-card-body {
    padding: 18px;
}

.project-category-tag {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.project-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.project-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
    border-top: 4px solid var(--primary);
}

.review-stars {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
    background: linear-gradient(135deg, #c8e6f5 0%, #7bbfd8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7a90;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.placeholder-img-dark {
    background: linear-gradient(135deg, #8bb8cc 0%, #4a7a90 100%);
    color: #d0e8f0;
}

/* ===== CTA BANNER ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.btn-white {
    background-color: #ff9520;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 35px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-white:hover {
    background-color: #f5820a;
    color: #fff;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--dark-navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 60px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    margin-right: 8px;
    transition: background 0.2s;
}

.social-links a:hover {
    background-color: var(--primary);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a3a5c 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero .breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item a {
    color: var(--primary);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

/* ===== FAQ ===== */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
    border-radius: 8px !important;
    overflow: hidden;
}

/* ===== AREAS GRID ===== */
.area-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.25s;
    display: block;
    color: var(--text-dark);
}

.area-card:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,158,212,0.3);
}

.area-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    transition: color 0.25s;
}

.area-card:hover i {
    color: white;
}

/* ===== AREA PHOTO CARDS ===== */
.area-photo-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    background: white;
    color: var(--text-dark);
}
.area-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26,158,212,0.18);
    color: var(--text-dark);
}
.area-photo-img {
    height: 220px;
    overflow: hidden;
}
.area-photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.area-photo-card:hover .area-photo-img img {
    transform: scale(1.04);
}
.area-photo-body {
    padding: 18px 20px;
    border-top: 1px solid #eee;
}
.area-photo-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.area-photo-service {
    font-size: 0.88rem;
    color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-form-wrap {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.contact-info-box {
    background: var(--dark-navy);
    border-radius: 12px;
    padding: 40px;
    color: white;
}

.contact-info-box h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

/* ===== LOGIN PAGE ===== */
.login-card {
    background: white;
    border-radius: 14px;
    padding: 45px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    max-width: 450px;
    margin: 80px auto;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

/* ===== CLIENT TESTIMONIALS CAROUSEL ===== */
.testimonials-outer {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.testimonials-outer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: calc(100% - 20px);
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
    z-index: 5;
}

.testimonials-track {
    display: flex;
    gap: 22px;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.09);
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 4px solid #1a9ed4;
    user-select: none;
    color: inherit;
    text-decoration: none;
}

a.testimonial-card-link:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.testimonial-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a2340;
}

.testimonial-source {
    font-size: 0.8rem;
    color: #888;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #1a9ed4;
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0,0,0,0.18);
    transition: background 0.2s;
}

.testimonials-btn:hover {
    background: #1585b5;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.testimonials-dots .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #c8dce8;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.testimonials-dots .dot.active {
    background: #1a9ed4;
    transform: scale(1.25);
}

/* ===== LARGE PROJECT PHOTOS CAROUSEL ===== */
.large-photos-outer {
    overflow: hidden;
    width: 100%;
    padding: 24px 0;
    background: #fff;
}

.large-photos-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.large-photo-item {
    flex: 0 0 calc(31vw - 5px);
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    position: relative;
}

.large-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.large-photo-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .large-photo-item {
        flex: 0 0 80vw;
        height: 250px;
    }
}

/* ===== ABOUT VIDEO BLOCK ===== */
.about-video-wrap {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a9ed4;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.about-play-btn:hover {
    background: white;
    transform: scale(1.08);
}

.about-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a9ed4;
    background: #e8f5fc;
    padding: 5px 14px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: #1a2340;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-link {
    color: #1a9ed4;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 8px;
    transition: letter-spacing 0.2s;
}

.about-link:hover {
    color: #1585b5;
    letter-spacing: 1.5px;
}

/* ===== CONSULTATION CARDS ===== */
.consult-card {
    background: white;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    height: 100%;
}

.consult-icon {
    width: 52px;
    height: 52px;
    background: #e8f5fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a9ed4;
    margin: 0 auto 20px;
}

.consult-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a2340;
    margin-bottom: 12px;
}

.consult-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== PROJECT GALLERY CARDS ===== */
.project-gallery-card {
    display: block;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    color: inherit;
    text-decoration: none;
    border: 1px solid #eee;
    transition: box-shadow 0.25s, transform 0.25s;
}

.project-gallery-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

.project-gallery-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.project-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery-card:hover .project-gallery-img img {
    transform: scale(1.05);
}

.project-gallery-body {
    padding: 18px 20px;
}

.project-gallery-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2340;
    margin: 0;
}

/* ===== BEFORE/AFTER INTERACTIVE SLIDER ===== */
.ba-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.ba-before, .ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-after {
    clip-path: inset(0 0 0 50%);
}

.ba-before > *, .ba-after > * {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ba-divider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-label {
    position: absolute;
    bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    background: rgba(0,0,0,0.45);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
}

.ba-label-left { left: 18px; }
.ba-label-right { right: 18px; }

.ba-slider:hover .ba-label {
    opacity: 1;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #1a9ed4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    gap: 1px;
    cursor: col-resize;
}

/* ===== MAP SECTION ===== */
.map-wrap {
    width: 100%;
    height: 440px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-area-item {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1a2340;
    margin: 0;
    padding: 5px 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
}
a.service-area-item:hover {
    color: #1a9ed4;
}

/* ===== BRAND LINK ===== */
.brand-link {
    color: #1a9ed4;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.brand-link:hover {
    color: #1a9ed4;
    border-bottom-color: #1a9ed4;
}

/* ===== FREE ESTIMATE STRIP ===== */
.free-estimate-strip {
    background: #1a2340;
    padding: 36px 0;
}

.free-estimate-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: #fff;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0 40px;
        min-height: auto;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-image-wrap,
    .hero-image-placeholder {
        height: 360px;
        margin-top: 40px;
    }
    .main-navbar .nav-link {
        padding: 10px 14px !important;
    }
    .btn-login, .btn-contact-nav {
        margin-top: 8px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .contact-form-wrap {
        padding: 25px;
    }
}

/* ===== TIP ARTICLE CARDS ===== */
.tip-article-card {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    background: #222;
}

.tip-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

.tip-article-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.tip-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.tip-article-card:hover .tip-article-img img {
    transform: scale(1.04);
}

.tip-article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3a5c 0%, #1a9ed4 100%);
}

.tip-article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20,30,55,0.92) 60%, transparent 100%);
    padding: 32px 20px 18px;
}

.tip-article-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

/* ===== TIP DETAIL PAGE ===== */
.tip-detail-hero {
    background: #1a2340;
    padding: 60px 0 50px;
}

.tip-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1a9ed4;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 22px;
    text-decoration: none;
    transition: color 0.2s;
}

.tip-back-link:hover {
    color: #5dc0e8;
}

.tip-detail-h1 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
}

.tip-detail-cover {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    height: 340px;
}

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

.tip-detail-cover-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #2a3a5c 0%, #1a9ed4 100%);
}

.tip-detail-content {
    max-width: 860px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3748;
}

.tip-detail-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2340;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.tip-detail-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a9ed4;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.tip-detail-content p {
    margin-bottom: 1.2rem;
}

.tip-detail-content ul,
.tip-detail-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.tip-detail-content li {
    margin-bottom: 0.4rem;
}

.tip-toc-heading {
    font-size: 1.3rem !important;
    color: #1a2340 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.6rem !important;
}

.tip-toc {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    background: #f4f8fc;
    border-left: 4px solid #1a9ed4;
    border-radius: 6px;
    padding: 16px 20px;
}

.tip-toc li {
    margin-bottom: 6px;
}

.tip-toc a {
    color: #1a9ed4;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.97rem;
}

.tip-toc a:hover {
    text-decoration: underline;
    color: #1585b5;
}

.tip-section-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #d0dce8 0%, #b8ccd8 100%);
    border-radius: 10px;
    margin: 2rem 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tip-section-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='%23a0b4c4' viewBox='0 0 16 16'%3E%3Cpath d='M6.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z'/%3E%3Cpath d='M2.002 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-12zm12 1a1 1 0 0 1 1 1v6.5l-3.777-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062L1.002 12V3a1 1 0 0 1 1-1h12z'/%3E%3C/svg%3E") center no-repeat;
    background-size: 60px;
    opacity: 0.5;
}

.tip-section-img-wrap {
    margin: 2rem 0 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tip-section-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .tip-section-img-placeholder,
    .tip-section-img-wrap img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .tip-detail-h1 {
        font-size: 1.6rem;
    }
    .tip-detail-cover {
        height: 260px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .tip-article-img {
        height: 220px;
    }
    .tip-detail-h1 {
        font-size: 1.35rem;
    }
}

/* ===== SHOWCASE TEXT BLOCK ===== */
.showcase-media-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #2a3a5c 0%, #1a9ed4 100%);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.showcase-eyebrow {
    color: #1a9ed4;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.showcase-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a2340;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-text-block p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .showcase-heading { font-size: 1.6rem; }
    .showcase-media-placeholder { height: 280px; }
}

/* ── Damage Restoration Page ── */
.dr-eyebrow {
    color: #1a9ed4;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.dr-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a2340;
    line-height: 1.2;
    margin-bottom: 22px;
}

.dr-body {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.dr-link {
    color: #1a9ed4;
    font-weight: 600;
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    transition: color 0.2s;
}
.dr-link:hover { color: #1483b3; }

.dr-photo-section {
    padding: 20px 0 40px;
    background: #f8f9fa;
}

@media (max-width: 991px) {
    .dr-h2 { font-size: 1.6rem; }
}

/* ── Before/After Slider ── */
.dr-ba-section {
    background: #111827;
    overflow: hidden;
}

.dr-ba-row {
    display: flex;
    width: 100%;
    height: 560px;
}

.dr-ba-wrap {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.dr-ba-before,
.dr-ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dr-ba-after {
    clip-path: inset(0 50% 0 0);
}

.dr-ba-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.dr-ba-placeholder-after {
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.dr-ba-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 4px 14px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.25s;
}

.dr-ba-label-before { left: 14px; }
.dr-ba-label-after  { right: 14px; }

.dr-ba-wrap:hover .dr-ba-label {
    opacity: 1;
}

.dr-ba-label-before { left: 16px; }
.dr-ba-label-after  { right: 16px; }

.dr-ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
}

.dr-ba-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1a9ed4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.dr-ba-btn i { font-size: 0.75rem; }

/* separator line between sliders */
.dr-ba-wrap + .dr-ba-wrap::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.25);
    z-index: 10;
}

/* ── Recent Restoration Projects ── */
.dr-projects-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2340;
    margin-bottom: 24px;
}

@media (max-width: 575px) {
    .dr-ba-row { height: 240px; }
    .dr-ba-btn { width: 36px; height: 36px; }
}

/* ── Basement Before/After Slider ── */
.bm-ba-wrap {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    height: 420px;
    border-radius: 12px;
}

.bm-ba-before,
.bm-ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bm-ba-after { clip-path: inset(0 50% 0 0); }

.bm-ba-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.bm-ba-placeholder-after {
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.bm-ba-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 4px 14px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.25s;
}

.bm-ba-label-before { left: 14px; }
.bm-ba-label-after  { right: 14px; }

.bm-ba-wrap:hover .bm-ba-label { opacity: 1; }

.bm-ba-handle {
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
}

.bm-ba-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #1a9ed4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.bm-ba-btn i { font-size: 0.75rem; }

/* ── Custom Homes Project Cards ── */
.ch-project-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}

.ch-project-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

.ch-project-img {
    position: relative;
}

.ch-project-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(20,30,50,0.82);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ch-project-body {
    padding: 14px 16px 16px;
}

.ch-project-title {
    font-weight: 700;
    font-size: 0.97rem;
    color: #1a9ed4;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ch-project-thumbs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ch-thumb {
    width: 46px;
    height: 36px;
    border-radius: 4px;
    background: linear-gradient(135deg, #c8dfe8, #a0bfc8);
    flex-shrink: 0;
}

.ch-thumb-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-left: 4px;
}

/* ===== OUR PROCESS PAGE ===== */
.process-hero {
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.process-hero-left {
    padding: 70px 50px 70px 0;
}

.process-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.process-h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a9ed4;
    margin-bottom: 12px;
}

.process-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 18px;
}

.process-intro {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.75;
}

.process-hero-right {
    padding: 0;
}

.process-hero-img-wrap {
    position: relative;
    height: 480px;
    display: flex;
    gap: 10px;
}

.process-hero-placeholder {
    flex: 0 0 55%;
    background: linear-gradient(135deg, #1a2340 0%, #2a4a7c 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.process-hero-img2 {
    flex: 1;
    background: linear-gradient(135deg, #2a3a5c 0%, #1a9ed4 100%);
    border-radius: 50% 0 0 50%;
}

.process-step-badge {
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 14px 18px;
    color: #fff;
}

.process-step-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.process-step-sub {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 2px 0;
}

.process-step-time {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}

.process-step-block {
    padding: 32px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    height: 100%;
    transition: box-shadow 0.2s;
}

.process-step-block:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.process-step-num {
    width: 48px;
    height: 48px;
    background: #1a9ed4;
    color: #fff;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.process-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 12px;
}

.process-step-block p {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.process-step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.process-step-list li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.88rem;
    color: #555;
}

.process-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #1a9ed4;
    border-radius: 50%;
}

.process-duration {
    display: inline-block;
    background: #eef7fc;
    color: #1a9ed4;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.process-img-divider {
    margin: 0 0 48px;
}

.process-divider-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a2340 0%, #1a9ed4 100%);
    border-radius: 12px;
}

@media (max-width: 991px) {
    .process-hero-left { padding: 40px 20px; }
    .process-hero-img-wrap { height: 300px; }
    .process-h1 { font-size: 2rem; }
    .process-step-block { padding: 20px; }
}

/* ===== HOME ADDITION CALCULATOR ===== */
.gc-calc { background: #eef3f8; border-radius: 12px; padding: 28px; margin: 2rem 0; }
.gc-calc-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; color: #999; text-transform: uppercase; margin-bottom: 4px; }
.gc-calc-title { font-family: 'Montserrat',sans-serif; font-size: 1.35rem; font-weight: 700; color: #1a2340; margin: 0 0 5px; }
.gc-calc-subtitle { font-size: 0.92rem; color: #1a9ed4; margin: 0 0 20px; }
.gc-calc-body { display: flex; gap: 18px; align-items: flex-start; }
.gc-calc-left { flex: 0 0 52%; min-width: 0; }
.gc-calc-right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.gc-section { background: #fff; border-radius: 8px; padding: 16px 18px; margin-bottom: 10px; }
.gc-section-num { font-weight: 700; font-size: 0.93rem; color: #1a2340; margin-bottom: 12px; }
.gc-type-label { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1.5px solid #dde3ec; border-radius: 6px; margin-bottom: 8px; cursor: pointer; font-size: 0.88rem; color: #2d3748; transition: border-color 0.2s, background 0.2s; }
.gc-type-label:hover { border-color: #1a9ed4; }
.gc-type-label input[type=radio] { accent-color: #1a9ed4; width: 17px; height: 17px; cursor: pointer; flex-shrink: 0; }
.gc-size-wrap { margin: 4px 0 6px; }
.gc-size-wrap input[type=range] { width: 100%; accent-color: #1a9ed4; cursor: pointer; }
.gc-size-labels { display: flex; justify-content: space-between; font-size: 0.77rem; color: #888; margin-top: 3px; }
.gc-size-center { text-align: center; font-weight: 700; color: #1a2340; }
.gc-complexity-note { font-size: 0.83rem; color: #666; margin: 0 0 10px; }
.gc-driver-label { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1.5px solid #dde3ec; border-radius: 6px; margin-bottom: 7px; cursor: pointer; font-size: 0.86rem; color: #2d3748; transition: border-color 0.2s; }
.gc-driver-label:hover { border-color: #1a9ed4; }
.gc-driver-label input[type=checkbox] { accent-color: #1a9ed4; width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.gc-footer-note { font-size: 0.78rem; color: #d97706; margin-top: 4px; padding: 0 2px; line-height: 1.5; }
.gc-card { background: #fff; border-radius: 8px; padding: 16px 18px; }
.gc-card-title { font-weight: 700; font-size: 0.93rem; color: #1a2340; margin-bottom: 12px; }
.gc-range-psf { display: flex; justify-content: space-between; font-size: 0.8rem; color: #666; margin-bottom: 5px; }
.gc-range-bar { position: relative; height: 8px; background: #dde6ef; border-radius: 4px; margin-bottom: 14px; }
.gc-range-fill { position: absolute; top: 0; left: 0; height: 100%; background: #1a9ed4; border-radius: 4px; transition: width 0.25s; pointer-events: none; }
.gc-range-thumb { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 18px; height: 18px; background: #1a9ed4; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 1px 6px rgba(0,0,0,0.25); transition: left 0.25s; pointer-events: none; }
.gc-est-row { display: flex; gap: 18px; margin-bottom: 8px; }
.gc-est-block .gc-est-label { font-size: 0.68rem; color: #888; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 1px; }
.gc-est-block .gc-est-val { font-family: 'Montserrat',sans-serif; font-size: 1.05rem; font-weight: 800; color: #1a2340; }
.gc-total-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: #aaa; }
.gc-viz-inner { border: 1.5px dashed #c0ccd8; border-radius: 6px; background: #f8fafc; padding: 10px; }
.gc-viz-inner svg { width: 100%; display: block; }
.gc-viz-note { font-size: 0.72rem; color: #999; margin: 6px 0 0; }
.gc-cta-text { font-size: 0.87rem; color: #555; margin: 0 0 12px; }
.gc-cta-btn { display: inline-block; background: #ff9520; color: #fff !important; padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 0.88rem; text-decoration: none !important; transition: background 0.2s; }
.gc-cta-btn:hover { background: #f5820a; }

/* ===== FAQ BLOCK ===== */
.tip-faq { margin-top: 2.5rem; }
.tip-faq > h2 { font-family: 'Montserrat',sans-serif; font-size: 1.4rem; font-weight: 700; color: #1a2340; margin-bottom: 1rem; }
.tip-faq-item { border-left: 4px solid #1a9ed4; padding: 12px 16px; margin-bottom: 12px; background: #f4f8fc; border-radius: 0 6px 6px 0; }
.tip-faq-q { font-family: 'Montserrat',sans-serif; font-weight: 700; color: #1a2340; margin-bottom: 5px; font-size: 0.95rem; }
.tip-faq-a { color: #555; font-size: 0.9rem; margin: 0; }

@media (max-width: 767px) {
    .gc-calc-body { flex-direction: column; }
    .gc-calc-left { flex: none; width: 100%; }
}
