/* ============================================ */
/* INDEX.CSS - Complete styles for index.php */
/* ============================================ */

:root {
    --orange: #FF8C00;
    --orange-light: #FFF8F0;
    --orange-dark: #e07d00;
    --green: #00a651;
    --green-dark: #008040;
    --blue: #2196F3;
    --blue-dark: #1976D2;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ============================================ */
/* LOGIN STATUS BAR */
/* ============================================ */
.login-status {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 8px 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
}

/* ============================================ */
/* WELCOME HERO SECTION */
/* ============================================ */
.welcome-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    margin-bottom: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.welcome-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
}
.welcome-text p {
    opacity: 0.9;
    font-size: 14px;
}
.welcome-stats {
    display: flex;
    gap: 25px;
}
.stat-badge {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}
.stat-badge .number {
    font-size: 24px;
    font-weight: bold;
}
.stat-badge .label {
    font-size: 11px;
    opacity: 0.8;
}

/* ============================================ */
/* FEATURED SERVICES GRID */
/* ============================================ */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}
.featured-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}
.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.featured-card.home-service:hover {
    border-color: var(--green);
}
.featured-card.home-service .featured-overlay {
    background: linear-gradient(to top, rgba(0,166,81,0.9), transparent);
}
.featured-card.home-service .featured-btn {
    background: var(--green);
}
.featured-card.home-service .featured-btn:hover {
    background: var(--green-dark);
}
.featured-card.business-service:hover {
    border-color: var(--orange);
}
.featured-card.business-service .featured-overlay {
    background: linear-gradient(to top, rgba(255,140,0,0.9), transparent);
}
.featured-card.business-service .featured-btn {
    background: var(--orange);
}
.featured-card.business-service .featured-btn:hover {
    background: var(--orange-dark);
}
.featured-card.special-offer:hover {
    border-color: var(--blue);
}
.featured-card.special-offer .featured-overlay {
    background: linear-gradient(to top, rgba(33,150,243,0.9), transparent);
}
.featured-card.special-offer .featured-btn {
    background: var(--blue);
}
.featured-card.special-offer .featured-btn:hover {
    background: var(--blue-dark);
}
.featured-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
}
.featured-overlay h3 {
    color: white;
    font-size: 18px;
    margin: 0;
}
.featured-content {
    padding: 20px;
    text-align: center;
}
.featured-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}
.featured-btn {
    display: inline-block;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.voucher-image-placeholder {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}
.featured-card.special-offer:hover .voucher-image-placeholder {
    transform: scale(1.02);
}

/* ============================================ */
/* STATS ROW */
/* ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.stat-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--orange);
    transition: all 0.3s;
}
.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.stat-item i {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 8px;
}
.stat-item .stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}
.stat-item .stat-label {
    font-size: 12px;
    color: #666;
}

/* ============================================ */
/* SECTION HEADER */
/* ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.section-header h2 {
    font-size: 22px;
    color: var(--dark);
    position: relative;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.section-header h2 i {
    color: var(--orange);
    margin-right: 8px;
}

/* ============================================ */
/* BOOKING CARDS */
/* ============================================ */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.booking-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.booking-header {
    padding: 25px 20px;
    color: white;
    text-align: center;
    border-radius: 28px 28px 0 0;
}
.booking-header.handyman {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.booking-header.emergency {
    background: linear-gradient(135deg, #dc3545, #b02a37);
}
.booking-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.booking-price {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
}
.booking-price small {
    font-size: 13px;
    font-weight: normal;
    opacity: 0.85;
}
.booking-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.booking-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.booking-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}
.booking-features li i {
    width: 22px;
    color: var(--blue);
}
.booking-features li.emergency i {
    color: #dc3545;
}
.btn-book {
    display: block;
    text-align: center;
    background: var(--blue);
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
}
.btn-book:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.btn-book.emergency {
    background: #dc3545;
}
.btn-book.emergency:hover {
    background: #b02a37;
}
.login-required-sm {
    text-align: center;
    padding: 14px;
    background: #fff3cd;
    border-radius: 50px;
    font-size: 13px;
    color: #856404;
    margin-top: auto;
}
.login-required-sm a {
    color: var(--orange);
    font-weight: bold;
}

/* ============================================ */
/* CALENDAR PREVIEW */
/* ============================================ */
.calendar-preview {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 20px;
}
.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.week-range {
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
}
.nav-btn {
    background: var(--white);
    border: 1px solid #e0e0e0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--blue);
    font-size: 12px;
    transition: all 0.3s;
}
.nav-btn:hover {
    background: var(--blue);
    color: white;
}
.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.calendar-preview-day {
    text-align: center;
    padding: 8px 4px;
    border-radius: 10px;
    font-size: 11px;
    background: white;
    border: 1px solid #e0e0e0;
}
.calendar-preview-day .day-name {
    font-weight: 600;
    font-size: 10px;
}
.calendar-preview-day .day-date {
    font-size: 14px;
    font-weight: bold;
}
.calendar-preview-day.available {
    background: #e8f5e9;
    border-color: #a5d6a7;
    cursor: pointer;
}
.calendar-preview-day.booked {
    background: #ffccbc;
    border-color: #ffab91;
    cursor: not-allowed;
    opacity: 0.6;
}
.calendar-preview-day.past {
    background: #f0f0f0;
    color: #bbb;
    cursor: not-allowed;
}

/* ============================================ */
/* ABOUT SECTION */
/* ============================================ */
.about-compact {
    background: var(--orange-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255,140,0,0.15);
}
.about-compact h2 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 15px;
}
.about-compact h2 i {
    color: var(--orange);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 25px;
}
.feature {
    text-align: center;
}
.feature i {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 8px;
}
.feature h4 {
    font-size: 13px;
    margin-bottom: 3px;
    color: var(--dark);
}
.feature p {
    font-size: 10px;
    color: #666;
}

/* ============================================ */
/* CONTACT SECTION */
/* ============================================ */
.contact-box {
    background: var(--orange-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255,140,0,0.15);
}
.contact-box h2 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 20px;
}
.contact-box h2 i {
    color: var(--orange);
    margin-right: 8px;
}
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.contact-method {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    min-width: 140px;
}
.contact-method:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}
.contact-method i {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}
.contact-method h4 {
    font-size: 14px;
    margin: 0 0 5px;
    color: var(--dark);
}
.contact-method p {
    font-size: 11px;
    margin: 0;
    color: #666;
}
.staff-id-btn {
    background: var(--green);
    color: white;
    border: none;
    cursor: pointer;
}
.staff-id-btn:hover {
    background: #006633;
}

/* ============================================ */
/* REVIEWS SECTION */
/* ============================================ */
.reviews-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}
.reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.reviews-header h3 {
    font-size: 18px;
    color: var(--dark);
    margin: 0;
}
.reviews-header h3 i {
    color: var(--orange);
    margin-right: 8px;
}
.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.reviews-slider::-webkit-scrollbar {
    height: 5px;
}
.reviews-slider::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}
.reviews-slider::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}
.review-card {
    min-width: 300px;
    flex-shrink: 0;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 15px;
    border-left: 3px solid var(--orange);
    scroll-snap-align: start;
    transition: all 0.3s;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: white;
}
.review-stars {
    color: #FFC107;
    font-size: 11px;
    margin-top: 3px;
}
.review-text {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin: 10px 0;
}
.review-footer {
    font-size: 10px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

/* ============================================ */
/* GALLERY SECTION */
/* ============================================ */
.gallery-section {
    margin-bottom: 30px;
}
.gallery-header {
    text-align: center;
    margin-bottom: 20px;
}
.gallery-header h2 {
    font-size: 22px;
    color: var(--dark);
    display: inline-block;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.gallery-header h2 i {
    color: var(--green);
    margin-right: 8px;
}
.gallery-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.gallery-btn {
    background: var(--green);
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.gallery-btn:hover {
    background: var(--green);
    transform: translateY(-2px);
}

/* ============================================ */
/* QUOTE FULL-WIDTH CARD */
/* ============================================ */
.quote-fullwidth-card {
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.quote-fullwidth-card:hover {
    transform: translateY(-5px);
}
.quote-card-inner {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}
.quote-fullwidth-card:hover .quote-card-inner {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.quote-header-orange {
    background: linear-gradient(135deg, #FF8C00 0%, #FFaa33 100%);
    padding: 20px 30px;
    color: white;
}
.quote-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.quote-header-content i {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.quote-header-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.quote-badge {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 600;
    margin-left: auto;
}
.quote-body {
    padding: 30px;
}
.quote-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.quote-info {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
}
.quote-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 500;
}
.quote-icon-row i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF3E0;
    color: #FF8C00;
    border-radius: 50%;
    font-size: 16px;
}
.quote-cta {
    flex: 1;
    min-width: 180px;
    text-align: center;
    background: #fef9f0;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,140,0,0.2);
}
.quote-price-sample {
    margin-bottom: 20px;
}
.sample-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
.sample-price {
    font-size: 36px;
    font-weight: 800;
    color: #FF8C00;
    line-height: 1;
}
.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF8C00;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
.quote-btn:hover {
    background: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,166,81,0.3);
}
.quote-trust {
    margin-top: 18px;
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.quote-trust i {
    color: #28a745;
}

/* ============================================ */
/* AWARDS SECTION */
/* ============================================ */
.awards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255,140,0,0.1);
}
.awards-header h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}
.awards-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.award-item {
    background: white;
    padding: 20px 15px;
    border-radius: var(--radius-md);
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}
.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}
.award-item i {
    margin-bottom: 10px;
    display: block;
}
.award-item h4 {
    font-size: 14px;
    color: var(--dark);
    margin: 0 0 5px;
}
.award-item p {
    font-size: 11px;
    color: #888;
    margin: 0;
}

/* ============================================ */
/* PRICE ESTIMATOR */
/* ============================================ */
.estimator-section {
    margin-bottom: 35px;
}
.estimator-header {
    text-align: center;
    margin-bottom: 20px;
}
.estimator-header h2 {
    font-size: 22px;
    color: var(--dark);
    display: inline-block;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.estimator-header p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
.estimator-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,140,0,0.1);
}
.estimator-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.estimator-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 8px;
}
.estimator-group label i {
    color: var(--orange);
    margin-right: 6px;
}
.estimator-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
    color: var(--dark);
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}
.estimator-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.estimator-group select:hover {
    border-color: var(--orange);
}
.estimator-result {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed #e0e0e0;
    text-align: center;
}
.estimate-price {
    margin-bottom: 15px;
}
.estimate-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}
.estimate-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange);
    margin-left: 10px;
}
.estimate-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}
.estimate-note a {
    color: var(--orange);
    font-weight: 600;
}
.estimate-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}
.estimate-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,140,0,0.3);
    color: white;
}

/* ============================================ */
/* SERVICE AREAS SECTION */
/* ============================================ */
.service-areas-section {
    margin-bottom: 35px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,140,0,0.08);
}
.service-areas-header {
    text-align: center;
    margin-bottom: 25px;
}
.service-areas-header h2 {
    font-size: 22px;
    color: var(--dark);
    display: inline-block;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.service-areas-header p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.area-group {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: all 0.3s;
}
.area-group:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
}
.area-group h4 {
    font-size: 14px;
    color: var(--dark);
    margin: 0 0 12px;
}
.area-group h4 i {
    color: var(--orange);
    margin-right: 8px;
}
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.area-tag {
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}
.area-tag:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: scale(1.05);
}
.areas-cta {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.areas-cta p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.areas-cta p a {
    color: var(--orange);
    font-weight: 600;
}
.areas-book-btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.areas-book-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,140,0,0.3);
    color: white;
}

/* ============================================ */
/* COOKIE BANNER */
/* ============================================ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 15px 20px;
    z-index: 10000;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-text {
    font-size: 13px;
    flex: 1;
    min-width: 200px;
}
.cookie-actions {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-btn.accept {
    background: #28a745;
    color: white;
}
.cookie-btn.accept:hover {
    background: #218838;
}
.cookie-btn.reject {
    background: #dc3545;
    color: white;
}
.cookie-btn.reject:hover {
    background: #c82333;
}

/* ============================================ */
/* GALLERY MODAL */
/* ============================================ */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9998;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}
.gallery-modal.show {
    display: block;
}
.gallery-modal .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: white;
}
.gallery-modal .gallery-header h3 {
    margin: 0;
    font-size: 20px;
}
.gallery-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px 0;
}
.gallery-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    background: #333;
    position: relative;
}
.gallery-item:hover {
    transform: scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px;
    font-size: 12px;
    text-align: center;
}

/* ============================================ */
/* IMAGE PREVIEW MODAL */
/* ============================================ */
.image-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.image-preview-modal.show {
    display: flex;
}
.image-preview-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.image-preview-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}
.image-preview-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* ============================================ */
/* CHAT WINDOW */
/* ============================================ */
.bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.emergency-btn {
    background: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(220,53,69,0.4);
    transition: all 0.3s;
}
.emergency-btn:hover {
    transform: scale(1.1);
}
.chat-button {
    background: #FF8C00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,140,0,0.4);
    transition: all 0.3s;
}
.chat-button:hover {
    transform: scale(1.1);
}
.chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    height: 450px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}
.chat-window.open {
    display: flex;
}
.chat-header {
    background: #FF8C00;
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-header h4 {
    margin: 0;
    font-size: 16px;
}
.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}
.message {
    margin-bottom: 10px;
    display: flex;
}
.message.bot {
    justify-content: flex-start;
}
.message.user {
    justify-content: flex-end;
}
.message-content {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
}
.message.bot .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.message.user .message-content {
    background: #FF8C00;
    color: white;
    border-bottom-right-radius: 4px;
}
.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    background: white;
}
.chat-input-area input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 13px;
}
.chat-input-area button {
    background: #FF8C00;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.chat-input-area button:hover {
    background: #e07d00;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */
@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .featured-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: 1fr; }
    .welcome-hero { flex-direction: column; text-align: center; padding: 20px !important; }
    .welcome-text h2 { font-size: 22px !important; }
    .welcome-stats { justify-content: center !important; gap: 10px !important; }
    .stat-badge { padding: 6px 12px !important; }
    .stat-badge .number { font-size: 18px !important; }
    .section-header { flex-direction: column; text-align: center; }
    .contact-methods { flex-direction: column; align-items: stretch; }
    .contact-method { padding: 15px; }
    .review-card { min-width: 260px; }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .estimator-row { grid-template-columns: 1fr; }
    .estimate-amount { font-size: 28px; display: block; margin: 5px 0; }
    .service-areas-grid { grid-template-columns: 1fr; }
    .service-areas-section { padding: 20px 15px; }
    .calendar-preview { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
    .calendar-week { min-width: 500px !important; }
    .calendar-preview-day { min-width: 60px !important; }
    .gallery-section { text-align: center !important; }
    .gallery-buttons { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 10px !important; }
    .gallery-btn { width: 100% !important; max-width: 250px !important; text-align: center !important; }
    .quote-fullwidth-card { margin-bottom: 25px; }
    .quote-header-orange { padding: 15px 20px; }
    .quote-header-content h3 { font-size: 20px; }
    .quote-badge { margin-left: 0; margin-top: 5px; }
    .quote-header-content { flex-direction: column; align-items: flex-start; gap: 10px; }
    .quote-body { padding: 20px; }
    .quote-flex-container { flex-direction: column; gap: 25px; }
    .quote-info { grid-template-columns: 1fr; width: 100%; gap: 14px; }
    .quote-cta { width: 100%; padding: 18px; }
    .sample-price { font-size: 32px; }
    .quote-btn { padding: 12px 20px; font-size: 15px; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
}
@media (max-width: 600px) {
    .service-areas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .review-card { min-width: 240px; }
    .awards-grid { grid-template-columns: 1fr; }
    .quote-icon-row { font-size: 13px; gap: 12px; }
    .quote-icon-row i { width: 28px; height: 28px; font-size: 14px; }
    .quote-cta { padding: 15px; }
}

/* ============================================ */
/* RESPONSIVE FOR QUOTE CARD DESKTOP */
/* ============================================ */
@media (min-width: 768px) {
    .quote-fullwidth-card { width: 100%; }
}
/* ============================================ */
/* ABOUT + GALLERY MERGED SECTION */
/* ============================================ */
.about-gallery-merged {
    background: linear-gradient(135deg, var(--orange-light) 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,140,0,0.12);
    box-shadow: var(--shadow-sm);
}
.about-gallery-header {
    text-align: center;
    margin-bottom: 25px;
}
.about-gallery-header h2 {
    font-size: 24px;
    color: var(--dark);
    display: inline-block;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.about-gallery-header p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
.about-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}
.features-grid-merged {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.feature-merged {
    text-align: center;
    background: white;
    padding: 15px 10px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    border: 1px solid rgba(255,140,0,0.08);
}
.feature-merged:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}
.feature-merged i {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}
.feature-merged h4 {
    font-size: 13px;
    color: var(--dark);
    margin: 0 0 3px;
}
.feature-merged p {
    font-size: 10px;
    color: #888;
    margin: 0;
}

/* Gallery Buttons - Right Side */
.gallery-buttons-merged {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,140,0,0.08);
}
.gallery-buttons-merged h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}
.gallery-buttons-merged p {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}
.gallery-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery-btn-merged {
    padding: 12px 20px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.gallery-btn-merged.home-btn {
    background: var(--green);
    color: white;
}
.gallery-btn-merged.home-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,166,81,0.3);
}
.gallery-btn-merged.business-btn {
    background: var(--orange);
    color: white;
}
.gallery-btn-merged.business-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,140,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .features-grid-merged {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .feature-merged {
        padding: 12px 8px;
    }
    .feature-merged i {
        font-size: 22px;
    }
    .feature-merged h4 {
        font-size: 11px;
    }
    .feature-merged p {
        font-size: 9px;
    }
    .gallery-buttons-merged {
        padding: 15px;
    }
    .gallery-btn-merged {
        padding: 10px 16px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .features-grid-merged {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-gallery-merged {
        padding: 20px 15px;
    }
}
/* ============================================ */
/* QUOTE + ESTIMATOR MERGED SECTION */
/* ============================================ */
.quote-estimator-merged {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,140,0,0.08);
    transition: all 0.3s ease;
}
.quote-estimator-merged:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.quote-estimator-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e0e0e0;
}
.quote-estimator-header h2 {
    font-size: 24px;
    color: var(--dark);
    display: inline-block;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.quote-estimator-header p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
.quote-estimator-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Left - Estimator */
.estimator-section-merged {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 20px;
}
.estimator-row-merged {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.estimator-group-merged label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: var(--dark);
    margin-bottom: 6px;
}
.estimator-group-merged label i {
    color: var(--orange);
    margin-right: 5px;
}
.estimator-group-merged select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 13px;
    background: white;
    color: var(--dark);
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}
.estimator-group-merged select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.estimator-group-merged select:hover {
    border-color: var(--orange);
}
.estimator-result-merged {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 2px dashed #e0e0e0;
    text-align: center;
}
.estimate-price-merged {
    margin-bottom: 10px;
}
.estimate-label-merged {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.estimate-amount-merged {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
    margin-left: 10px;
}
.estimate-note-merged {
    font-size: 11px;
    color: #888;
}
.estimate-note-merged i {
    color: var(--orange);
}

/* Right - Quote CTA */
.quote-cta-merged {
    background: linear-gradient(135deg, var(--orange-light) 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255,140,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quote-icon-merged {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 12px;
}
.quote-icon-merged i {
    background: rgba(255,140,0,0.1);
    padding: 15px;
    border-radius: 50%;
}
.quote-cta-merged h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 0 0 5px;
}
.quote-cta-merged p {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px;
}
.quote-features-merged {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    width: 100%;
}
.quote-features-merged span {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.quote-features-merged span i {
    color: var(--green);
    font-size: 14px;
}
.quote-cta-btn-merged {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
.quote-cta-btn-merged:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,166,81,0.3);
    color: white;
}
.quote-trust-merged {
    margin-top: 14px;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.quote-trust-merged i {
    color: var(--green);
}

/* Responsive */
@media (max-width: 992px) {
    .quote-estimator-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .estimator-row-merged {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .quote-estimator-merged {
        padding: 20px 15px;
    }
    .estimator-row-merged {
        grid-template-columns: 1fr;
    }
    .estimate-amount-merged {
        font-size: 26px;
        display: block;
        margin: 5px 0;
    }
    .quote-cta-btn-merged {
        font-size: 14px;
        padding: 12px 20px;
    }
    .quote-estimator-header h2 {
        font-size: 20px;
    }
}
/* ============================================ */
/* QUOTE + ESTIMATOR - COMPACT & NICER */
/* ============================================ */
.quote-estimator-compact {
    margin-bottom: 30px;
}
.quote-estimator-inner {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(255,140,0,0.08);
    transition: all 0.3s ease;
}
.quote-estimator-inner:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Header */
.qe-header {
    background: linear-gradient(135deg, #FF8C00 0%, #FFaa33 100%);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}
.qe-header-icon i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.qe-header-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.qe-header-text p {
    margin: 0;
    font-size: 11px;
    opacity: 0.85;
}
.qe-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Body */
.qe-body {
    padding: 20px 24px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

/* Estimator */
.qe-estimator {
    flex: 1;
}
.qe-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.qe-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.qe-group label i {
    color: var(--orange);
    margin-right: 4px;
    font-size: 10px;
}
.qe-group select {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 12px;
    background: #fafafa;
    color: var(--dark);
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23999' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}
.qe-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.08);
}
.qe-group select:hover {
    border-color: var(--orange);
}

/* Result */
.qe-result {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e8e8e8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.qe-result-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.qe-result-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
}
.qe-result-note {
    font-size: 10px;
    color: #aaa;
    font-weight: 400;
}

/* Divider */
.qe-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.qe-divider span {
    background: var(--orange-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 14px;
    border: 2px solid rgba(255,140,0,0.15);
}

/* CTA */
.qe-cta {
    text-align: center;
    flex: 1;
}
.qe-cta-features {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.qe-cta-features span {
    font-size: 11px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}
.qe-cta-features span i {
    color: var(--green);
    font-size: 12px;
}
.qe-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.qe-cta-btn:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,166,81,0.3);
    color: white;
}
.qe-cta-btn i {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .qe-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .qe-divider {
        transform: rotate(90deg);
        padding: 0;
    }
    .qe-divider span {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
	/* ============================================ */
/* ABOUT + AREAS WE COVER - MERGED */
/* ============================================ */
.about-areas-merged {
    margin-bottom: 30px;
}
.about-areas-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,140,0,0.08);
    transition: all 0.3s ease;
}
.about-areas-inner:hover {
    box-shadow: var(--shadow-md);
}

/* Left - About */
.about-areas-about {
    padding: 30px 25px;
    background: linear-gradient(135deg, var(--orange-light) 0%, #ffffff 100%);
}
.about-areas-header h2 {
    font-size: 22px;
    color: var(--dark);
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-areas-header h2 i {
    color: var(--orange);
}
.about-areas-header p {
    color: #666;
    font-size: 14px;
    margin: 0 0 18px;
}
.about-areas-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.about-areas-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,140,0,0.06);
    transition: all 0.3s;
}
.about-areas-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--orange);
}
.about-areas-feature i {
    font-size: 24px;
    color: var(--orange);
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}
.about-areas-feature h4 {
    font-size: 13px;
    color: var(--dark);
    margin: 0 0 1px;
}
.about-areas-feature p {
    font-size: 10px;
    color: #888;
    margin: 0;
}

/* Right - Areas */
.about-areas-areas {
    padding: 30px 25px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.areas-cover-box {
    text-align: center;
    color: white;
    width: 100%;
}
.areas-cover-icon i {
    font-size: 48px;
    color: var(--orange);
    background: rgba(255,140,0,0.15);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.areas-cover-box h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: white;
}
.areas-cover-box p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0 0 18px;
}
.areas-cover-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.area-cover-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}
.area-cover-tag:hover {
    background: rgba(255,140,0,0.2);
    border-color: var(--orange);
    transform: translateX(4px);
}
.area-cover-tag i {
    color: var(--green);
    font-size: 16px;
}
.areas-cover-note {
    font-size: 11px;
    opacity: 0.6;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.areas-cover-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}
.areas-cover-note a:hover {
    text-decoration: underline;
}
.areas-cover-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}
.areas-cover-btn:hover {
    background: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,166,81,0.3);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .about-areas-inner {
        grid-template-columns: 1fr;
    }
    .about-areas-about {
        padding: 24px 20px;
    }
    .about-areas-areas {
        padding: 24px 20px;
    }
    .about-areas-features {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .about-areas-features {
        grid-template-columns: 1fr 1fr;
    }
    .about-areas-header h2 {
        font-size: 18px;
    }
    .areas-cover-box h3 {
        font-size: 18px;
    }
    .area-cover-tag {
        font-size: 13px;
        padding: 8px 14px;
    }
    .about-areas-about {
        padding: 18px 16px;
    }
    .about-areas-areas {
        padding: 18px 16px;
    }
}
@media (max-width: 400px) {
    .about-areas-features {
        grid-template-columns: 1fr;
    }
    .about-areas-feature {
        padding: 10px 12px;
    }
    .areas-cover-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}
    .qe-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .qe-header {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 8px;
    }
    .qe-header-text h3 {
        font-size: 16px;
    }
    .qe-badge {
        margin-left: 0;
        font-size: 10px;
        padding: 2px 12px;
    }
    .qe-body {
        padding: 16px;
    }
    .qe-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .qe-result-amount {
        font-size: 20px;
    }
    .qe-cta-features {
        gap: 10px;
    }
    .qe-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 13px;
    }
    .qe-divider span {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
}
