:root {
    --primary-color: #007bff;
    --secondary-color: #0056b3;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #fff;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

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

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: bold;
    border: none;
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(to right, #f8f9fa 50%, #e9ecef 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image {
    flex: 1;
}

/* Features */
.features {
    padding: 4rem 0;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Packages */
.packages {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.packages h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-card .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.package-card .price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 0.9rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.chat-widget:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .header-contact {
        display: none; /* Hide on mobile for simplicity, or stack */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

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

/* ============================ */
/* Services Page Specific Styles */
/* ============================ */

/* Services Hero */
.services-hero {
    padding: 5rem 0;
    background: #f8f9fa; /* Light grey base */
    overflow: hidden;
}

.services-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.services-hero-content {
    flex: 1;
    max-width: 600px;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.highlight-blue {
    color: var(--primary-color);
}

.check-list {
    margin-bottom: 2rem;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.check-list li i {
    color: var(--primary-color); /* Green or Blue */
    margin-right: 12px;
    font-size: 1.2rem;
}

.services-hero-content .btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-tagline {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.services-hero-image img {
    max-width: 100%;
    height: auto;
    /* max-height: 400px; */
}

/* Zero-Stress Services Grid */
.zero-stress-services {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.zero-stress-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    cursor: default;
}

.service-icon-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #eef4ff; /* Light blue tint */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.service-icon-item:hover .icon-circle {
    background: var(--primary-color);
}

.icon-circle i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-icon-item:hover .icon-circle i {
    color: #fff;
}

.service-icon-item p {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Pay Later Offer Section */
.pay-later-offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    text-align: center;
}

.pay-later-offer h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.offer-cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 1px solid #e1e1e1;
}

.offer-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.starts-from {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.limited-offer-badge {
    background: #ff4757;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    align-items: center;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    background: #f4f4f4;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.time-unit .label {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
    text-transform: uppercase;
}

.countdown-timer .separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-top: -20px; /* Align with numbers */
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 15px 0;
}

.split-payment-info {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}

/* Responsive Adjustments for Services Page */
@media (max-width: 768px) {
    .services-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .check-list li {
        justify-content: center;
    }

    .services-icon-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}


/* ============================ */
/* Inspection Page Specific Styles */
/* ============================ */

/* Inspection Form Section */
.inspection-form-section {
    padding: 4rem 0;
    background: #fdfdfd;
}

.form-container {
    max-width: 600px; /* Variant 2/3 width */
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    /* optional: box-shadow: 0 4px 15px rgba(0,0,0,0.05); */
}

.form-container h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

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

/* Total Payable Box */
.total-payable-box {
    background: #eef4ff; /* Light blue background */
    border: 1px solid #dce9ff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.payable-info {
    display: flex;
    flex-direction: column;
}

.payable-info .label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.payable-info .amount {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
}

.payable-icon {
    font-size: 1.5rem;
    color: #555;
}

/* Button */
.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 15px;
    font-size: 1.2rem;
}

/* Simple Footer (Specific to this page or reused if desired) */
.simple-footer {
    background: #fff; /* White background as per image */
    color: #333;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.simple-footer .container .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-links ul li a {
    color: #555;
    font-weight: 500;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #333;
    font-size: 1.2rem;
}

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

/* Header Social Icons (if added to header) */
.header-social {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.header-social a {
    color: #333; /* Darker than footer usually */
    font-size: 1rem;
}

/* Responsive for Inspection Form */
@media (max-width: 768px) {
    .simple-footer .container .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
}
