/* ============================================
   BEST MEN MOVING - PREMIUM THEME
   Brand Colors: #F4F4F4 (bg), #F0A500 (primary), #CF7500 (secondary), #000000 (text)
   ============================================ */

:root {
    --bg-light: #F4F4F4;
    --primary: #F0A500;
    --secondary: #CF7500;
    --text-dark: #000000;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin-bottom: 1rem; }

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

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 1050;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.announcement-bar p {
    margin: 0;
    font-weight: 500;
}

.announcement-bar .btn-announcement {
    background: var(--white);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: var(--transition);
}

.announcement-bar .btn-announcement:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--secondary);
}

/* ============================================
   NAVBAR
   ============================================ */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
    background: var(--white) !important;
}

.navbar-brand img {
    width: 242px;
    height: 96px;
    max-width: 242px;
    max-height: 96px;
    object-fit: contain;
    transition: var(--transition);
}

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

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(240, 165, 0, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    margin-top: 0.5rem;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(240, 165, 0, 0.1);
    color: var(--primary);
    padding-left: 2rem;
}

.dropdown-item.active {
    background: rgba(240, 165, 0, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.btn-contact:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.25);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(240, 165, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    margin-bottom: 2rem;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--white);
    opacity: 0.9;
}

.breadcrumb-item.active {
    color: var(--white);
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--white);
    opacity: 0.7;
    padding: 0 0.5rem;
}

/* Split Hero (Homepage) */
.hero-split {
    min-height: 80vh;
    padding: 140px 0 100px;
}

.hero-content {
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge i {
    font-size: 18px;
    color: var(--primary);
}

/* Quick Quote Form Card */
.quick-quote-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-quote-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.quick-quote-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.quick-quote-card .form-control {
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 15px;
}

.quick-quote-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.15);
    outline: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 18px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-padding {
    padding: 100px 0;
}

.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 28px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .icon-badge {
    transform: scale(1.1) rotate(5deg);
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card .btn-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card .btn-link:hover {
    gap: 1rem;
}

/* ============================================
   FEATURE BLOCKS / WHY CHOOSE US
   ============================================ */

.feature-block {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-block .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1), rgba(207, 117, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-block:hover .icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.1);
}

.feature-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-block p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.icon-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.icon-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1), rgba(207, 117, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.icon-card:hover .icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.1);
}

.icon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.icon-card p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Timeline / Steps */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, var(--primary), rgba(240, 165, 0, 0.2));
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-item p {
    color: #666;
    margin: 0;
}

/* ============================================
   GALLERY / MASONRY GRID
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.8), rgba(207, 117, 0, 0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    font-size: 2rem;
    transition: var(--transition);
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--white);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

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

.testimonial-card .stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-card .location {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(240, 165, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Carousel Customization */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* ============================================
   SERVICE AREAS
   ============================================ */

.service-area-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    color: inherit;
}

.service-area-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.service-area-card:hover h3 {
    color: var(--primary);
}

.service-area-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

.area-filter {
    margin-bottom: 2rem;
}

.area-search {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.area-search .form-control {
    border: 2px solid #E0E0E0;
    border-radius: 25px;
    padding: 0.875rem 1.5rem;
    font-size: 16px;
    transition: var(--transition);
}

.area-search .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.15);
}

.area-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.chip {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.chip:hover,
.chip.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   FORMS
   ============================================ */

.form-control,
.form-select {
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.25);
}

.toggle-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.toggle-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.copy-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.copy-email:hover {
    background: var(--primary);
    color: var(--white);
}

.copy-email.copied {
    background: #28a745;
    color: var(--white);
}

.neighborhood-card {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}

.neighborhood-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    padding: 1rem 2.5rem;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.inner-hero {
    min-height: 50vh;
    padding: 100px 0 60px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
}

.value-card .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member .avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.gallery-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 2rem 0;
    margin: 3rem 0;
    scroll-snap-type: x mandatory;
}

.gallery-strip img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-strip img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

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

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.service-intro img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.included-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.included-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.included-item .check-icon {
    width: 30px;
    height: 30px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 14px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

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

.feature-card .icon-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

.pricing-disclaimer {
    background: rgba(240, 165, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.pricing-disclaimer h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-disclaimer p {
    color: #666;
    margin: 0;
}

.lead-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

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

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h5 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

.footer-section h6 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section .contact-info {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .contact-info a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 18px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: var(--white);
}

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

.footer-title {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-areas {
    font-size: 13px;
}

.footer-areas li {
    margin-right: 1rem;
    margin-bottom: 0.25rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

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

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   UTILITIES
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

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

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 991.98px) {
    .navbar-brand img {
        width: 200px;
        height: 79px;
        max-width: 200px;
        max-height: 79px;
    }
    
    .hero-split {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .quick-quote-card {
        margin-top: 2rem;
    }
    
    .service-intro {
        grid-template-columns: 1fr;
    }
    
    .service-intro img {
        order: -1;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        width: 180px;
        height: 71px;
        max-width: 180px;
        max-height: 71px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .hero-section {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .btn-contact,
    .navbar-nav .btn-primary {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .btn-primary.ms-2 {
        margin-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 150px;
        height: 59px;
        max-width: 150px;
        max-height: 59px;
    }
    
    .quick-quote-card {
        padding: 1.5rem;
    }
    
    .service-card,
    .testimonial-card,
    .feature-block {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
