:root {
    --primary-accent: #33a9f4;
    /* Bright Blue */
    --bg-dark: #03132e;
    /* Deep Navy Blue */
    --bg-footer: #2b96e6;
    /* Medium Blue Footer */
    --bg-light: #F4F7FA;
    /* Soft Light Blue/Grey */
    --text-main: #1D2D44;
    /* Dark Navy Text */
    --text-muted: #546E7A;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--bg-dark);
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-accent);
    border: none;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #0077c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 169, 244, 0.4);
}

.btn-secondary {
    background-color: var(--bg-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Logo Crossfade */
.logo-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
}

.logo-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    height: 55px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.logo-dark {
    filter: brightness(0.9) contrast(1.3);
    opacity: 1;
}

.logo-light {
    opacity: 0;
}

header.scrolled .logo-dark {
    opacity: 0;
}

header.scrolled .logo-light {
    opacity: 1;
}

/* Header Text Colors - Transparent State */
header .header-logo-text {
    color: white;
}

header nav a {
    color: white;
}

/* Header Text Colors - Scrolled State */
header.scrolled .header-logo-text {
    color: var(--bg-dark);
}

header.scrolled nav a {
    color: var(--text-main);
}

header.scrolled nav a:hover {
    color: var(--primary-accent);
}

header.scrolled nav .btn-secondary {
    color: white;
}


nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Styles */
.hero {
    padding: 120px 0;
    background-color: var(--bg-dark);
    color: white;
    /* Static background removed for canvas animation */
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2069&auto=format&fit=crop"); */
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 8%;
    /* Move text left but not to edge */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Semi-transparent overlay to ensure text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.badge-emergency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(51, 169, 244, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.hero h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 24px;
    line-height: 1;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary-accent);
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
}

.hero-trust-bar {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.hero-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: white;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Services Styles */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: var(--primary-accent);
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background-color: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--primary-accent);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.service-card-header {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--bg-dark);
}

.service-card h3 span {
    color: var(--primary-accent);
    display: block;
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: white;
}

.trust-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.trust-image-container {
    flex: 1;
    position: relative;
}

.trust-image-container img {
    width: 100%;
    border-radius: 20px;
    z-index: 2;
    position: relative;
}

.trust-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    opacity: 0.1;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.trust-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.trust-list {
    margin-bottom: 40px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
    color: white;
}

/* Testimonials Styles */
.testimonials {
    text-align: center;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.google-badge {
    background-color: white;
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.google-badge-divider {
    width: 1px;
    height: 24px;
    background-color: #ddd;
}

.google-badge-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-badge-score {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-dark);
}

.google-badge-stars {
    font-size: 16px;
    line-height: 1;
}

.google-badge-count {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.star-gold {
    color: #FBBC04 !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: white;
    padding: 28px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--bg-dark);
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    color: #FBBC04;
    display: flex;
    gap: 2px;
    font-size: 14px;
}

.google-icon-sm {
    opacity: 0.4;
    flex-shrink: 0;
}

.review-text {
    color: #444;
    font-size: 14.5px;
    line-height: 1.65;
    flex: 1;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.reviews-cta:hover {
    gap: 14px;
}

@media (max-width: 992px) {
    .trust-flex {
        flex-direction: column;
        gap: 50px;
    }
}

/* Process Styles */
.process {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: white;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.process-item {
    flex: 1;
    text-align: center;
}

.process-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(51, 169, 244, 0.1);
    line-height: 1;
    margin-bottom: -30px;
}

.process-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    color: white;
}

.process-item p {
    color: #ccc;
}

/* FAQ Styles */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
    background: none;
    border: none;
    text-align: left;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 0 10px 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer Styles */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.footer-logo .accent {
    color: var(--primary-accent);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 18px;
    letter-spacing: 0.3px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
    font-size: 15px;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 54px;
    }

    .process-grid {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-badge {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 16px;
        padding: 16px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Mega Menu Styles */
.nav-item.dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-trigger::after {
    content: '▾';
    font-size: 12px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.mega-menu-grid::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.mega-menu-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    text-align: left;
}

.mega-menu-item:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.mm-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mm-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--bg-dark);
}

.mm-content p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mm-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    transition: all 0.2s ease;
}

.mega-menu-item:hover .mm-arrow {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--bg-dark);
}

.mm-image {
    width: 120px;
    height: 100%;
    object-fit: cover;
    min-height: 100px;
}

.mega-menu-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.mega-menu-footer a {
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 15px;
}

.mega-menu-footer a:hover {
    color: var(--primary-accent);
}

@media (max-width: 992px) {
    .mega-menu {
        width: 90vw;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background-color: rgba(51, 169, 244, 0.1);
    color: var(--primary-accent);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--bg-dark);
    line-height: 1.3;
}

.blog-card-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.blog-card-link {
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.blog-filter-btn {
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid #eee;
    background-color: white;
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    border-color: var(--primary-accent);
    background-color: var(--primary-accent);
    color: var(--bg-dark);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Article Page */
.blog-article-header {
    padding: 100px 0 60px;
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
}

.blog-article-header h1 {
    color: white;
    font-size: 42px;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.blog-article-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-article-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--bg-dark);
}

.blog-article-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--bg-dark);
}

.blog-article-content p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-article-content li {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.blog-article-content blockquote {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-accent);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-main);
}

.blog-article-image {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* Guarantee Page Styles */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.guarantee-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-accent);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.guarantee-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(51, 169, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.guarantee-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.guarantee-full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(51, 169, 244, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 18px;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.service-areas-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-area-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.service-area-col ul {
    list-style: none;
}

.service-area-col li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 15px;
}

.service-area-col li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.service-area-col li a:hover {
    color: var(--primary-accent);
}

@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Brand Logos Section */
.brands-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.brands-grid img {
    height: 40px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== AREA PAGES STYLES ===== */

.area-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a1628 100%);
    color: var(--white);
}

.area-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.area-hero h1 span {
    color: var(--primary-accent);
}

.area-hero p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.area-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.area-hero-buttons .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--white);
}

.area-trust-signals {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.area-trust-signals h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.area-trust-signals h2 span {
    color: var(--primary-accent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trust-item span {
    font-weight: 500;
}

.area-services {
    padding: 80px 0;
}

.area-services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.area-services h2 span {
    color: var(--primary-accent);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-list ul {
    list-style: none;
}

.services-list ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    padding-left: 25px;
    position: relative;
}

.services-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-accent);
    border-radius: 50%;
}

.area-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.area-local {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.area-local h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.area-local h2 span {
    color: var(--primary-accent);
}

.area-local h3 {
    font-size: 24px;
    margin: 40px 0 15px;
}

.area-local p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 15px;
    max-width: 800px;
}

.area-faq {
    padding: 80px 0;
}

.area-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.area-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a1628 100%);
    text-align: center;
    color: var(--white);
}

.area-cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.area-cta h2 span {
    color: var(--primary-accent);
}

.area-cta > .container > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.guarantee-note {
    margin-top: 30px;
    font-size: 15px;
    opacity: 0.8;
}

.area-commitment {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.area-commitment h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.area-commitment p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 15px;
    max-width: 800px;
}

.area-suburbs {
    padding: 80px 0;
}

.area-suburbs h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.suburb-group h4 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-accent);
}

.suburb-group ul {
    list-style: none;
}

.suburb-group ul li {
    padding: 6px 0;
}

.suburb-group ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.suburb-group ul li a:hover {
    color: var(--primary-accent);
}

/* Area pages responsive */
@media (max-width: 768px) {
    .area-hero {
        padding: 120px 0 60px;
    }

    .area-hero h1 {
        font-size: 32px;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .suburbs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .area-cta h2 {
        font-size: 28px;
    }
}