/*
Theme Name: Universal AD Theme
Theme URI: kzaafutechnologies.com
Author: Kzaafu Technologies
Description: Universal theme for multiple websites with customizable logo, colors, text, and alt texts.
Version: 1.0.0
License: GPL v2 or later
Text Domain: kzaafutechnologies.com
*/
/* CSS will be added later */

/* Glass effect header */
.glass-header {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8); /* white glass */
}

/* Sales line styling */
.sales-line span {
    margin-left: 4px;
    font-weight: 500;
    color: #000; /* black text */
    text-decoration: none;
    font-size: 20px;
}

/* Savings special */
.sales-line .savings {
    color: grey;   /* grey instead of black */
    font-style: italic;
}
header {
    border-bottom: 4px solid #000; /* black line */
}

/* ----------------- Hero Section ----------------- */
.hero-section {
    background-color: #fff; /* white background */
    padding-top: 4rem;      /* adjust vertical spacing */
    padding-bottom: 4rem;
    border-bottom: 4px solid #000; /* black line */
}

/* Hero Heading */
.hero-section h1 {
    color: #000; /* black heading */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Hero Paragraph / Lead */
.hero-section p.lead {
    color: #6c757d; /* grey text */
    font-family: 'Roboto', sans-serif;
}

/* Hero List */
.hero-section ul li {
    color: #6c757d; /* grey text */
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0.5rem;
}

.hero-section ul li i {
    color: #000; /* black check icons */
}

/* Hero Buttons */
.hero-section .btn-dark {
    background-color: #000;
    color: #fff;
    border: none;
}

.hero-section .btn-dark:hover {
    background-color: #333;
}

.hero-section .btn-outline-dark {
    color: #000;
    border: 2px solid #000;
}

.hero-section .btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Hero Image */
.hero-section .hero-img {
    filter: grayscale(100%) brightness(90%);
    max-height: 400px;
    width: auto;
}

/* Small text below buttons */
.hero-section p.small {
    color: #6c757d;
    font-family: 'Roboto', sans-serif;
}

/* ----------------- Services / Cards Section ----------------- */
.services-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 4px solid #000; /* black line */
}

/* Section heading */
.services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 2rem; /* big heading */
    margin-bottom: 0.5rem;
}

.services-section p.fs-5 {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    font-size: 1.1rem; /* slightly bigger subheading */
}

/* Card styling */
.services-section .card {
    border-radius: 0.75rem;
    border: 2px solid #000; /* black border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

/* Card hover effect */
.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Card title */
.services-section .card-title {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 1.25rem;
}

/* Card text / description */
.services-section .card-text {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    font-size: 0.95rem;
}

/* List items inside cards */
.services-section ul li {
    color: #6c757d;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0.5rem;
}

/* Font Awesome ticks */
.services-section ul li i {
    color: #000; /* black check */
}

/* Card button */
.services-section .btn-dark {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-section .btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Phone number above button */
.services-section .card p.small {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .services-section .card {
        text-align: center;
    }

    .services-section ul {
        text-align: left;
        padding-left: 0;
    }
}

/* ----------------- Why Choose Us Section ----------------- */
.why-choose-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 4px solid #000; /* black line */
}

/* Section heading */
.why-choose-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

/* Subheading */
.why-choose-section p.lead {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Feature boxes */
.feature-box {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f8f8; /* slightly dusty light grey */
    border-left: 4px solid #000; /* black border accent */
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Feature title */
.feature-box h5 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 1.15rem;
}

/* Feature description */
.feature-box p {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Feature icons */
.feature-box i {
    color: #000; /* black icons */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .why-choose-section h2 {
        font-size: 2rem;
    }

    .why-choose-section p.lead {
        font-size: 1rem;
    }

    .feature-box {
        text-align: center;
        border-left: none;
        border-top: 4px solid #000; /* change accent to top for mobile */
    }
}
.coverage-section {
    border-bottom: 4px solid #000; /* black line */
}
/* Coverage boxes with left black border */
.coverage-box {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f8f8; /* slightly dusty background */
    position: relative;
    padding-left: 1.5rem; /* space for left border */
}

.coverage-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px; /* thickness of left border */
    height: 100%;
    background-color: #000; /* black left border */
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

/* Hover effect */
.coverage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Coverage title */
.coverage-box h5 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 1.15rem;
}

/* Coverage description */
.coverage-box p {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Icons */
.coverage-box i {
    color: #000;
}

.compare-section{
    border-bottom: 4px solid #000; /* black line */
}
/* Heading smaller and stylish */
.compare-heading {
    font-size: 2rem; /* smaller than display-5 */
    letter-spacing: 0.5px;
    color: #000;
}

/* Subheading smaller */
.compare-section p.fs-6 {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Service boxes with left black border only */
.service-box-left-border {
    position: relative;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem; /* extra left padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box-left-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px; /* thickness of left border */
    height: 100%;
    background-color: #000; /* black border */
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

.service-box-left-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Icons inside boxes */
.service-box-left-border i {
    color: #000;
}

/* Titles in boxes */
.service-box-left-border h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    margin-bottom: 0.5rem;
}

/* Small text */
.service-box-left-border p {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 767px) {
    .service-box-left-border {
        text-align: center;
    }
}
/* Auto Highlight Section */
.auto-highlight-section {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* ensures section has height */
    display: flex;
    align-items: center; /* vertically center content */
    border-bottom: 4px solid #000; /* black line */
}

.auto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('auto-bg.jpg'); /* replace with your image */
    background-size: cover;      /* ensures full coverage */
    background-position: center; /* center the image */
    background-repeat: no-repeat;
    filter: grayscale(100%) brightness(0.6); /* black & white + dark overlay */
    z-index: 1;
}

.auto-highlight-section .container {
    position: relative;
    z-index: 2; /* place content above background */
}

.auto-card {
    max-width: 100%;
    color: #fff;
    border-left: 4px solid #000; /* black left border */
    background-color: rgba(0,0,0,0.6); /* semi-transparent dark background */
    padding: 2rem;
    border-radius: 0.75rem;
}

.auto-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.auto-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.auto-card a.btn {
    color: #000;
    background-color: #fff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .auto-card {
        margin-top: 2rem;
        border-left: 0; /* remove left border on smaller screens */
        text-align: center;
    }
}
/* Homeowners Highlight Section */
.homeowners-highlight-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #000; /* black line */
}

.homeowners-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('homeowners-bg.jpg'); /* replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) brightness(0.6); /* black & white + dark overlay */
    z-index: 1;
}

.homeowners-highlight-section .container {
    position: relative;
    z-index: 2;
}

.homeowners-card {
    max-width: 100%;
    color: #fff;
    border-left: 4px solid #000; /* left border for right-side card */
    background-color: rgba(0,0,0,0.6);
    padding: 2rem;
    border-radius: 0.75rem;
}

.homeowners-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.homeowners-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.homeowners-card a.btn {
    color: #000;
    background-color: #fff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .homeowners-card {
        margin-top: 2rem;
        border-left: 0; /* remove border on smaller screens */
        text-align: center;
    }
}
/* Motorcycle Highlight Section */
.motorcycle-highlight-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #000; /* black line */
}

.motorcycle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('motorcycle-bg.jpg'); /* replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) brightness(0.6); /* black & white + dark overlay */
    z-index: 1;
}

.motorcycle-highlight-section .container {
    position: relative;
    z-index: 2;
}

.motorcycle-card {
    max-width: 100%;
    color: #fff;
    border-left: 4px solid #000; /* black left border */
    background-color: rgba(0,0,0,0.6);
    padding: 2rem;
    border-radius: 0.75rem;
}

.motorcycle-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.motorcycle-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.motorcycle-card a.btn {
    color: #000;
    background-color: #fff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .motorcycle-card {
        margin-top: 2rem;
        border-left: 0; /* remove border on smaller screens */
        text-align: center;
    }
}
/* Renters Highlight Section */
.renters-highlight-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #000; /* black line */
}

.renters-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('renters-bg.jpg'); /* replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) brightness(0.6); /* black & white + dark overlay */
    z-index: 1;
}

.renters-highlight-section .container {
    position: relative;
    z-index: 2;
}

.renters-card {
    max-width: 100%;
    color: #fff;
    border-left: 4px solid #000; /* black left border */
    background-color: rgba(0,0,0,0.6);
    padding: 2rem;
    border-radius: 0.75rem;
}

.renters-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.renters-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.renters-card a.btn {
    color: #000;
    background-color: #fff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .renters-card {
        margin-top: 2rem;
        border-left: 0; /* remove border on smaller screens */
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #fff; /* clean white */
    border-bottom: 4px solid #000; /* black line */
}

.faq-heading {
    font-size: 2rem;
    color: #000;
    margin-bottom: 3rem;
}

.accordion-button {
    background-color: #f8f9fa; /* light gray for accordion header */
    color: #000;
    font-weight: 600;
    border-radius: 0.25rem;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef; /* slightly darker when expanded */
    color: #000;
}

.accordion-body {
    font-size: 0.95rem;
    color: #6c757d;
}

.accordion-item {
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-item::before {
    display: none; /* remove default bootstrap border on top */
}

/* How It Works Section */
.how-it-works {
    background-color: #f8f8f8; /* slightly dusty background */
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 4px solid #000; /* black line */
}

.how-it-works h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #000;
}

/* Step boxes */
.step-box {
    position: relative;
    background-color: #fff;
    border-left: 4px solid #000; /* left black border */
    padding: 2rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-box h5 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-box p {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Icon circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.icon-circle i {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .step-box {
        text-align: center;
        border-left: 0; /* remove left border on mobile */
        padding-left: 1.5rem;
    }
}
.site-footer {
    background-color: #000; /* black background */
    color: #fff; /* white text */
    text-align: center; /* center all text */
}

.site-footer a {
    color: #fff; /* white links */
}

.site-footer a:hover {
    color: #ccc; /* lighter on hover */
}

.site-footer p {
    color: #fff; /* ensure all paragraph text is white */
}
