/* CSS Variables - Modern Design System */
:root {
    --primary-color: #0B0F19;
    --secondary-color: #1A1F2E;
    --tertiary-color: #242B3D;
    --accent-color: #00D084;
    --accent-light: #2DFFAA;
    --accent-dark: #00A968;
    --grass-green: #00B574;
    --emerald: #10B981;
    --text-light: #FFFFFF;
    --text-dark: #1e1e1e;
    --text-gray: #94A3B8;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    --bg-section: #1E293B;
    --bg-card: #334155;
    --border-color: #475569;
    --glass-bg: rgba(15, 23, 42, 0.85);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #00D084 0%, #10B981 100%);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Fade-up animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    min-height: 48px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #00A968 0%, #00D084 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 2px solid rgba(0, 208, 132, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(0, 208, 132, 0.1);
    border-color: rgba(0, 208, 132, 0.5);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header and Navigation - Clean Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all var(--transition-slow), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 208, 132, 0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

.nav {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    min-height: 0;
    position: relative;
}

.logo-link {
    display: inline-block;
    transition: all var(--transition);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    line-height: 0;
    z-index: 10;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: all var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(0, 208, 132, 0.08);
    border-color: rgba(0, 208, 132, 0.2);
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(0, 208, 132, 0.12);
    border-color: rgba(0, 208, 132, 0.3);
    color: var(--accent-light);
}

/* Special styling for contact button */
.nav-link[href="#contact"] {
    background: var(--gradient-accent);
    color: var(--text-light);
    border-color: rgba(0, 208, 132, 0.4);
    font-weight: 600;
}

.nav-link[href="#contact"]:hover {
    background: linear-gradient(135deg, #00A968 0%, #00D084 100%);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

/* Modern Hamburger Menu */
.hamburger-container {
    display: none;
    position: relative;
    cursor: pointer;
    user-select: none;
    order: 3;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.hamburger-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 208, 132, 0.2);
}

.hamburger-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkmark span {
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-container input:checked + .checkmark span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-container input:checked + .checkmark span:nth-child(2) {
    opacity: 0;
}

.hamburger-container input:checked + .checkmark span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide mobile logo on desktop */
.mobile-menu-logo {
    display: none;
}

.mobile-logo-img {
    display: none;
}

/* Hero Section - Modern Design */
.hero {
    padding: 110px 0 100px;
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 208, 132, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
    text-align: center;
}

.feature:hover {
    background: rgba(0, 208, 132, 0.08);
    border-color: rgba(0, 208, 132, 0.2);
    transform: translateY(-2px);
}

.feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Referral Banner */
.referral-banner {
    background: var(--grass-gradient);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.referral-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
    will-change: transform;
}

.referral-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.referral-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 208, 132, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
}

.service-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Service Areas Section */
.service-areas {
    background: var(--bg-section);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-image img {
    width: 100%;
    border-radius: 12px;
}

.areas-list h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.city-column ul {
    list-style: none;
}

.city-column li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-color);
}

/* Gallery Section - Interactive Slideshow */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.slideshow-wrapper {
    position: relative;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-color);
}

.slide-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.slide-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.slide-image:hover img {
    transform: scale(1.05);
}

/* Navigation Arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(76, 175, 80, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-nav:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.slideshow-nav.prev {
    left: 20px;
}

.slideshow-nav.next {
    right: 20px;
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background: var(--primary-color);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
}

/* Responsive Design for Slideshow */
@media (max-width: 768px) {
    .slide-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .slide-image img {
        height: 150px;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slideshow-nav.prev {
        left: 10px;
    }
    
    .slideshow-nav.next {
        right: 10px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .slide-images {
        grid-template-columns: 1fr;
    }
    
    .slide-image img {
        height: 200px;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(0, 208, 132, 0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 208, 132, 0.2);
    background: rgba(30, 41, 59, 0.85);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-icon {
    background: var(--accent-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-light);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Contact Form */
.contact-form-container {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

/* Select dropdown styling */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2300D084' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1em 1em;
    padding-right: 3rem;
    position: relative;
    z-index: 1;
}

.form-group select option {
    background: rgba(30, 41, 59, 0.95);
    color: var(--text-light);
    padding: 0.75rem;
    border: none;
    font-size: 1rem;
}

.form-group select option:checked {
    background: var(--accent-color);
    color: var(--text-light);
}

/* Remove all default focus styles */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.15), var(--shadow-sm);
    transform: translateY(-1px);
    background: rgba(15, 23, 42, 0.95);
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.15), var(--shadow-sm);
    background: rgba(15, 23, 42, 0.95);
}

.btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.4) !important;
    background-color: inherit !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Social Media Section */
.social-media {
    background: var(--bg-section);
    padding: 3rem 0;
    text-align: center;
}

.social-media h3 {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

.social-link i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 3rem 0 1rem;
}

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

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-contact p,
.footer-hours p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0.25rem 1rem;
    }
    
    .logo-link {
        left: 1rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        z-index: 999;
        gap: 2rem;
    }
    
    .mobile-menu-logo {
        position: absolute;
        top: 4rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
    
    .mobile-logo-img {
        height: 180px;
        width: auto;
        transition: all var(--transition);
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(0, 208, 132, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .logo-link::after {
        display: none;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        z-index: 2;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.875rem 1.75rem;
        background: rgba(255, 255, 255, 0.06);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius-lg);
        width: 220px;
        text-align: center;
    }
    
    .nav-link:hover {
        background: rgba(0, 208, 132, 0.15);
        border-color: rgba(0, 208, 132, 0.3);
        transform: translateY(-2px);
    }
    
    /* Mobile contact button styling */
    .nav-link[href="#contact"] {
        background: var(--gradient-accent);
        color: var(--text-light);
        border-color: rgba(0, 208, 132, 0.4);
        font-weight: 600;
    }
    
    .nav-link[href="#contact"]:hover {
        background: linear-gradient(135deg, #00A968 0%, #00D084 100%);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
    }

    .hamburger-container {
        display: block;
        z-index: 1001;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        justify-content: center;
    }

    .about-content,
    .contact-content,
    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .city-column ul {
        font-size: 0.9rem;
    }
    
    .city-column li {
        padding: 0.3rem 0;
    }

    .company-stats {
        justify-content: center;
    }

    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact p,
    .footer-hours p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 80px;
    }

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

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-200%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

/* Smooth scrolling and performance */
html {
    scroll-behavior: smooth;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for content areas */
p, h1, h2, h3, h4, h5, h6, span, li {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Allow selection for form inputs */
input, textarea, select {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

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