/* CSS Variables for Design System */
:root {
    --primary-color: #1a237e;
    /* Royal Blue */
    --secondary-color: #ffffff;
    /* Light Grey */
    --accent-color: #d32f2f;
    /* Deep Red */
    --gold-color: #ffc107;
    /* Premium Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    /* Updated to Montserrat */
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

/* Fonts will be loaded via <link> in HTML for better performance */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-color);
    margin: 10px auto 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.bg-light {
    background-color: var(--secondary-color);
}

.bg-dark {
    background-color: #222;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #0d6023;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 96, 35, 0.4);
}

.btn-large {
    background-color: var(--gold-color);
    color: #000;
    font-size: 1rem;
    padding: 15px 40px;
}

.btn-large:hover {
    background-color: #ffca28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: var(--text-light);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
}

.btn-block {
    width: 100%;
}

/* Services Slider Animation */
.services-slider {
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
    padding: 10px 0;
}

.services-track {
    display: flex;
    width: max-content;
    animation: slide 30s linear infinite;
}

.service-item {
    color: var(--gold-color);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0 30px;
    display: inline-block;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.services-slider:hover .services-track {
    animation-play-state: paused;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px auto;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('Hero Image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--gold-color);
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.about-list i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--gold-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-content {
    padding: 25px;
    text-align: center;
    background: #fff;
    position: relative;
}

.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 50px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.review-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.carousel-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-controls button {
    background: transparent;
    border: 2px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.carousel-controls button:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Footer */
footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 30px 0;
    border-top: 3px solid var(--gold-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .service-item {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-btns .btn,
    .hero-btns .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .contact-container,
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Fix for Get Quote button in navbar */
.nav-link.btn-primary {
    color: var(--text-light) !important;
    font-weight: 700;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Lightbox */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* Contact Form Wrapper for Iframe */
.contact-form-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.contact-form-wrapper iframe {
    border-radius: 10px;
    display: block;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Enhanced Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--gold-color);
    padding-left: 5px;
    transition: var(--transition);
}

.map-container iframe {
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        margin-bottom: 30px;
    }
}

/* Gallery Category Titles */
.gallery-category-title {
    color: #d4a017;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    grid-column: 1 / -1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d47a1 100%);
    padding: 120px 0 80px;
    position: relative;
    color: white;
    text-align: center;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.service-lead {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.service-location {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gold-color);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 0;
}

.service-main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-main-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.styled-list {
    list-style: none;
    margin: 20px 0;
}

.styled-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.styled-list i {
    color: var(--gold-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.location-list,
.why-list {
    list-style: none;
}

.location-list li,
.why-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-list i,
.why-list i {
    color: var(--gold-color);
    font-size: 0.9rem;
}

.cta-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    text-align: center;
}

.cta-card h3 {
    color: var(--primary-color);
}

.cta-card .btn {
    margin-top: 10px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Make outline buttons visible on blue backgrounds */
.bg-primary .btn-outline,
.cta-section .btn-outline {
    background: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
}

.bg-primary .btn-outline:hover,
.cta-section .btn-outline:hover {
    background: var(--gold-color);
    color: #000;
    border-color: var(--gold-color);
}

/* Responsive Service Pages */
@media (max-width: 968px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }


    .service-hero h1 {
        font-size: 2rem;
    }

    .features-highlight {
        grid-template-columns: 1fr;
    }
}

/* Global Footer */
.main-footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 3px solid var(--gold-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: "/";
    padding: 0 10px;
    color: #ccc;
}

.breadcrumb li a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb li a:hover {
    color: var(--gold-color);
}

.breadcrumb li:last-child {
    color: #666;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.faq-item h3::before {
    content: "Q:";
    margin-right: 10px;
    color: var(--gold-color);
    font-weight: 800;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Service Directory Links */
.footer-service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 0;
    display: inline-block;
}

.footer-service-link:hover {
    color: var(--gold-color);
    transform: translateX(5px);
}

.footer-service-link i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: var(--gold-color);
}

.service-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.service-lead {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.service-location {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gold-color);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 0;
}

.service-main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-main-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.styled-list {
    list-style: none;
    margin: 20px 0;
}

.styled-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.styled-list i {
    color: var(--gold-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.location-list,
.why-list {
    list-style: none;
}

.location-list li,
.why-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-list i,
.why-list i {
    color: var(--gold-color);
    font-size: 0.9rem;
}

.cta-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    text-align: center;
}

.cta-card h3 {
    color: var(--primary-color);
}

.cta-card .btn {
    margin-top: 10px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Service Pages */
@media (max-width: 968px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .features-highlight {
        grid-template-columns: 1fr;
    }
}

/* ===== ENHANCED MOBILE OPTIMIZATIONS ===== */

@media (max-width: 768px) {

    /* Navbar */
    body {
        padding-top: 70px;
        /* Push content down to account for fixed navbar */
    }

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .navbar {
        padding: 0.5rem 0;
        position: fixed;
        /* Lock the navbar to the top */
        top: 0;
        left: 0;
        width: 100%;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .service-item {
        font-size: 1.4rem;
        padding: 0 15px;
    }

    /* General Padding/Typography */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* About Section */
    .about-wrapper {
        display: flex;
        flex-direction: column;
    }

    .about-image {
        order: 2;
        margin-top: 20px;
    }

    .about-text {
        order: 1;
    }

    /* Contact Section */
    .contact-form {
        padding: 20px;
    }

    .contact-form-wrapper iframe {
        height: 600px;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
    }

    /* Gallery Filters */
    .gallery-filters {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    /* Stats */
    .stat-item h2 {
        font-size: 2.2rem;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    /* Service Page Hero */
    .service-hero {
        padding: 70px 0 50px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

    html,
    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    /* Navbar */
    .logo-text {
        font-size: 0.95rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        height: auto;
        min-height: 85vh;
        padding: 100px 15px 60px;
        overflow: hidden;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .service-item {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .hero-btns .btn,
    .hero-btns .btn-large {
        width: 100%;
        max-width: 280px;
        margin: 0;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Trust Strip */
    .trust-item {
        font-size: 0.9rem;
    }

    /* Section Title */
    .section-title {
        font-size: 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    /* Service Hero */
    .service-hero {
        padding: 50px 0 30px;
    }

    .service-hero h1 {
        font-size: 1.6rem;
    }

    .service-lead {
        font-size: 1rem;
    }

    .service-location {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-col p {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* General */
    .lead {
        font-size: 1rem;
    }

    .gallery-filters {
        margin-bottom: 20px;
    }
}