/* ===================================
   PRECISION CARE - MODERN INDUSTRIAL DESIGN
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Industrial & Professional */
    --primary-color: #1a1a1a;
    --secondary-color: #ff6600;
    --accent-color: #ffa500;
    --dark-bg: #0d0d0d;
    --light-bg: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray-medium: #999;
    --overlay: rgba(0, 0, 0, 0.7);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Effects */
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch optimization for mobile */
* {
    -webkit-tap-highlight-color: rgba(255, 102, 0, 0.1);
}

button, a, .nav-link, .dropdown-toggle {
    -webkit-tap-highlight-color: rgba(255, 102, 0, 0.2);
    touch-action: manipulation;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background: #e65500;
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 30px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/parking-lot-aerial.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 102, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: #e65500;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   TRUST BADGES
   =================================== */

.trust-badges {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.badge-item {
    text-align: center;
    padding: 20px;
}

.badge-item i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.badge-item h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.badge-item p {
    color: var(--text-light);
    font-size: 16px;
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: var(--section-padding);
}

.section-label {
    display: inline-block;
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.badge-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature i {
    color: var(--secondary-color);
    font-size: 24px;
    margin-top: 5px;
}

.about-feature h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    padding: 25px 25px 10px;
    color: var(--primary-color);
}

.service-card > p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0 25px 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 25px 25px;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-choose {
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-text h2 {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-text > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.why-content h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.why-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-images {
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px;
}

.stack-img-1,
.stack-img-2 {
    position: absolute;
    width: 70%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.stack-img-1 {
    top: 0;
    right: 0;
    z-index: 2;
}

.stack-img-2 {
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: var(--dark-bg);
    color: var(--white);
}

.contact-wrapper-centered {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-wrapper-centered h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-wrapper-centered .lead {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-size: 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method-card {
    background: var(--white);
    color: var(--primary-color);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1);
    background: var(--accent-color);
}

.contact-method-icon i {
    font-size: 36px;
    color: var(--white);
}

.contact-method-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-method-value {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-method-action {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-method-card:hover .contact-method-action {
    color: var(--secondary-color);
    gap: 12px;
}

.contact-details-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-text h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

.google-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.google-rating i {
    color: #ffc107;
    font-size: 20px;
    display: inline-block;
}

.google-rating p {
    margin: 0;
    margin-left: 10px;
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
    white-space: nowrap;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 5px 0;
}

.footer-credit {
    margin-top: 10px !important;
}

.footer-credit a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--accent-color);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: #e65500;
    transform: translateY(-5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-methods,
    .contact-details-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-stack {
        height: 500px;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 10px;
        border-radius: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .nav-link.cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-text h2,
    .why-choose-text h2,
    .contact-wrapper-centered h2 {
        font-size: 28px;
    }
    
    .contact-methods,
    .contact-details-bottom {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Service Pages Mobile */
    .service-layout {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        padding: 30px 20px;
    }
    
    .contact-method-value {
        font-size: 14px;
        word-break: break-word;
        white-space: normal;
    }
    
    /* Service Pages Mobile */
    .service-hero h1 {
        font-size: 28px;
    }
    
    .service-hero-subtitle {
        font-size: 14px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .sidebar-card h3 {
        font-size: 18px;
    }
}

/* ===================================
   SERVICE PAGES
   =================================== */

.service-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(255, 102, 0, 0.15)),
                url('../images/parking-lot-aerial.jpg') center/cover no-repeat;
    color: var(--white);
}

.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: 2;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.service-hero h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.service-content {
    padding: 80px 0;
    background: var(--white);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.service-main {
    max-width: 800px;
}

.service-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
}

.service-main h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-main h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.service-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-main .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Service page list styling */
.service-main ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.service-main ul li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.7;
    font-size: 16px;
}

.service-main ul li i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-main ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-main ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 20px 0 30px;
}

.service-main ol li {
    counter-increment: item;
    padding: 15px 0;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
    padding-left: 40px;
}

.service-main ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 15px;
    background: var(--secondary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-main ol li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service areas grid */
.service-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0 30px;
}

.service-areas ul {
    margin: 0;
}

.service-areas ul li i {
    color: var(--secondary-color);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
    box-shadow: var(--box-shadow);
}

.cta-box h3 {
    color: var(--white);
    font-size: 28px;
    margin: 0 0 15px;
}

.cta-box p {
    color: var(--white);
    font-size: 18px;
    margin: 0 0 25px;
}

.cta-box .btn {
    background: var(--white);
    color: var(--secondary-color);
}

.cta-box .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-list li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.service-list i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 40px;
}

.area-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 60px 0 0;
}

.cta-box h3 {
    color: var(--white);
    margin: 0 0 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sidebar-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-card .btn {
    width: 100%;
    margin-bottom: 10px;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.sidebar-card.highlight h3,
.sidebar-card.highlight p {
    color: var(--white);
}

.sidebar-card.highlight a {
    color: var(--white);
}

.sidebar-card.emergency {
    background: #f44336;
    color: var(--white);
}

.sidebar-card.emergency h3,
.sidebar-card.emergency p {
    color: var(--white);
}

.sidebar-card.seasonal {
    background: #4caf50;
    color: var(--white);
}

.sidebar-card.seasonal h3,
.sidebar-card.seasonal p {
    color: var(--white);
}

/* Sidebar Lists */
.facts-list,
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.facts-list li:last-child {
    border-bottom: none;
}

.facts-list li i {
    color: var(--secondary-color);
    font-size: 18px;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border-radius: 5px;
    color: var(--text-dark) !important;
    transition: var(--transition);
    text-decoration: none;
}

.services-list a:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: translateX(5px);
}

.services-list a i {
    color: var(--secondary-color);
    font-size: 14px;
}

.services-list a:hover i {
    color: var(--white);
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 5px;
    transition: var(--transition);
    color: var(--text-dark);
    font-weight: 600;
}

.sidebar-contact-item:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.sidebar-contact-item i {
    font-size: 18px;
    color: var(--secondary-color);
}

.sidebar-contact-item:hover i {
    color: var(--white);
}

.sidebar-hours {
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
    text-align: center;
}

.sidebar-hours h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.sidebar-hours p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
}

.sidebar-services {
    list-style: none;
    padding: 0;
}

.sidebar-services li {
    margin-bottom: 10px;
}

.sidebar-services a {
    display: block;
    padding: 12px;
    background: var(--white);
    border-radius: 5px;
    color: var(--text-dark);
    transition: var(--transition);
    font-weight: 600;
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

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

.sidebar-cta h3 {
    color: var(--white);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Responsive Service Pages */
@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 140px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 32px;
    }
    
    .service-hero-subtitle {
        font-size: 16px;
    }
    
    .service-content {
        padding: 40px 0;
    }
    
    .service-featured-image {
        height: 250px;
    }
    
    .service-main h2 {
        font-size: 28px;
    }
    
    .service-main h3 {
        font-size: 22px;
    }
}

