/* ===== PREMIUM HOME SECTIONS ===== */

/* --- WHY CHOOSE US (Bento/Card Grid) --- */
.why-choose-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.why-choose-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.choose-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-emergency-red) 0%, #7f1d1d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.choose-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.choose-card p {
    color: var(--color-gray-400);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* --- AREAS WE SERVE (Grid & Map) --- */
.areas-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: #020617;
    text-align: center;
    color: #fff;
}

.areas-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--color-gray-400);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: left;
}

.area-group h3 {
    color: var(--color-emergency-red);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.area-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-group ul li {
    margin-bottom: 8px;
}

.area-group ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    font-size: 0.95rem;
}

.area-group ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.areas-map-container,
.areas-map {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    filter: grayscale(100%) invert(90%) hue-rotate(180deg) brightness(85%);
    transition: filter 0.5s ease;
}

.areas-map-container:hover,
.areas-map:hover {
    filter: grayscale(0%);
}


/* --- BOOK APPOINTMENT (High Impact) --- */
.appointment-section-premium {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: linear-gradient(to right, #111, #222);
    position: relative;
    overflow: hidden;
}

.appointment-banner {
    background: radial-gradient(circle at center, #b91c1c 0%, #7f1d1d 100%);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.appointment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.appt-content {
    position: relative;
    z-index: 2;
}

.appt-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.appt-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.appt-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-appt-primary {
    background: #fff;
    color: #b91c1c !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
}

.btn-appt-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #dc2626 !important;
}

.btn-appt-secondary {
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-appt-secondary:hover {
    background: #fff;
    color: #b91c1c;
    transform: translateY(-3px);
}

/* --- APPOINTMENT SPLIT LAYOUT (SEO + IMAGE) --- */
.appointment-banner-split {
    background: radial-gradient(circle at center, #b91c1c 0%, #7f1d1d 100%);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: visible;
}

.appointment-banner-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.appt-split-content {
    flex: 1;
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.appt-split-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.appt-split-content h3 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.appt-split-content .highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    text-decoration: none;
    margin-top: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.appt-split-content .highlight-number:hover {
    color: #fff;
}

.appt-split-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    line-height: 1.5;
}

.appt-split-btn-group {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Image Stack Gallery */
.appt-split-image {
    width: 100%;
    position: relative;
    z-index: 2;
    display: block;
    height: 400px;
    margin-top: 20px;
}

.appt-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.appt-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.4s ease;
    object-fit: cover;
}

.appt-img-1 {
    width: 50%;
    top: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.appt-img-2 {
    width: 50%;
    bottom: 0;
    right: 5%;
    transform: rotate(-5deg);
    z-index: 2;
}

.appt-img-3 {
    width: 60%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    border: 4px solid #fff;
}

/* Desktop Styles */
@media (min-width: 900px) {
    .appointment-banner-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 50px;
    }

    .appt-split-content {
        flex: 1;
        padding-right: 40px;
    }

    .appt-split-image {
        flex: 0 0 50%;
        height: 500px;
        margin-top: 0;
    }

    .appt-split-content h2 {
        font-size: 2.5rem;
    }

    .appt-split-content .highlight-number {
        font-size: 2.5rem;
    }
}