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

:root {
    /* Brand Colors - Based on logo and truck wrap */
    --color-primary: #1e3a8a; /* Deep blue */
    --color-primary-light: #3b82f6; /* Light blue */
    --color-accent: #f59e0b; /* Warm orange/sunset */
    --color-accent-dark: #d97706;
    --color-text: #1f2937; /* Dark gray */
    --color-text-light: #6b7280; /* Medium gray */
    --color-bg: #ffffff;
    --color-bg-light: #f9fafb;
    --color-bg-dark: #111827;
    --color-border: #e5e7eb;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 var(--spacing-lg);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.85) 0%,
        rgba(59, 130, 246, 0.75) 50%,
        rgba(245, 158, 11, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-sm);
    color: white;
    display: flex;
    align-items: center;
    min-height: auto;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
}

.hero-text {
    text-align: left;
    padding-top: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    align-self: center;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-2deg) translateY(30px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-2deg) translateY(0);
    }
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-trust {
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.trust-number {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: var(--spacing-xs) auto 0;
    animation: bounce 2s infinite;
}

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

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

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

/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: var(--color-bg-light);
}

.services-slider-wrapper {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.services-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.services-cta-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* Featured Services */
.featured-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.featured-service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-service-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

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

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

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.1) 0%,
        rgba(245, 158, 11, 0.1) 100%
    );
    pointer-events: none;
}

.featured-service-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-service-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.featured-service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

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

.service-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text);
    font-size: 0.95rem;
}

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

.service-learn-more {
    margin-top: var(--spacing-md);
    display: inline-block;
    width: auto;
}

/* Reverse layout for alternating cards */
.featured-service-card:nth-child(even) {
    direction: rtl;
}

.featured-service-card:nth-child(even) .featured-service-content {
    direction: ltr;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-text {
    padding: var(--spacing-md);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 500;
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* ============================================
   BBB Accreditation Section
   ============================================ */
.bbb-accreditation {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
}

.bbb-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.bbb-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.bbb-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.bbb-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.bbb-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
}

.bbb-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.bbb-benefit-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.bbb-benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.bbb-benefit-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 4px;
}

.bbb-benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.bbb-benefit-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.bbb-footer-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   Portfolio Section - Album Gallery
   ============================================ */
.portfolio {
    background-color: var(--color-bg-light);
}

.portfolio-albums {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.portfolio-album {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-album:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.album-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: var(--transition);
}

.album-header:hover {
    background-color: var(--color-bg-light);
}

.album-preview {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(245, 158, 11, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.album-icon {
    color: white;
    transform: scale(0.8);
    transition: var(--transition);
}

.album-preview:hover .album-icon {
    transform: scale(1);
}

.album-info {
    flex: 1;
    min-width: 0;
}

.album-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.album-count {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.album-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.album-toggle:hover {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.portfolio-album.active .album-toggle {
    transform: rotate(180deg);
    background-color: var(--color-primary);
    color: white;
}

.album-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
}

.portfolio-album.active .album-content {
    max-height: 5000px;
    padding: var(--spacing-md);
}

.album-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
}

.album-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

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

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

.portfolio-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.portfolio-cta-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Lightbox Modal
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    z-index: 10001;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-header {
    margin-bottom: var(--spacing-sm);
}

.contact-info-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-info-subtitle {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.contact-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    border: 1px solid var(--color-border);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
    border-color: var(--color-primary-light);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

.contact-card-content {
    flex: 1;
    min-width: 0;
}

.contact-card-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-card-value {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    display: block;
    word-break: break-word;
}

.contact-card-value a {
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-card-value a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-social-link {
    color: var(--color-primary) !important;
    font-weight: 500;
}

.contact-social-link:hover {
    color: var(--color-accent) !important;
}

/* Contact Form Section */
.contact-form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

.contact-form-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-form-subtitle {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

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

.required {
    color: var(--color-accent);
    font-weight: 700;
}

.form-input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    color: var(--color-text);
}

.form-input::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
    background-color: #fafbfc;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.6;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.btn-full svg {
    transition: var(--transition);
}

.btn-full:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-bg-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

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

.footer-text a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-phone {
    color: var(--color-accent) !important;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

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

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

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .featured-service-card {
        grid-template-columns: 1fr;
    }

    .featured-service-image {
        min-height: 280px;
    }

    /* Reverse layout disabled on tablet */
    .featured-service-card:nth-child(even) {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Base Improvements */
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    /* Navigation Mobile */
    .nav-container {
        padding: var(--spacing-sm) var(--spacing-md);
        padding-left: max(var(--spacing-md), env(safe-area-inset-left));
        padding-right: max(var(--spacing-md), env(safe-area-inset-right));
    }

    .nav-logo {
        gap: var(--spacing-xs);
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: var(--spacing-md) 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem var(--spacing-md);
        display: block;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        padding: var(--spacing-xs);
    }

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

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

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

    /* Hero Mobile */
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 80px;
        padding-bottom: var(--spacing-lg);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .hero-content {
        padding: var(--spacing-md) var(--spacing-md);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 2;
        padding-top: 0;
    }

    .hero-image-wrapper {
        display: none;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }

    .hero-subheadline {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }

    .hero-trust {
        justify-content: center;
        flex-direction: row;
        gap: var(--spacing-md);
        flex-wrap: wrap;
        margin-top: var(--spacing-md);
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-item {
        min-width: 100px;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .trust-label {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Services Mobile - Single Card View with Swipe */
    .services-slider-wrapper {
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-md);
        padding: var(--spacing-md) var(--spacing-sm);
        padding-bottom: var(--spacing-lg);
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
        overscroll-behavior-x: contain;
    }

    .services-grid::-webkit-scrollbar {
        height: 4px;
    }

    .services-grid::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }

    .service-card {
        flex: 0 0 calc(100% - var(--spacing-md) * 2);
        scroll-snap-align: start;
        min-width: 0;
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-xs);
    }

    .service-card:first-child {
        margin-left: var(--spacing-md);
    }

    .service-card:last-child {
        margin-right: var(--spacing-md);
    }

    .slider-btn {
        display: flex;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .slider-btn-prev {
        left: 5px;
    }

    .slider-btn-next {
        right: 5px;
    }

    /* Featured Services Mobile */
    .featured-services {
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .featured-service-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .featured-service-image {
        min-height: 250px;
        max-height: 300px;
    }

    .featured-service-content {
        padding: var(--spacing-md);
    }

    .featured-service-title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
        margin-bottom: var(--spacing-sm);
    }

    .featured-service-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-sm);
    }

    .service-features li {
        font-size: 0.9rem;
        padding: calc(var(--spacing-xs) * 0.75) 0;
        padding-left: var(--spacing-md);
    }

    /* Reverse layout disabled on mobile */
    .featured-service-card:nth-child(even) {
        direction: ltr;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image {
        min-height: 250px;
        border-radius: 12px;
    }

    .about-text {
        padding: 0;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-md);
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }

    .feature-item {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }

    /* BBB Accreditation Mobile */
    .bbb-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .bbb-logo-wrapper {
        max-width: 200px;
        margin: 0 auto;
        padding: var(--spacing-md);
    }

    .bbb-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }

    .bbb-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }

    .bbb-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .bbb-benefit-item {
        text-align: left;
        padding: var(--spacing-md);
    }

    .bbb-benefit-title {
        font-size: 1rem;
    }

    .bbb-benefit-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .bbb-footer-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Portfolio Album Mobile */
    .album-header {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
        min-height: 60px;
    }

    .album-preview {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .album-title {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .album-count {
        font-size: 0.9rem;
    }

    .album-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .album-content {
        padding: 0 var(--spacing-md);
    }

    .album-images {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding-top: var(--spacing-md);
    }

    .album-image-item {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Refinements */
    .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 45px;
    }

    .hero-headline {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-subheadline {
        font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    }

    .service-card {
        padding: var(--spacing-md);
        flex: 0 0 calc(100% - var(--spacing-sm) * 2);
    }

    .service-card:first-child {
        margin-left: var(--spacing-sm);
    }

    .service-card:last-child {
        margin-right: var(--spacing-sm);
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .slider-btn-prev {
        left: 2px;
    }

    .slider-btn-next {
        right: 2px;
    }

    /* Featured Services Extra Small Mobile */
    .featured-services {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .featured-service-image {
        min-height: 200px;
        max-height: 250px;
    }

    .featured-service-content {
        padding: var(--spacing-sm);
    }

    .featured-service-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        margin-bottom: var(--spacing-xs);
    }

    .featured-service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-xs);
    }

    .service-features li {
        font-size: 0.85rem;
        padding: calc(var(--spacing-xs) * 0.5) 0;
        padding-left: var(--spacing-sm);
    }

    /* Portfolio Extra Small */
    .album-preview {
        width: 70px;
        height: 70px;
    }

    .album-title {
        font-size: 1.05rem;
    }

    .album-images {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    /* Lightbox Extra Small */
    .lightbox-nav {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        top: 10px;
        right: 10px;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-info-header {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }

    .contact-info-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: var(--spacing-xs);
    }

    .contact-info-subtitle {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: var(--spacing-md);
        border-radius: 16px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-input {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
        border-radius: 12px;
    }

    .form-textarea {
        min-height: 120px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact-card {
        padding: var(--spacing-sm);
        min-height: 80px;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .contact-card-label {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }

    .contact-card-value {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-card-content {
        text-align: left;
    }

    .contact-social-link {
        padding: var(--spacing-xs) 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Footer Mobile */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: var(--spacing-sm);
    }

    .footer-tagline {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-title {
        font-size: 1.15rem;
        margin-bottom: var(--spacing-sm);
    }

    .footer-menu {
        align-items: center;
        gap: var(--spacing-xs);
    }

    .footer-menu a {
        padding: var(--spacing-xs) 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .social-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .btn-full {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    /* Trust Items Extra Small */
    .hero-trust {
        gap: var(--spacing-sm);
    }

    .trust-item {
        min-width: 90px;
    }

    .trust-number {
        font-size: 1.35rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    /* Footer Extra Small */
    .footer-logo {
        height: 45px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    /* General Mobile Adjustments */
    section {
        padding: var(--spacing-xl) 0;
    }

    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.6;
    }

    .services-cta {
        margin-top: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .services-cta-text {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .portfolio-cta {
        margin-top: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .portfolio-cta-text {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        border-radius: 10px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .portfolio-item {
        flex: 0 0 100%;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    /* Contact Extra Small Mobile */
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.35rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
    }

    .contact-card-content {
        text-align: center;
    }

    .btn-full {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

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

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .hero-video-container,
    .slider-btn,
    .scroll-indicator {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }

    .hero-content {
        position: static;
    }

    .hero-overlay {
        background: rgba(30, 58, 138, 0.1);
    }
}

