:root {
    --bg-dark: #ffffff; 
    --bg-card: #f8fafc;
    --primary: #DC2626; /* Red Accent */
    --primary-hover: #B91C1C;
    --accent: #111827; 
    --text-main: #111827;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --success: #10b981;
    --gold: #f59e0b;
    --footer-bg: #111827;
    --footer-text: #f8fafc;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

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

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
}

/* Top Bar */
.top-bar {
    background-color: #111827; /* Dark top bar */
    color: white;
    font-size: 0.8rem;
    padding: 8px 0;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: center;
}

.license-text {
    color: #e0f2fe;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 34px; 
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
    transition: box-shadow 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-main);
    margin: 0;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
}
.phone-link:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    padding: 10px 20px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Main Header Section (Hero) */
.main-header-section {
    position: relative;
    padding: 140px 0 80px;
    background-color: var(--bg-card); /* Light grey hero fallback */
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    --hero-bg-image: url('assets/hero_security_1776927273527.png');
}

.main-header-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.header-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.review-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.main-heading-txt {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-red {
    color: var(--primary);
}

.sub-heading-txt {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-benefit-item {
    color: var(--text-main);
}

.hero-form-wrapper {
    width: 100%;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

.form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
    border-radius: 6px;
    margin-top: 16px;
    font-weight: 600;
}

.hidden {
    display: none;
}

/* Trust Logos Banner */
.trust-banner {
    background-color: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.custom-trust-badges {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bc-licence-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

/* Services Grid Section */
.services {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: #d1d5db;
}

.service-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.service-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: white;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
}

.service-card h3 {
    margin-top: -16px;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    font-size: 1rem;
}

/* Areas We Serve */
.areas-section {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.areas-wrapper {
    display: flex;
    gap: 64px;
    align-items: center;
    flex-wrap: wrap;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.cities-container {
    flex: 1;
    min-width: 300px;
}

.cities-grid {
    display: block;
}

.area-list {
    list-style: none;
    line-height: 2.2;
    font-size: 1.05rem;
    column-count: 2;
    column-gap: 20px;
}

.area-list li {
    break-inside: avoid;
    page-break-inside: avoid;
}

@media (min-width: 769px) {
    .cities-grid {
        flex-direction: row;
        gap: 48px;
    }
    .collapsible-list {
        display: block !important;
    }
    #toggleCitiesBtn {
        display: none !important;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .header-text-wrapper {
        align-items: center;
        text-align: center;
    }
    .action-button-wrapper {
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }
    .logo h1 {
        font-size: 1.15rem;
        white-space: nowrap;
    }
    .phone-link {
        font-size: 0.95rem;
        white-space: nowrap;
    }
    .main-header-section {
        padding: 120px 0 40px;
    }
    .main-heading-txt {
        font-size: 2.5rem;
    }
    .nav-contact .btn {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .areas-wrapper {
        flex-direction: column;
    }
}

/* Preview-specific styles for enhanced service details */
.service-details-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
    display: none; /* Hidden by default, shown when service is selected */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-details-section.active {
    display: block;
    animation: fadeIn 0.8s ease-out;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: #007bff;
}

.details-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.details-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.details-image-wrapper:hover img {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Premium Footer Styles */
.footer-redesign {
    background: #fdfdfd;
    color: #333;
    padding: 60px 0 0 0;
    border-top: 1px solid #eee;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-heading {
    color: #d32f2f; /* Premium Red */
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

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

.footer-content-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: #444;
}

.footer-content-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content-list a:hover {
    color: #d32f2f;
}

.footer-icon-large {
    font-size: 1.8rem;
    color: #444;
}

.footer-bottom-redesign {
    background: #222;
    color: #888;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .details-content h2 {
        font-size: 2rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
    .footer-content-list li {
        font-size: 0.9rem;
    }
    .footer-heading {
        font-size: 1.2rem;
    }
}

/* Google Reviews Carousel Styles */
.reviews-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-bubble {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: left;
}

/* The Speech Bubble Tail */
.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transform: rotate(45deg);
}

.review-quote-icon {
    font-size: 4rem;
    color: #eee;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.google-logo-static {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-left: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eee;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    background: #eee;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #888;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ddd;
    color: #333;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #888;
    border-color: #888;
}

/* Areas We Serve Section */
.areas-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.area-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.area-list li {
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.pin-icon {
    color: #d32f2f;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .areas-wrapper {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        grid-template-columns: 1fr 1fr;
        gap: 15px 10px;
    }

    .area-list li {
        font-size: 0.9rem;
    }
}
