
/* LOCATION PAGE STYLES */
.loc-hero {
    background: #0a0e17; /* Fallback dark blue/black */
    padding: 80px 0 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.loc-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.loc-hero-subtitle {
    color: var(--drh-green, #4caf50);
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.loc-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}
.loc-hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 90%;
    margin-bottom: 35px;
    line-height: 1.6;
}
.loc-feature-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.loc-feature-item {
    text-align: center;
    width: 105px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.loc-feature-item:hover {
    transform: translateY(-3px);
}
.loc-feature-icon {
    color: #22c55e;
    font-size: 1.8rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(34,197,94,0.3));
}
.loc-feature-text {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.3;
    color: #cbd5e1;
}
.loc-form-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    color: #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.device-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.device-box {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #334155;
    position: relative;
}
.device-box:hover {
    border-color: var(--drh-green, #4caf50);
    background: #f8fafc;
}
.device-box.active {
    border-color: var(--drh-green, #4caf50);
    background: #f0fdf4;
}
.device-box.active::after {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--drh-green, #4caf50);
    position: absolute;
    top: 5px; right: 5px;
}
.device-box i {
    font-size: 2rem;
    color: #475569;
    margin-bottom: 10px;
    display: block;
}
.device-box .fw-bold {
    font-size: 0.8rem;
}
.google-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
}
.google-rating-box img {
    height: 35px;
}
.rating-stars {
    color: #fbbc05;
    font-size: 0.9rem;
}

/* Partner Strip */
.partner-strip {
    padding: 40px 0;
}
.partner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    background: #f8fbf8;
    border-radius: 12px;
    padding: 25px 50px;
}
.partner-logo-area {
    display: flex;
    align-items: center;
    gap: 30px;
}
.partner-divider {
    width: 2px;
    height: 60px;
    background: var(--drh-green);
}
.partner-trust-icons {
    display: flex;
    gap: 40px;
}
.pt-icon-group {
    text-align: center;
}
.pt-icon-group i {
    font-size: 1.3rem;
    color: var(--drh-green);
    margin-bottom: 8px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e5f3e5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pt-icon-group span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

/* Core Services */
.loc-services {
    padding: 80px 0;
    background: #f8fafc;
}
.loc-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    border: 1px solid #f1f5f9;
}
.loc-sc-icon {
    width: 70px;
    height: 70px;
    background: var(--drh-green, #4caf50);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
}
.loc-sc-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.loc-sc-desc {
    color: #64748b;
    font-size: 0.95rem;
    
    margin-bottom: 20px;
}

/* Why Choose */
.loc-why {
    padding: 80px 0;
    background: #ffffff;
}
.why-icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
@media(max-width: 991px){
    .why-icon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 767px){
    .why-icon-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}
}
.why-icon-item i {
    color: var(--drh-green, #4caf50);
    font-size: 2.5rem;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-icon-item p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Bottom CTA Banner */
.loc-bottom-cta {
    background: #f0fdf4;
    border-top: 1px solid #dcfce7;
    border-bottom: 1px solid #dcfce7;
    padding: 30px 0;
}
.lbc-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.lbc-left, .lbc-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lbc-icon {
    font-size: 2.5rem;
    color: var(--drh-green, #4caf50);
}

/* GRID FIXES */
.loc-hero-flex { display: flex; gap: 40px; align-items: center; }
.loc-hero-left { flex: 1; }
.loc-hero-right { width: 450px; flex-shrink: 0; }
.loc-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.loc-reviews-flex { display: flex; gap: 40px; }
.loc-reviews-left { flex: 1.2; }
.loc-reviews-right { flex: 1; }
.loc-reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 991px) { .loc-hero-flex, .loc-reviews-flex { flex-direction: column; } .loc-hero-right { width: 100%; } .loc-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 767px) { .loc-services-grid, .loc-reviews-grid { grid-template-columns: 1fr; } }

/* IMPORTED WIDGET STYLES */

/* Request Recovery Hero */
.rr-hero {
    position: relative;
    background: #000;
    min-height: 600px;
    padding: 60px 0;
    overflow: hidden;
}
.rr-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}
.rr-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}
.rr-hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.rr-hero-left .rr-subtitle {
    color: var(--drh-green);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.rr-hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.rr-hero-left p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}
.rr-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.rr-feature {
    text-align: left;
}
.rr-feature .icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--drh-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--drh-green);
    font-size: 1.4rem;
    margin: 0 0 10px 0;
}
.rr-feature p {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}
.rr-location-box {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rr-location-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rr-location-icon {
    width: 40px;
    height: 40px;
    background: rgba(12,159,69,0.15);
    color: var(--drh-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.rr-location-text span {
    display: block;
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 2px;
}
.rr-location-text strong {
    color: #fff;
    font-size: 0.95rem;
    
}
.rr-change-loc {
    color: var(--drh-green);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
}

.rr-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.rr-form-step {
    color: var(--drh-green);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.rr-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}
.rr-form-desc {
    color: #666;
    font-size: 0.95rem;
    
    margin-bottom: 30px;
}
.rr-device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.rr-device-btn {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.rr-device-btn:hover {
    border-color: var(--drh-green);
    background: #f4fbf6;
}
.rr-device-btn.active {
    border-color: var(--drh-green);
    background: #f4fbf6;
}
.rr-device-btn.active::after {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: -8px;
    color: var(--drh-green);
    background: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
}
.rr-device-btn i {
    font-size: 1.8rem;
    color: #334155;
    margin-bottom: 10px;
    display: block;
}
.rr-device-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}
.rr-btn-wrap {
    text-align: right;
}

@media (max-width: 991px) {
    .rr-hero-container { grid-template-columns: 1fr; }
    .rr-device-grid { grid-template-columns: repeat(2, 1fr); }
    .rr-features-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

.loc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 0.95rem;
    
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.loc-btn-primary {
    background: #15803d;
    color: #ffffff;
    border: 1px solid #16a34a;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
}
.loc-btn-primary:hover {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    transform: translateY(-1px);
}
.loc-btn-outline {
    background: rgba(255,255,255,0.03);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.15);
}
.loc-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}
