/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #f8f9fa;
    background-color: #1a1a1a;
}

* {
    box-sizing: border-box;
}

.text-muted-custom {
    color: #b0b0b0 !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.bg-light {
    background-color: #222222 !important;
}

.text-primary {
    color: #00ff00 !important; /* Lime green */
}

.btn-primary {
    background-color: #00ff00;
    border-color: #00ff00;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #00e600;
    border-color: #00e600;
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 3rem;
}

/* Responsive Typography for Headings */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem; /* Desktop */
    }
    .section-title {
        font-size: 2.5rem; /* Desktop */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.8rem; /* Tablet */
    }
    .section-title {
        font-size: 2.2rem; /* Tablet */
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem; /* Mobile */
    }
    .section-title {
        font-size: 1.5rem; /* Mobile */
    }
    .navbar-brand .site-name {
        font-size: 1.25rem; /* Mobile */
    }
    .header-logo {
        height: 30px;
    }
}

/* Header */
.navbar-brand .header-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff00;
}

.navbar-nav .nav-link {
    color: #f8f9fa !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00ff00 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('assets/graphics/car-detailing-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* Offset for fixed header */
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero-section h1 {
    margin-top: 100px; /* Offset from top for arrow/content */
}

/* Services Section */
.service-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
    transition: transform 0.2s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
}

.service-icon {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

/* Why Choose Us Section */
.feature-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
    transition: transform 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
}

.feature-icon {
    font-size: 3rem;
    color: #00ff00;
}

/* How We Work Section */
.work-step {
    background-color: #2a2a2a;
    border: 1px solid #333;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff00;
    background-color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Packages Section */
.package-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
    transition: transform 0.2s ease-in-out;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
}

.package-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.package-card ul {
    padding-left: 0;
}

.package-card ul li i {
    color: #00ff00;
}

/* Specialists Section */
.specialist-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
}

.specialist-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #00ff00;
}

/* Gallery Section */
.gallery-item {
    height: 250px;
    border: 1px solid #333;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonial-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #00ff00;
}

.testimonial-car-img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: #f8f9fa !important;
}

.accordion-button:not(.collapsed) {
    color: #00ff00 !important;
    background-color: #333 !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    border-color: #00ff00;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.25);
}

.accordion-item {
    background-color: #2a2a2a;
    border: 1px solid #333;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: #2a2a2a;
}

/* Contact Form Section */
.contact-form-bg {
    background-color: #2a2a2a;
    border: 1px solid #333;
}

.form-label {
    color: #f8f9fa;
}

.form-control,
.form-select {
    background-color: #333;
    border: 1px solid #555;
    color: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
    background-color: #333;
    border-color: #00ff00;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.25);
    color: #f8f9fa;
}

.form-control::placeholder {
    color: #b0b0b0;
}

.invalid-feedback {
    color: #ff4d4d;
}

/* Sticky CTA Button */
.position-fixed {
    z-index: 1050;
}

/* Modal Overrides */
.modal-content {
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
}

.modal-header {
    border-bottom: 1px solid #333;
}

.modal-footer {
    border-top: 1px solid #333;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    border-color: #00ff00;
}

#cookieConsentModal .modal-header, #cookieConsentModal .modal-footer {
    border-color: #333;
}

/* Footer */
.footer-logo {
    height: 35px;
    width: auto;
}

.footer .site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff00;
}

.email-break {
    word-break: break-all;
}

/* Utility for preventing button text wrapping issues */
.btn {
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

/* Mobile navigation specific styles */
@media (max-width: 1199.98px) { /* Adjust breakpoint as needed for burger menu */
    .navbar-collapse {
        background-color: #1a1a1a;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        border-top: 1px solid #333;
    }
    .navbar-nav {
        flex-direction: column;
    }
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        display: block;
    }
}
/* Main container for policy content, providing top and side padding */
.policyOrbitalShell {
    padding-top: 2em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 2em; /* Added for a balanced look, but can be adjusted if only top/sides are strictly needed */
}

/* Paragraph styles */
.policyOrbitalShell p {
    font-size: 1em; /* Base font size for paragraphs */
    line-height: 1.6; /* Improved readability for text blocks */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Heading styles - scaled down for a less "loud" appearance */
.policyOrbitalShell h1 {
    font-size: 1.6em; /* Slightly larger than paragraph, but not excessively big */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Tighter line-height for headings */
    margin-top: 1.8em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
}

.policyOrbitalShell h2 {
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
}

.policyOrbitalShell h3 {
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

.policyOrbitalShell h4 {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

.policyOrbitalShell h5 {
    font-size: 1.05em; /* Just slightly larger than paragraph */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.4em;
}

/* Unordered list styles */
.policyOrbitalShell ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indentation for bullet points */
}

/* List item styles */
.policyOrbitalShell li {
    font-size: 1em; /* Inherit or explicitly set for consistency */
    line-height: 1.6; /* Match paragraph line-height for readability */
    margin-bottom: 0.5em; /* Space between list items */
}


.accordion-button::after{
    filter: invert(1);
    --webkit-filter: invert(1);
}

main{
    overflow: hidden !important;
}