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

:root {
    /* Brand Colors */
    --primary-green: #7CB342;
    --dark-green: #558B2F;
    --light-green: #C5E1A5;
    --maroon: #8B2635;
    --dark-maroon: #6B1D2A;
    --yellow-accent: #FFC107;
    --dark-yellow: #FFA000;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #E0E0E0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

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

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

.nav-link.cta-nav {
    background-color: var(--maroon);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    transition: var(--transition-normal);
}

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

.nav-link.cta-nav:hover,
.nav-link.cta-nav:focus {
    background-color: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

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

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.75) 0%, rgba(85, 139, 47, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    background-color: var(--yellow-accent);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.badge-text {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--yellow-accent);
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: var(--transition-normal);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    border: 2px solid transparent;
}

.cta-primary:hover,
.cta-primary:focus {
    background-color: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.cta-primary.cta-large {
    padding: 20px 50px;
    font-size: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: var(--transition-normal);
}

.cta-secondary:hover,
.cta-secondary:focus {
    background-color: var(--white);
    color: var(--maroon);
    transform: translateY(-3px);
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background-color: var(--white);
    margin: 10px auto 0;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.service-title {
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.7;
}

.services-mobile-slider {
    display: none;
}

.works-mobile-slider {
    display: none;
}

.reviews-mobile-slider {
    display: none;
    visibility: hidden;
}

.videos-mobile-slider {
    display: none;
    visibility: hidden;
}

/* ============================================
   Works/Portfolio Section
   ============================================ */
.works {
    padding: var(--section-padding);
    background-color: var(--white);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.work-album {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

.work-album:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.work-album:hover .cover-image {
    transform: scale(1.1);
}

.album-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--dark-yellow) 100%);
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.badge-count {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 38, 53, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.work-album:hover .album-overlay {
    opacity: 1;
}

.album-info {
    color: var(--white);
    width: 100%;
}

.album-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.album-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
}

.album-click-hint {
    font-size: 0.85rem;
    color: var(--yellow-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.album-card-content {
    padding: 25px;
    background-color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.album-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 12px;
    line-height: 1.3;
}

.album-card-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    flex: 1;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    position: relative;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.gallery-close:hover,
.gallery-close:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
    z-index: 10001;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover,
.gallery-nav:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.gallery-counter {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-viewport {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-image.loaded {
    opacity: 1;
}

.gallery-loader {
    position: absolute;
    color: var(--white);
    font-size: 1.2rem;
    display: none;
}

.gallery-loader.active {
    display: block;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    max-width: 1200px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumbnail:hover {
    opacity: 1;
    border-color: var(--yellow-accent);
    transform: scale(1.1);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--yellow-accent);
    border-width: 3px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    position: relative;
}

.video-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.video-close:hover,
.video-close:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.video-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-heading);
}

.video-modal-viewport {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-player {
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background-color: var(--dark-gray);
}

/* ============================================
   Videos Section
   ============================================ */
.videos {
    padding: var(--section-padding);
    background-color: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-album {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

.video-album:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-album:hover .video-player {
    transform: scale(1.1);
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--dark-yellow) 100%);
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.video-badge .badge-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-badge i {
    font-size: 0.85rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 38, 53, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.video-album:hover .video-overlay {
    opacity: 1;
}

.video-info {
    color: var(--white);
    width: 100%;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.video-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
}

.video-card-content {
    padding: 25px;
    background-color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-card-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    flex: 1;
}

/* ============================================
   Section Separator
   ============================================ */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    position: relative;
    background-color: var(--white);
}

.separator-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    position: relative;
}

.separator-line::before,
.separator-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    transform: translateY(-50%);
}

.separator-line::before {
    left: 0;
}

.separator-line::after {
    right: 0;
}

/* Additional dots near the center icon */
.separator-line:first-child::after {
    right: -10px;
}

.separator-line:last-child::before {
    left: -10px;
}

.separator-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    position: relative;
    z-index: 1;
}

.separator-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.about .section-header {
    margin-bottom: 60px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--dark-yellow) 100%);
    color: var(--dark-gray);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.about-badge i {
    font-size: 1.1rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-slow);
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.1) 0%, rgba(124, 179, 66, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.feature-content {
    flex: 1;
}

.feature-item strong {
    display: block;
    color: var(--maroon);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Service Areas Section
   ============================================ */
.service-areas {
    padding: var(--section-padding);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.service-areas-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.75) 0%, rgba(85, 139, 47, 0.65) 100%);
    z-index: 1;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.service-areas .container {
    position: relative;
    z-index: 2;
}

.service-areas .section-title,
.service-areas .section-subtitle {
    color: var(--white);
}

.service-areas-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.areas-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 20px;
    margin-bottom: 40px;
}

.areas-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow-accent);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-coverage-map {
    margin: 60px 0;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.coverage-map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-visualization {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map-region {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(255, 193, 7, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 40%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

.map-pin {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--dark-yellow) 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 10;
}

.map-pin i {
    transform: rotate(45deg);
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 700;
}

.map-pin:hover {
    transform: rotate(-45deg) scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    z-index: 20;
}

.map-pin-1 {
    top: 30%;
    left: 25%;
}

.map-pin-2 {
    top: 40%;
    left: 75%;
}

.map-pin-3 {
    top: 70%;
    left: 50%;
}

.map-pin-4 {
    top: 80%;
    left: 20%;
}

.pin-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background-color: rgba(139, 38, 53, 0.9);
    padding: 4px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.map-pin:hover .pin-label {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
}

.map-coverage-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px dashed rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

.legend-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid;
}

.legend-icon.primary {
    background-color: var(--yellow-accent);
    border-color: var(--dark-yellow);
}

.legend-icon.extended {
    background-color: transparent;
    border-color: rgba(255, 193, 7, 0.4);
    border-style: dashed;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.area-card-special {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 160, 0, 0.2) 100%);
    border-color: rgba(255, 193, 7, 0.4);
}

.area-card-special:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%);
    border-color: rgba(255, 193, 7, 0.6);
}

.area-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.area-icon i {
    font-size: 2rem;
    color: var(--white);
}

.area-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--font-heading);
}

.area-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    min-height: 60px;
}

.area-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-item-mini i {
    color: var(--yellow-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.area-distance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.area-distance i {
    color: var(--yellow-accent);
}

.area-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.area-feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-normal);
}

.area-card:hover .area-feature-tag {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.area-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.area-cta-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--yellow-accent);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.area-cta-link:hover,
.area-cta-link:focus {
    background-color: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.service-areas-footer {
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.areas-footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.areas-footer-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.5);
}

.areas-footer-icon i {
    font-size: 2rem;
    color: var(--yellow-accent);
}

.areas-footer-text {
    flex: 1;
}

.areas-footer-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-heading);
}

.areas-footer-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.footer-phone-link {
    color: var(--yellow-accent);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.footer-phone-link:hover,
.footer-phone-link:focus {
    border-bottom-color: var(--yellow-accent);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.areas-cta-section {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 160, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    text-align: center;
}

.areas-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.areas-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.areas-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.areas-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.areas-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 700;
}

.areas-cta-btn i {
    font-size: 1.1rem;
}

.areas-cta-btn.cta-primary {
    background-color: var(--yellow-accent);
    color: var(--dark-gray);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.areas-cta-btn.cta-primary:hover,
.areas-cta-btn.cta-primary:focus {
    background-color: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.areas-cta-btn.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.areas-cta-btn.cta-secondary:hover,
.areas-cta-btn.cta-secondary:focus {
    background-color: var(--white);
    color: var(--maroon);
    transform: translateY(-3px);
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-20%, -20%);
    pointer-events: none;
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 38, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(20%, 20%);
    pointer-events: none;
}

.reviews .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--dark-yellow) 100%);
    color: var(--dark-gray);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.reviews-badge i {
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.review-card {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.review-quote-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(85, 139, 47, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.review-card:hover .review-quote-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--yellow-accent);
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.2);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 5px;
}

.review-author-location {
    font-size: 0.9rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-author-location::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.review-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--off-white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.review-card:hover .review-service-tag {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.review-service-tag i {
    color: var(--primary-green);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.review-card:hover .review-service-tag i {
    color: var(--white);
}

.reviews-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.reviews-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.reviews-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.reviews-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-normal);
    background-color: var(--yellow-accent);
    color: var(--dark-gray);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.reviews-cta-btn:hover,
.reviews-cta-btn:focus {
    background-color: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.reviews-cta-btn i {
    font-size: 1.1rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-item-title {
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-link {
    display: block;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover,
.contact-link:focus {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-text {
    color: var(--medium-gray);
    margin-bottom: 8px;
    font-size: 1rem;
}

.social-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--maroon);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.social-link:hover,
.social-link:focus {
    background-color: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.3);
}

.cta-box-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--yellow-accent);
    font-weight: 600;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--yellow-accent);
    font-weight: 700;
}

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

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

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-list a:hover,
.footer-list a:focus {
    color: var(--yellow-accent);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin-bottom: 5px;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-normal);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-cta-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 90%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .hero-trust-indicators {
        gap: 30px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    /* Works Mobile */
    .works-grid {
        display: none;
    }
    
    .works-mobile-slider {
        display: block;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .works-mobile-slider .slider-container {
        overflow: hidden;
        border-radius: 10px;
    }
    
    .works-mobile-slider .slider-track {
        display: flex;
        transition: transform 0.4s ease;
        will-change: transform;
    }
    
    .works-mobile-slider .slider-track .work-album {
        min-width: 100%;
        margin: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .works-mobile-slider .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--maroon);
        color: var(--white);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-normal);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .works-mobile-slider .slider-btn:hover,
    .works-mobile-slider .slider-btn:focus {
        background-color: var(--dark-maroon);
        transform: translateY(-50%) scale(1.1);
    }
    
    .works-mobile-slider .slider-btn-prev {
        left: 10px;
    }
    
    .works-mobile-slider .slider-btn-next {
        right: 10px;
    }
    
    .works-mobile-slider .slider-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reviews-mobile-slider {
        display: none !important;
    }
    
    /* Videos Mobile */
    .videos-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .videos-mobile-slider {
        display: none !important;
    }
    
    .video-card-content {
        padding: 20px;
    }
    
    .video-card-title {
        font-size: 1.2rem;
    }
    
    .video-card-description {
        font-size: 0.9rem;
    }
    
    .video-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Video Modal Mobile */
    .video-modal-viewport {
        max-height: 70vh;
        padding: 0 10px;
    }
    
    .video-modal-player {
        max-height: 70vh;
    }
    
    .video-modal-title {
        font-size: 1.5rem;
    }
    
    .video-close {
        width: 40px;
        height: 40px;
        font-size: 2.5rem;
        top: 10px;
        right: 10px;
    }
    
    .work-album {
        max-width: 100%;
    }
    
    .album-card-content {
        padding: 20px;
    }
    
    .album-card-title {
        font-size: 1.2rem;
    }
    
    .album-card-description {
        font-size: 0.9rem;
    }
    
    .album-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-viewport {
        max-height: 60vh;
    }
    
    .gallery-image {
        max-height: 60vh;
    }
    
    .gallery-thumbnails {
        gap: 8px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Services Mobile */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-mobile-slider {
        display: none !important;
    }
    
    /* About Mobile */
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image:hover {
        transform: scale(1.02);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-content {
        text-align: center;
    }
    
    /* Service Areas Mobile */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .area-card {
        padding: 30px 25px;
    }
    
    .area-icon {
        width: 60px;
        height: 60px;
    }
    
    .area-icon i {
        font-size: 1.75rem;
    }
    
    .area-name {
        font-size: 1.3rem;
    }
    
    .area-description {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .service-areas-footer {
        padding: 30px 25px;
        margin-top: 40px;
    }
    
    .areas-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .areas-footer-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .areas-footer-icon i {
        font-size: 1.75rem;
    }
    
    .areas-footer-text h4 {
        font-size: 1.2rem;
    }
    
    .areas-footer-text p {
        font-size: 1rem;
    }
    
    .areas-intro-text {
        font-size: 1rem;
    }
    
    .areas-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .service-coverage-map {
        margin: 40px 0;
        padding: 25px 20px;
    }
    
    .map-visualization {
        height: 300px;
    }
    
    .map-pin {
        width: 40px;
        height: 40px;
    }
    
    .map-pin i {
        font-size: 1rem;
    }
    
    .map-coverage-circle {
        width: 200px;
        height: 200px;
    }
    
    .map-legend {
        gap: 25px;
    }
    
    .area-services-list {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }
    
    .service-item-mini {
        font-size: 0.8rem;
    }
    
    .areas-cta-section {
        margin-top: 40px;
        padding: 35px 25px;
    }
    
    .areas-cta-title {
        font-size: 1.6rem;
    }
    
    .areas-cta-text {
        font-size: 1rem;
    }
    
    .areas-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .areas-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-box-title {
        font-size: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

/* ============================================
   Accessibility & Performance
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--yellow-accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .mobile-menu-toggle,
    .slider-btn {
        display: none;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: auto;
        padding: 40px 0;
    }
}

