:root {
    --primary: #FFA500;       /* Gold/Orange */
    --secondary: #000000;     /* Black */
    --light: #1A1A1A;         /* Dark Grey Section BG */
    --dark: #0D0D0D;          /* Near-Black Text & BG */
}

body {
    background-color: var(--secondary);
    color: #f0f0f0;
}

/*** Typography Fixes ***/
h1, h2, h3, h4, h5, h6,
p, span, li, label {
    color: #fff;
}

.text-dark {
    color: #fff !important;
}

.text-muted {
    color: #ccc !important;
}

/*** Back to Top ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--primary);
    color: #000;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: .5s;
    border-radius: 5px;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.btn.btn-primary:hover {
    background: var(--light);
    border-color: var(--light);
    color: #fff;
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #000;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }

/*** Navbar ***/
.navbar {
    background-color: var(--secondary) !important;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #f0f0f0;
    font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.dropdown-menu {
    background-color: var(--light);
    color: #fff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar-toggler-icon {
    filter: invert(1) brightness(100%); /* turns black icon white */
}

/* Mobile navbar buttons inside collapse */
.navbar-collapse .btn.d-lg-none {
    width: 100%;          /* full width inside menu */
    margin: 5px 0;        /* spacing between buttons */
    padding: 8px 0;       /* smaller vertical padding */
    font-size: 0.9rem;    /* slightly smaller text */
}


@media (max-width: 991.98px) {
    .navbar .navbar-brand img { max-height: 45px; }
    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

/*** Cards & Forms ***/
.card,
input,
textarea,
.form-control {
    background-color: var(--light);
    color: #fff;
    border-color: var(--primary);
}

/*** Icons & Utility Fixes ***/
.text-primary,
.bg-primary {
    color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

/*** Service Boxes ***/
.service-item {
    background: var(--light);
    color: #fff;
    box-shadow: 0 0 45px rgba(255, 165, 0, .07);
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #000;
    background: var(--primary);
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: #d0d0d0;
    padding-top: 1rem;
    padding-bottom: 1rem; /* Reduced padding */
}

.footer .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}



.footer .btn.btn-link {
    color: #d0d0d0;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

.footer .btn.btn-square {
    color: #d0d0d0;
    border: 1px solid #d0d0d0;
}

.footer .btn.btn-square:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: #fff;
}

/* Adjust spacing between footer elements */
.footer .row {
    margin-bottom: 1rem;
}

/* Reduce font size for contact info in footer */
.footer .contact-info p {
    font-size: 0.9rem; /* Smaller font for contact info */
    margin-bottom: 0.5rem;
}

/* Social media icons */
.footer .btn-social {
    margin-right: 8px;  /* Tighter social icons */
}

/* Copyright text in footer */
footer .container-fluid.border-top {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

footer .container d-flex small {
    font-size: 0.8rem;
}



/*** Contact Info Boxes Fix ***/
.appointment .bg-white,
.appointment .shadow-sm {
    background-color: var(--light) !important;
    color: #fff !important;
    border: none;
}

.appointment .bg-white i,
.appointment .shadow-sm i {
    color: var(--primary) !important;
}

.appointment .bg-white h6,
.appointment .bg-white p,
.appointment .shadow-sm h6,
.appointment .shadow-sm p {
    color: #fff !important;
}

/*** Link Color Fixes for Phone/Email ***/
a,
a[href^="mailto:"],
a[href^="tel:"],
a.text-primary {
    color: var(--primary);
}

a:hover {
    color: #fff;
}

/*** Feature Boxes Fix ***/
.bg-light {
    background-color: var(--light) !important;
}

.bg-white {
    background-color: var(--dark) !important;
    color: #fff;
}

/*** Remove text highlight background color (e.g. leftover Bootstrap blue) ***/
.bg-primary,
.text-primary.bg-primary,
.fs-5.text-primary {
    background-color: transparent !important;
}

i.text-primary {
    background-color: transparent !important;
    color: var(--primary) !important;
}

[class*="text-primary"] {
    color: var(--primary) !important;
    background-color: transparent !important;
}

/*** Service Icon Pill Style ***/
.service-icon {
    background-color: var(--primary) !important;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
}

.service-icon i {
    color: #000 !important;
}

/* Experience Badge */
.experience-badge-wrapper {
    background-color: transparent !important; /* no outer box */
    padding: 0;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.experience-badge {
    background-color: var(--primary); /* solid orange fill */
    color: #000;
    border-radius: 1rem; /* optional, can adjust */
    width: 100%; /* badge fills the entire wrapper */
    height: 100%; /* match wrapper's height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.experience-badge h1,
.experience-badge h2,
.experience-badge h5 {
    margin: 0;
}

/* Override footer top border to be orange instead of blue */
.footer .container-fluid.border-top {
    border-top: 1px solid var(--primary) !important;
}

.google-form-container {
    height: 700px; 
    width: 100%;}

.google-form-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
