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

:root {
    /* Brand Colors - Based on Logo */
    --primary-color: #1a1a1a; /* Dark black for text */
    --secondary-color: #0066cc; /* Blue from logo */
    --accent-red: #e63946;
    --accent-yellow: #ffb703;
    --accent-green: #06a77d;
    --accent-orange: #fb8500;
    --accent-light-blue: #219ebc;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --dark-gray: #666666;
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    --mobile-section-padding: 60px 20px;
    
    /* 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-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    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-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--primary-color);
}

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

.logo-text {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

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

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

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-image {
    width: 100%;
    height: 120%; /* Slightly taller to allow parallax movement */
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 51, 102, 0.7));
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

/* Hero Title - Multi-line with animations */
.hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 30px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.title-line-1 {
    display: block;
    animation: slideInLeft 0.8s ease-out 0.3s both;
    color: var(--white);
    font-size: 1em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95), 0 0 15px rgba(0, 0, 0, 0.6);
    font-weight: var(--font-weight-black);
}

.title-line-2 {
    display: block;
    animation: slideInLeft 0.8s ease-out 0.5s both;
    color: #4da6ff;
    font-size: 1.1em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95), 0 0 25px rgba(77, 166, 255, 0.8), 0 0 40px rgba(77, 166, 255, 0.4);
    font-weight: var(--font-weight-black);
}

.title-line-3 {
    display: block;
    animation: slideInLeft 0.8s ease-out 0.7s both;
    color: var(--white);
    font-size: 1em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95), 0 0 15px rgba(0, 0, 0, 0.6);
    font-weight: var(--font-weight-black);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out 0.9s both;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-feature-item:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-check i {
    font-size: 0.7rem;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #0066ff, #0052cc, #003d99);
    background-size: 200% 200%;
    padding: 20px 45px;
    font-size: 1.15rem;
    font-weight: var(--font-weight-black);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6), 
                0 0 40px rgba(0, 102, 255, 0.4),
                0 0 60px rgba(0, 102, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseGlow 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.8), 
                0 0 60px rgba(0, 102, 255, 0.5),
                0 0 80px rgba(0, 102, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-icon {
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    animation: ring 2s ease-in-out infinite, bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-icon i {
    font-size: inherit;
}

.btn-hero-secondary {
    padding: 20px 45px;
    font-size: 1.15rem;
    font-weight: var(--font-weight-black);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    background: linear-gradient(135deg, #06a77d, #048a6a, #036b52);
    background-size: 200% 200%;
    color: var(--white);
    border: 3px solid rgba(6, 167, 125, 0.5);
    box-shadow: 0 8px 30px rgba(6, 167, 125, 0.5), 
                0 0 40px rgba(6, 167, 125, 0.3),
                0 0 60px rgba(6, 167, 125, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    animation: pulseGlowGreen 3s ease-in-out infinite;
}

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

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-secondary:hover::before {
    left: 100%;
}

.btn-hero-secondary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-arrow {
    transition: var(--transition-normal);
    font-size: 1.3rem;
    font-weight: var(--font-weight-black);
    display: inline-flex;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-arrow i {
    font-size: inherit;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    transform: translateY(-5px) scale(1.05);
    background-position: 100% 0;
    box-shadow: 0 12px 40px rgba(6, 167, 125, 0.7), 
                0 0 60px rgba(6, 167, 125, 0.5),
                0 0 80px rgba(6, 167, 125, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(6, 167, 125, 0.7);
    color: var(--white);
}

.btn-hero-secondary:hover .btn-arrow,
.btn-hero-secondary:focus .btn-arrow {
    transform: translateX(8px) scale(1.2);
}

.btn-hero-secondary:active {
    transform: translateY(-2px) scale(1.02);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6), 
                    0 0 40px rgba(0, 102, 255, 0.4),
                    0 0 60px rgba(0, 102, 255, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 102, 255, 0.8), 
                    0 0 50px rgba(0, 102, 255, 0.6),
                    0 0 70px rgba(0, 102, 255, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes pulseGlowGreen {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(6, 167, 125, 0.5), 
                    0 0 40px rgba(6, 167, 125, 0.3),
                    0 0 60px rgba(6, 167, 125, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(6, 167, 125, 0.7), 
                    0 0 50px rgba(6, 167, 125, 0.5),
                    0 0 70px rgba(6, 167, 125, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: bounceIndicator 2s infinite;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: var(--font-weight-medium);
}

.scroll-arrow {
    width: 3px;
    height: 30px;
    background-color: var(--white);
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.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);
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

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

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

.btn-full {
    width: 100%;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding);
    position: relative;
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: var(--light-gray);
    position: relative;
    z-index: 10;
    padding-top: 100px; /* Extra padding to ensure it's not covered */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.service-category {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    border-top: 4px solid;
}

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

.category-green {
    border-top-color: var(--accent-green);
}

.category-blue {
    border-top-color: var(--secondary-color);
}

.category-red {
    border-top-color: var(--accent-red);
}

.category-emergency {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(230, 57, 70, 0.02));
}

.category-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 24px;
    border-radius: 2px;
    display: inline-block;
}

.category-green .category-title::before {
    background-color: var(--accent-green);
}

.category-blue .category-title::before {
    background-color: var(--secondary-color);
}

.category-red .category-title::before {
    background-color: var(--accent-red);
}

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

.service-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.category-green .service-list li::before {
    color: var(--accent-green);
}

.category-blue .service-list li::before {
    color: var(--secondary-color);
}

.category-red .service-list li::before {
    color: var(--accent-red);
}

.emergency-note {
    font-weight: var(--font-weight-bold);
    color: var(--accent-red);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundling-notice {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(6, 167, 125, 0.1));
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.bundling-notice p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.bundling-notice i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

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

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

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-icon {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0.8);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-icon i {
    font-size: inherit;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-show-more {
    text-align: center;
    margin-top: 30px;
}

.gallery-show-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.gallery-show-more-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.gallery-show-more-btn.hidden {
    display: none;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

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

.lightbox-close i,
.lightbox-prev i,
.lightbox-next i {
    font-size: inherit;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    padding: 20px;
    transition: var(--transition-fast);
    user-select: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 25px;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.9rem;
}

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

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 167, 125, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.quick-contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-width: 250px;
}

.quick-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.quick-action-call {
    border-left: 4px solid var(--secondary-color);
}

.quick-action-call:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.02));
}

.quick-action-email {
    border-left: 4px solid var(--accent-green);
}

.quick-action-email:hover {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(6, 167, 125, 0.05), rgba(6, 167, 125, 0.02));
}

.quick-action-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 10px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.quick-action-call .quick-action-icon {
    background: rgba(0, 102, 204, 0.1);
}

.quick-action-email .quick-action-icon {
    background: rgba(6, 167, 125, 0.1);
}

.quick-action-btn:hover .quick-action-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-action-content {
    display: flex;
    flex-direction: column;
}

.quick-action-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-action-value {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-info-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-green));
    border-radius: 2px;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--medium-gray);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 102, 204, 0.2);
}

.contact-card:hover::before {
    width: 4px;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-green));
}

.contact-card-highlight {
    background: linear-gradient(135deg, rgba(6, 167, 125, 0.05), rgba(0, 102, 204, 0.05));
    border: 2px solid rgba(6, 167, 125, 0.2);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

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

.contact-card-icon-location {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
}

.contact-card-icon-phone {
    background: rgba(0, 102, 204, 0.1);
    color: var(--secondary-color);
}

.contact-card-icon-email {
    background: rgba(255, 179, 3, 0.1);
    color: var(--accent-yellow);
}

.contact-card-icon-hours {
    background: rgba(6, 167, 125, 0.1);
    color: var(--accent-green);
}

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

.contact-card-content h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    display: inline-block;
}

.contact-link:hover,
.contact-link:focus {
    color: #0052a3;
    text-decoration: underline;
    transform: translateX(3px);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.hours-highlight {
    font-size: 1.3rem !important;
    font-weight: var(--font-weight-bold) !important;
    color: var(--accent-green) !important;
    background: rgba(6, 167, 125, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-green));
    border-radius: 16px 16px 0 0;
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    font-size: 0.95rem;
}

.required-indicator {
    color: var(--accent-red);
    font-weight: var(--font-weight-bold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
    border-color: var(--accent-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    font-family: var(--font-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.btn-submit:hover .btn-arrow-icon {
    transform: translateX(5px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: var(--font-weight-bold);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--secondary-color);
}

.footer-section p i {
    margin-right: 8px;
    font-size: 1rem;
    color: var(--white);
    width: 20px;
    text-align: center;
}

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

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-normal);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 500px;
        height: 100vh;
        max-height: 100vh;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 51, 102, 0.75));
    }
    
    .hero-overlay::after {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .hero-background-image {
        object-position: center;
    }
    
    .services {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        gap: 3px;
        margin-bottom: 25px;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 1em;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.6);
    }
    
    .title-line-2 {
        font-size: 1.05em;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95), 0 0 20px rgba(77, 166, 255, 0.8);
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 30px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
        background: rgba(0, 0, 0, 0.3);
        padding: 15px 20px;
    }
    
    .hero-features {
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .hero-feature-item {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .feature-check {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 18px 35px;
        font-size: 1.05rem;
        justify-content: center;
        letter-spacing: 0.3px;
    }
    
    .btn-hero-primary {
        animation: pulseGlow 3s ease-in-out infinite;
    }
    
    .btn-icon {
        font-size: 1.2rem;
    }
    
    .btn-arrow {
        font-size: 1.1rem;
    }
    
    /* Section Mobile */
    section {
        padding: var(--mobile-section-padding);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-category {
        padding: 25px 20px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .service-list li {
        font-size: 0.95rem;
        padding: 8px 0;
        padding-left: 22px;
    }
    
    .bundling-notice {
        padding: 15px;
        margin-top: 30px;
    }
    
    .bundling-notice p {
        font-size: 1rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-icon {
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        padding: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    /* About Mobile */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Contact Mobile */
    .contact-header {
        margin-bottom: 40px;
    }
    
    .quick-contact-actions {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .quick-action-btn {
        min-width: 100%;
        padding: 18px 25px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-submit {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 1em;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .contact-form-wrapper {
        border: 2px solid var(--primary-color);
    }
}

