/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Logo Color Scheme - Dark Teal Background */
    --primary-color: #0d4a5f;
    --primary-dark: #0a3a4a;
    --primary-light: #1a6b85;
    /* Muted Teal Accent (softer than bright cyan) */
    --secondary-color: #4a9ba8;
    --secondary-light: #6bb3c0;
    --secondary-dark: #3a7a85;
    /* Silver/Light Grey Accent */
    --accent-color: #b0bec5;
    --accent-light: #cfd8dc;
    --accent-dark: #90a4ae;
    /* Dark Teal Background (logo background) */
    --dark-color: #0a3a4a;
    --dark-teal: #0d4a5f;
    /* Light backgrounds */
    --light-color: #f8f9fa;
    --light-teal: #e0f7fa;
    /* Text colors */
    --text-dark: #0a3a4a;
    --text-light: #546e7a;
    --white: #ffffff;
    /* Shadows */
    --shadow: rgba(10, 58, 74, 0.1);
    --shadow-lg: rgba(10, 58, 74, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-teal);
}

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
}

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

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

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

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--dark-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 155, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 190, 197, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(74, 155, 168, 0.5);
    animation: taglineGlow 2s ease-in-out infinite;
}

@keyframes taglineGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(74, 155, 168, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(74, 155, 168, 0.8), 0 0 30px rgba(74, 155, 168, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 155, 168, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 168, 0.5);
}

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

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

/* Enhanced CTA Buttons */
.btn-pulse {
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
    animation: ripple 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(74, 155, 168, 0.4), 0 0 0 0 rgba(74, 155, 168, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(74, 155, 168, 0.4), 0 0 0 10px rgba(74, 155, 168, 0);
    }
}

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

.btn-phone-pulse {
    position: relative;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.hero-urgency {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1.2s ease 0.3s both;
}

.urgency-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.urgency-badge svg {
    flex-shrink: 0;
}

.urgency-badge:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

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

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-teal);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.services-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.services-container {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    width: 100%;
}

.service-card {
    min-width: 100%;
    width: 100%;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Fallback: Show first card if no JS */
.service-card:first-child {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    z-index: 1;
}

.service-card.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    position: relative !important;
    z-index: 2;
}

.service-icon {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(74, 155, 168, 0.3);
    transition: var(--transition);
    color: var(--white);
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(74, 155, 168, 0.4);
}

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

.service-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 155, 168, 0.3);
    position: relative;
    overflow: hidden;
}

.service-btn::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, height 0.6s;
}

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

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 155, 168, 0.4);
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(74, 155, 168, 0.3);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 155, 168, 0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.service-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-indicator {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    touch-action: manipulation;
}

.service-indicator.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(74, 155, 168, 0.5);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(74, 155, 168, 0.3);
    transition: var(--transition);
    color: var(--primary-color);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(74, 155, 168, 0.4);
}

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

.feature-card p {
    color: var(--text-light);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-video {
    position: sticky;
    top: 100px;
}

.video-title {
    font-size: 1.5rem;
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.video-preview-card {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.video-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.video-preview-card:hover .play-button {
    transform: scale(1.1);
}

.video-preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 74, 95, 0.9) 0%, rgba(74, 155, 168, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-icon {
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-icon svg {
    width: 80px;
    height: 80px;
}

.video-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.play-button {
    transition: var(--transition);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-preview-text {
    text-align: center;
    color: var(--white);
}

.watch-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.facebook-badge {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-lg);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Works/Gallery Section
   ============================================ */
.works {
    padding: 100px 0;
    background: var(--white);
}

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

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

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

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

/* Responsive Works Gallery */
@media (max-width: 768px) {
    .works-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-item {
        aspect-ratio: 16/9;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-color) 100%);
    color: var(--white);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--white);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(74, 155, 168, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(74, 155, 168, 0.3);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

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

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--text-light);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(74, 155, 168, 0.3);
}

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

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow);
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 0;
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
    }

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta-buttons .btn {
        flex: 1;
        max-width: 150px;
    }

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

    .services-slider {
        padding: 0 60px;
        margin: 0 auto;
        position: relative;
    }

    .services-container {
        min-height: 450px;
        width: 100%;
    }

    /* Ensure cards are visible on mobile */
    .service-card {
        width: 100%;
        max-width: 100%;
    }

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

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

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

    .service-card {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-video {
        position: relative;
        top: 0;
    }

    .video-wrapper {
        padding-bottom: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .video-preview-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .watch-text {
        font-size: 1.25rem;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }

    .video-preview-icon {
        font-size: 4rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-slider {
        padding: 0 50px;
        margin: 0 auto;
    }

    .services-container {
        min-height: 400px;
        width: 100%;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .service-card {
        padding: 1.5rem 1rem;
        min-height: 380px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .urgency-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .urgency-badge svg {
        width: 16px;
        height: 16px;
    }

    .feature-card {
        padding: 2rem 1rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .about-stats {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .contact-icon {
        margin-bottom: 0.5rem;
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .video-preview-icon svg {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   Accessibility
   ============================================ */
/* ============================================
   Floating Action Buttons (Mobile)
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    display: none;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    animation: fabFloat 3s ease-in-out infinite;
}

.fab-phone {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    box-shadow: 0 8px 25px rgba(74, 155, 168, 0.4);
    animation: fabPulse 2s ease-in-out infinite;
}

.fab-quote {
    animation-delay: 0.3s;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(45, 134, 89, 0.5);
}

.fab:active {
    transform: scale(0.95);
}

.fab-label {
    position: absolute;
    right: 70px;
    background: var(--dark-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fab:hover .fab-label {
    opacity: 1;
    right: 75px;
}

@keyframes fabFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(74, 155, 168, 0.4), 0 0 0 0 rgba(74, 155, 168, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(74, 155, 168, 0.4), 0 0 0 10px rgba(74, 155, 168, 0);
    }
}

/* ============================================
   Sticky CTA Bar (Mobile)
   ============================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sticky-cta-text strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.sticky-cta-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.sticky-cta-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cta-pulse {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    animation: ctaPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(74, 155, 168, 0.4);
}

.btn-cta-outline {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--dark-teal);
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(74, 155, 168, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(74, 155, 168, 0.6);
    }
}

/* ============================================
   Enhanced Mobile Animations
   ============================================ */
@media (max-width: 768px) {
    .fab-container {
        display: flex;
    }

    .sticky-cta-bar {
        display: block;
    }

    .service-card {
        display: flex;
        flex-direction: column;
        min-height: 400px;
        justify-content: space-between;
    }

    .service-cta {
        margin-top: auto;
    }

    .hero-urgency {
        flex-direction: column;
        align-items: center;
    }

    .urgency-badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Enhanced touch feedback */
    .btn:active,
    .service-btn:active,
    .fab:active {
        transform: scale(0.95);
    }

    /* Better mobile spacing */
    .hero-content {
        padding: 1.5rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Enhanced mobile button sizes */
    .btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
    }

    /* Better touch targets */
    .slider-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }

    /* Service card mobile optimization */
    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* FAB positioning for mobile */
    .fab-container {
        bottom: 90px;
    }

    .sticky-cta-bar.visible ~ .fab-container {
        bottom: 90px;
    }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   Enhanced Service Card Animations
   ============================================ */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card.active {
    animation: cardSlideIn 0.5s ease-out;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ============================================
   Feature Card Enhancements
   ============================================ */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* ============================================
   Contact Form Enhancements
   ============================================ */
.contact-form-wrapper {
    animation: formSlideIn 0.6s ease-out;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
}

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

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

/* ============================================
   Decorative Elements (No Images Needed)
   ============================================ */
.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.3;
    animation: borderGlow 2s ease infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

/* Pattern backgrounds for visual interest */
.services {
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(45, 134, 89, 0.02) 2px,
            rgba(45, 134, 89, 0.02) 4px
        );
    pointer-events: none;
}

.why-choose-us {
    position: relative;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(74, 155, 168, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(45, 134, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

