/**
 * MoveHomeFast - Main Stylesheet
 * Complete styling for all pages: index.php, about.php, contact.php, gallery.php, services.php, loading-unloading.php, wrap-and-move.php
 */

/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    --color-light-bg: #FAF3E1;
    --color-secondary-bg: #F5E7C6;
    --color-accent: #FF6D1F;
    --color-dark: #222222;
    --color-text: #333333;
    --font-primary: 'Poppins', sans-serif;
    --font-logo: 'KillerBoots', var(--font-primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-light-bg);
    padding-top: 76px;
}

/* ============================================
   Custom Font - KillerBoots
   ============================================ */
@font-face {
    font-family: 'KillerBoots';
    src: url('../font/killer-boots/KILLERBOOTS.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   Navbar Styles
   ============================================ */
.navbar {
    background-color: rgba(250, 243, 225, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(250, 243, 225, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-logo);
    font-size: 1.75rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    color: var(--color-dark);
    transform: scale(1.02);
}

.navbar-logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 50px;
    }
}

/* ============================================
   Hero Section (Home Page)
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-secondary-bg) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-accent-band {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-accent);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.lead-form-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.8s forwards;
}

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lead-form-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
    transition: transform 0.1s ease;
}

.lead-form-card h3 {
    color: var(--color-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lead-form-card form .row > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (max-width: 768px) {
    .lead-form-card {
        padding: 1.5rem;
    }
    
    .lead-form-card form .row > [class*="col-"] {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background-color: #e55a1a;
    border-color: #e55a1a;
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 109, 31, 0.4);
}

.btn-outline-primary {
    border-color: var(--color-accent);
    color: var(--color-accent);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.btn-outline-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 109, 31, 0.3);
}

/* ============================================
   Form Styles
   ============================================ */
.form-control,
.form-select {
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 31, 0.25);
    outline: none;
}

.form-label {
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text);
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ============================================
   Services Section (Home Page)
   ============================================ */
#services {
    background-color: var(--color-secondary-bg);
}

.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 243, 225, 0.9);
    backdrop-filter: blur(1px);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(2px);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-content {
    position: relative;
    z-index: 2;
    color: var(--color-dark);
    transition: color 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.service-card:hover .service-content {
    color: #ffffff;
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-card:hover .service-list li::before {
    color: #ffffff;
}

/* ============================================
   Gallery Section
   ============================================ */
#gallery {
    background-color: var(--color-light-bg);
}

.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    background-color: #ffffff;
    color: var(--color-dark);
    border: 2px solid var(--color-accent);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.gallery-filter-btn:hover,
.gallery-filter-btn:focus {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 109, 31, 0.3);
}

.gallery-filter-btn.active {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
    filter: grayscale(30%) saturate(80%);
}

.gallery-item:hover {
    filter: grayscale(0%) saturate(100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 2.5rem;
    color: #ffffff;
}

.gallery-item.hidden {
    display: none;
}

/* ============================================
   Testimonials Section
   ============================================ */
#testimonials {
    background-color: var(--color-secondary-bg);
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-dark);
}

/* ============================================
   Vision & Mission Sections
   ============================================ */
#vision,
#mission {
    background-color: var(--color-light-bg);
}

.vision-card,
.mission-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--color-accent), var(--color-secondary-bg)) 1;
}

.vision-card {
    border-image: linear-gradient(90deg, var(--color-accent), var(--color-secondary-bg)) 1;
}

.mission-card {
    border-image: linear-gradient(90deg, var(--color-secondary-bg), var(--color-accent)) 1;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vision-card-header,
.mission-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vision-icon,
.mission-icon {
    font-size: 2.5rem;
}

.vision-card-title,
.mission-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.vision-text,
.mission-text {
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.vision-list,
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-list li,
.mission-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
    line-height: 1.7;
}

.vision-list li::before,
.mission-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ============================================
   Contact Section
   ============================================ */
#contact {
    background-color: var(--color-secondary-bg);
}

.contact-form-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.contact-areas-paragraph {
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-dark);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e55a1a;
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 109, 31, 0.4);
}

/* ============================================
   Scroll Animations
   ============================================ */
section:not(#home).fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.about-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary-bg) 100%);
}

.about-hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 109, 31, 0.3);
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-60 {
    min-height: 60vh;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.about-hero-intro {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.about-text,
.section-subtitle {
    text-align: justify;
    line-height: 1.7;
    max-width: 100%;
}

.section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper,
.about-hero-image-wrapper,
.about-process-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 300px;
}

@media (min-width: 992px) {
    .about-image-wrapper,
    .about-hero-image-wrapper {
        height: 400px;
    }
    .about-process-image-wrapper {
        height: 280px;
    }
}

.about-story-section,
.about-expertise-section {
    background-color: var(--color-secondary-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-services-section,
.about-process-section,
.about-why-section,
.about-gallery-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-story-card {
    background-color: var(--color-light-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-story-card .about-text {
    margin-bottom: 1.25rem;
}

.about-story-card .about-text:last-child {
    margin-bottom: 0;
}

.about-service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.about-service-image-wrapper .about-image {
    border-radius: 0;
    height: 100%;
}

.about-service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.about-service-content h3 {
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-service-content p {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.9375rem;
    text-align: justify;
    flex-grow: 1;
    margin-bottom: 0;
}

.about-timeline {
    position: relative;
    padding-left: 3rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-secondary-bg) 100%);
}

.about-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(255, 109, 31, 0.3);
    z-index: 1;
}

.about-timeline-content {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-timeline-item:hover .about-timeline-content {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.about-timeline-content strong {
    color: var(--color-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.about-timeline-content p {
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.about-city-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-city-badge {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(255, 109, 31, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-city-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 109, 31, 0.3);
}

.about-why-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-why-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-why-list li {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 1rem;
}

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

.about-why-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.about-why-list li div {
    flex-grow: 1;
}

.about-why-list li strong {
    color: var(--color-dark);
    display: block;
    margin-bottom: 0.375rem;
    font-size: 1.0625rem;
}

.about-why-list li p {
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--color-secondary-bg) 0%, var(--color-light-bg) 100%);
    padding: 5rem 0;
}

.about-cta-buttons {
    margin-top: 2rem;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary-bg) 100%);
}

.contact-hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 109, 31, 0.3);
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.contact-hero-intro {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.contact-hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 400px;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 109, 31, 0.95);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-trust-section {
    background-color: var(--color-light-bg);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact-trust-card {
    background-color: var(--color-light-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.contact-trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-trust-card h4 {
    color: var(--color-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-trust-card p {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-main-section {
    background-color: var(--color-secondary-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-card {
    background-color: var(--color-light-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card-text {
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.contact-info-card .contact-link {
    display: block;
    color: var(--color-accent);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.contact-info-card .contact-link:hover {
    color: #e55a1a;
}

.contact-info-item {
    margin-bottom: 1rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.contact-info-list li {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contact-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.contact-form-card {
    background-color: var(--color-light-bg);
}

.contact-form-card .form-label {
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 31, 0.25);
}

.contact-form-card .btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.25s ease;
}

.contact-form-card .btn-primary:hover {
    background-color: #e55a1a;
    border-color: #e55a1a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 109, 31, 0.4);
}

.contact-service-card {
    background-color: var(--color-light-bg);
}

.contact-city-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.city-badge {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(255, 109, 31, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.city-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 109, 31, 0.3);
    opacity: 0.9;
}

.contact-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-hours h5 {
    color: var(--color-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-hours-text {
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.contact-hours-note {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

.contact-map-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-cta-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-cta-text {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    margin-top: 2rem;
}

.contact-cta-buttons .btn {
    transition: all 0.25s ease;
}

.contact-cta-buttons .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Gallery Page Styles
   ============================================ */
.gallery-hero-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.gallery-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary-bg) 100%);
}

.gallery-hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 109, 31, 0.3);
}

.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery-hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.gallery-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-hero-list li {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.gallery-hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.gallery-hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 400px;
}

.gallery-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-main-section {
    background-color: var(--color-secondary-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    aspect-ratio: 4 / 3;
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gallery-caption {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}

.gallery-story-strip {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.gallery-story-title {
    color: var(--color-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gallery-story-text {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-story-item {
    text-align: center;
    padding: 1.5rem;
}

.gallery-story-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-story-item p {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
}

.gallery-before-after-section {
    background-color: var(--color-secondary-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.gallery-before-after-image-wrapper {
    margin-bottom: 1.5rem;
}

.gallery-before-after-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-before-after-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image-caption {
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.gallery-before-after-text {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.gallery-cta-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.gallery-cta-text {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-cta-buttons {
    margin-top: 2rem;
}

.gallery-cta-buttons .btn {
    transition: all 0.25s ease;
}

.gallery-cta-buttons .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#galleryModal .modal-body {
    padding: 1.5rem;
}

#galleryModal #modalImage {
    max-height: 70vh;
    width: auto;
    margin: 0 auto;
    display: block;
    border-radius: 0.5rem;
}

#galleryModal #modalCaption {
    font-size: 1rem;
    color: var(--color-text);
    margin-top: 1rem;
    text-align: center;
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-hero-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.services-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary-bg) 100%);
}

.services-hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 109, 31, 0.3);
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-text {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.services-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.services-hero-list li {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.services-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 400px;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-overview-section {
    background-color: var(--color-secondary-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.service-overview-card {
    position: relative;
    background-color: var(--color-light-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 243, 225, 0.95);
    backdrop-filter: blur(1px);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-overview-card:hover::before {
    background: rgba(34, 34, 34, 0.7);
    backdrop-filter: blur(2px);
}

.service-overview-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-accent);
}

.service-overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-overview-card:hover .service-overview-icon {
    transform: scale(1.1);
}

.service-overview-card h3 {
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-overview-card:hover h3 {
    color: #ffffff;
}

.service-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.service-overview-list li {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.service-overview-card:hover .service-overview-list li {
    color: #ffffff;
}

.service-overview-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-overview-card:hover .service-overview-list li::before {
    color: #ffffff;
}

.services-detail-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.service-detail-row {
    margin-bottom: 4rem;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 350px;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-text {
    padding: 1rem 0;
}

.service-detail-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-text h3 {
    color: var(--color-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.service-detail-text p {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1rem;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.service-detail-list li {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    text-align: justify;
}

.service-detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-detail-box {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-accent);
}

.service-detail-box h4 {
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-types-section {
    background-color: var(--color-secondary-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-type-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-type-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-type-title {
    color: var(--color-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-type-text {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.services-mid-cta {
    background-color: var(--color-accent);
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 1rem;
}

.services-mid-cta-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.services-mid-cta .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
    transition: all 0.25s ease;
}

.services-mid-cta .btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--color-accent);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.services-included-section {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.services-included-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-included-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services-included-card h4 {
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.services-included-list li {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-included-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.services-process-section {
    background-color: var(--color-secondary-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.services-process-step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services-process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-process-step h4 {
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-process-step p {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.services-cta-section {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.services-cta-section .col-lg-6:last-child {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.services-cta-text {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-buttons {
    margin-top: 2rem;
}

.services-cta-buttons .btn {
    transition: all 0.25s ease;
}

.services-cta-buttons .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Individual Service Page Styles (Loading & Unloading, Wrap & Move)
   ============================================ */
.service-breadcrumb {
    background-color: var(--color-light-bg);
    padding-top: 5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-breadcrumb .breadcrumb {
    background-color: transparent;
    padding: 0;
}

.service-breadcrumb .breadcrumb-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb .breadcrumb-item a:hover {
    color: #e55a1a;
}

.service-breadcrumb .breadcrumb-item.active {
    color: var(--color-text);
}

.service-hero-section {
    background-color: var(--color-light-bg);
    padding-top: 3rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.service-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary-bg) 100%);
}

.service-hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(255, 109, 31, 0.3);
}

.service-hero-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.service-hero-text {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1rem;
}

.service-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-hero-list li {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 400px;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-section {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-process-section {
    background-color: var(--color-secondary-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-process-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-process-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-process-card h4 {
    color: var(--color-dark);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-process-card p {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.service-process-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 300px;
    margin-bottom: 2rem;
}

.service-process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-process-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-benefits-section {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-benefit-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-benefit-card h4 {
    color: var(--color-dark);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-benefit-card p {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.service-benefit-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-benefit-link:hover {
    color: #e55a1a;
    text-decoration: underline;
}

.service-trust-strip {
    background-color: var(--color-secondary-bg);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.service-trust-content {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-trust-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-trust-quote {
    color: var(--color-text);
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1rem;
}

.service-trust-author {
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0;
}

.service-links-section {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-links-title {
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-links-subtitle {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.service-links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    color: inherit;
}

.service-link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-link-card h5 {
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.service-link-card p {
    color: var(--color-text);
    font-size: 0.8125rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

.service-google-maps-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-gallery-strip {
    background-color: var(--color-secondary-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-gallery-title {
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.service-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.service-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-gallery-icon {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-cta-section {
    background-color: var(--color-light-bg);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-cta-text {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-buttons {
    margin-top: 2rem;
}

.service-cta-buttons .btn {
    transition: all 0.25s ease;
}

.service-cta-buttons .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-cta-email {
    color: var(--color-text);
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.service-cta-email a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-cta-email a:hover {
    color: #e55a1a;
    text-decoration: underline;
}

/* ============================================
   Quote Details Page Styles
   ============================================ */
.summary-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.summary-title {
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.details-form-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-hero-title,
    .contact-hero-title,
    .gallery-hero-title,
    .services-hero-title,
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle,
    .contact-hero-subtitle,
    .gallery-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero-intro,
    .contact-hero-intro,
    .gallery-hero-subtitle,
    .service-hero-text {
        font-size: 0.875rem;
    }
    
    .about-hero-section,
    .contact-hero-section,
    .gallery-hero-section,
    .services-hero-section,
    .service-hero-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .about-hero-image-wrapper,
    .contact-hero-image-wrapper,
    .gallery-hero-image-wrapper,
    .services-hero-image-wrapper,
    .service-hero-image-wrapper {
        height: 300px;
        margin-top: 2rem;
    }
    
    .about-image-wrapper,
    .about-process-image-wrapper {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .about-story-card,
    .about-why-card {
        padding: 1.5rem;
    }
    
    .about-service-image-wrapper {
        height: 180px;
    }
    
    .about-timeline {
        padding-left: 2.5rem;
    }
    
    .about-timeline::before {
        left: 1.25rem;
    }
    
    .about-timeline-number {
        width: 2.5rem;
        height: 2.5rem;
        left: -2.5rem;
        font-size: 1rem;
    }
    
    .about-timeline-item {
        padding-left: 1.5rem;
    }
    
    .about-timeline-content {
        padding: 1.25rem;
    }
    
    .about-city-badges {
        gap: 0.5rem;
    }
    
    .about-city-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .about-cta-buttons,
    .contact-cta-buttons,
    .gallery-cta-buttons,
    .services-cta-buttons,
    .service-cta-buttons,
    .service-hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta-buttons .btn,
    .contact-cta-buttons .btn,
    .gallery-cta-buttons .btn,
    .services-cta-buttons .btn,
    .service-cta-buttons .btn,
    .service-hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .gallery-filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .gallery-story-title {
        font-size: 1.75rem;
    }
    
    .gallery-before-after-image {
        height: 250px;
    }
    
    .service-detail-image-wrapper {
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .service-detail-text h3 {
        font-size: 1.5rem;
    }
    
    .service-type-title {
        font-size: 1rem;
    }
    
    .service-type-text {
        font-size: 0.8125rem;
    }
    
    .service-process-card h4,
    .service-benefit-card h4 {
        font-size: 1rem;
    }
    
    .service-process-card p,
    .service-benefit-card p {
        font-size: 0.8125rem;
    }
    
    .service-links-title {
        font-size: 1.125rem;
    }
    
    .service-links-subtitle {
        font-size: 0.8125rem;
    }
    
    .service-gallery-title {
        font-size: 1.25rem;
    }
    
    .service-cta-text {
        font-size: 0.875rem;
    }
    
    .services-mid-cta-title {
        font-size: 1.125rem;
    }
    
    .services-cta-section .col-lg-6 {
        margin-bottom: 1.5rem;
    }
    
    .services-cta-section .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    .service-process-image-wrapper {
        height: 250px;
    }
    
    .service-process-card,
    .service-benefit-card,
    .service-type-card {
        padding: 1.5rem;
    }
    
    .service-trust-content {
        padding: 1.5rem;
    }
    
    .service-type-title {
        font-size: 1.25rem;
    }
    
    .service-type-text {
        text-align: left;
    }
    
    .service-google-maps-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .min-vh-75,
    .min-vh-60 {
        min-height: auto;
    }
    
    .about-text,
    .section-subtitle,
    .contact-cta-text,
    .gallery-cta-text,
    .services-cta-text,
    .service-cta-text,
    .service-detail-text,
    .service-process-card p,
    .service-benefit-card p,
    .service-type-text,
    .service-link-card p,
    .service-links-subtitle,
    .gallery-story-text,
    .gallery-before-after-text {
        text-align: left;
    }
    
    .section-subtitle {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .gallery-card {
        aspect-ratio: 16 / 9;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-caption {
        font-size: 0.875rem;
    }
    
    .service-overview-card {
        padding: 1.5rem;
    }
    
    .service-detail-text {
        padding: 0;
    }
    
    .service-detail-box {
        padding: 1.5rem;
    }
}

/* ============================================
   Quick Quote Floating Button
   ============================================ */
.quick-quote-btn-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(255, 109, 31, 0.4);
    z-index: 1000;
    transition: all 0.25s ease;
    cursor: pointer;
}

.quick-quote-btn-fixed:hover {
    background-color: #e55a1a;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 109, 31, 0.5);
}

.quick-quote-btn-fixed:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .quick-quote-btn-fixed {
        bottom: 15px;
        right: 15px;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

.lead-form-card .form-title {
    color: var(--color-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .back-to-top,
    .hero-buttons,
    form,
    .quick-quote-btn-fixed {
        display: none;
    }
}



