/* DARK PROFESSIONAL WEBSITE - PERFECT CONTRAST */

/* Logo - Professional Size */
.logo {
    border: none !important;
    background: none !important;
    height: 4rem !important; /* Normal professional size */
    width: auto !important;
    max-width: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.4)) brightness(1.2) !important;
}

/* DARK PROFESSIONAL NAVIGATION */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    z-index: 999 !important;
    padding: 0.75rem 0 !important;
}

.nav-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 2rem !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.25rem !important;
    background: rgba(16, 185, 129, 0.15) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 25px !important;
    color: #ffffff !important; /* White text for dark background */
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    background: rgba(16, 185, 129, 0.3) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

.nav-link i {
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
    color: #10b981 !important;
}

.nav-link:hover i {
    opacity: 1 !important;
    color: #ffffff !important;
}

/* DARK PROFESSIONAL HERO SECTION */
.hero {
    min-height: 80vh !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #374151 100%) !important;
    display: flex !important;
    align-items: center !important;
    padding: 6rem 0 3rem !important;
    position: relative !important;
    color: #ffffff !important; /* Ensure text is white */
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 211, 153, 0.15) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

.hero-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    color: #ffffff !important; /* White text */
    font-weight: 700 !important;
}

.hero-title .highlight {
    color: #10b981 !important; /* Green highlight */
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5) !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Light white */
    margin-bottom: 2rem !important;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background: rgba(16, 185, 129, 0.2) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 25px !important;
    color: #ffffff !important; /* White text */
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
}

.hero-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.hero-feature {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 20px !important;
    color: #ffffff !important; /* White text */
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

.hero-feature i {
    color: #10b981 !important; /* Green icon */
    font-size: 1rem !important;
}

/* HERO SECTION WITHOUT IMAGE - CENTERED CONTENT */
.hero-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.hero-text {
    max-width: 800px !important;
}

/* HERO STATS - HORIZONTAL LAYOUT */
.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
    max-width: 600px !important;
}

.hero-stat {
    text-align: center !important;
    color: #ffffff !important;
}

.hero-stat-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #10b981 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5) !important;
}

.hero-stat-label {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

/* CONTACT SECTION - DARK THEME */
.contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #374151 100%) !important;
    color: #ffffff !important;
}

.contact h3 {
    color: #ffffff !important;
}

.contact p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-map h3 {
    color: #ffffff !important;
}

.contact-map p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.map-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

.area-tag {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 15px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.area-tag:hover {
    background: rgba(16, 185, 129, 0.3) !important;
    color: #ffffff !important;
}

.service-areas {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin: 1.5rem 0 !important;
    justify-content: center !important;
}

.hero-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
}

/* DARK PROFESSIONAL SECTIONS - EVERYWHERE DARK */
.services, .gallery, .about, .contact {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #374151 100%) !important; /* Dark everywhere */
    color: #ffffff !important; /* White text everywhere */
    position: relative !important;
}

.services::before, .gallery::before, .about::before, .contact::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.08) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

/* FIXED BACKGROUND IMAGES - NO SCROLLING */
.hero-img, .gallery-img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: brightness(1.1) contrast(1.1) !important;
    position: fixed !important; /* Fixed position */
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: -1 !important; /* Behind content */
}

/* Hero image specific */
.hero-img {
    position: relative !important; /* Normal positioning in hero */
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    z-index: 1 !important;
}

/* Gallery images - fixed background effect */
.gallery-image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    height: 300px !important;
}

.gallery-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    transition: transform 0.5s ease !important;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05) !important; /* Subtle zoom on hover */
}

.section-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.section-badge {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.5rem 1.5rem !important;
    background: rgba(16, 185, 129, 0.2) !important; /* More visible on dark */
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 1rem !important;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important; /* White text on dark background */
    font-weight: 700 !important;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem) !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important; /* Light white text */
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* DARK CARDS WITH GOOD CONTRAST */
.service-card, .gallery-item {
    background: rgba(255, 255, 255, 0.05) !important; /* Semi-transparent dark cards */
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important; /* White text on dark cards */
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-card:hover, .gallery-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
    background: rgba(16, 185, 129, 0.1) !important;
}

.service-card h3 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #ffffff !important; /* White headings */
    margin-bottom: 1rem !important;
}

.service-card p {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Light white text */
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* ABOUT SECTION DARK STYLING - COMPLETE */
.about-intro, .about-mission p, .about-text p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.about-mission h3, .about h3, .about-text h3 {
    color: #ffffff !important;
}

.about-text .section-header h2 {
    color: #ffffff !important;
}

.feature strong {
    color: #ffffff !important;
}

.feature span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* TESTIMONIAL AND CERTIFICATIONS - DARK THEME */
.testimonial {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    backdrop-filter: blur(10px) !important;
}

.testimonial blockquote p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: italic !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.testimonial cite strong {
    color: #ffffff !important;
}

.testimonial cite span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.certifications h4 {
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.cert-badge {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.cert-badge span {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* STATS CONTAINER DARK */
.stats-container {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    backdrop-filter: blur(10px) !important;
}

.stat-label strong {
    color: #ffffff !important;
}

.stat-label span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.stat-number {
    color: #10b981 !important;
}

.stat-number {
    color: #10b981 !important;
}

.stat-label strong {
    color: #ffffff !important;
}

.stat-label span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* CONTACT SECTION DARK STYLING */
.contact-intro, .contact-details p, .contact-details h4 {
    color: #ffffff !important;
}

.contact-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    backdrop-filter: blur(10px) !important;
}

.emergency-box {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
}

.emergency-box h4, .emergency-box p {
    color: #ffffff !important;
}

/* CONTACT SECTION - COMPLETE DARK STYLING */
.contact h3, .contact-info h3, .contact-form-container h3, .contact-map h3 {
    color: #ffffff !important;
}

.contact-intro, .contact p, .map-note {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-details h4 {
    color: #ffffff !important;
}

.contact-details p, .contact-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-details p a {
    color: #10b981 !important;
}
.scroll-indicator {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.scroll-mouse {
    display: none !important;
    visibility: hidden !important;
}

/* FORM STYLING FOR DARK THEME - COMPLETE DARK */
.contact-form-container {
    background: rgba(15, 23, 42, 0.9) !important; /* Much darker background */
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.contact-form-container h3 {
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.form-group label {
    color: #ffffff !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    font-size: 0.95rem !important;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(15, 23, 42, 0.8) !important; /* Dark input backgrounds */
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3) !important;
    outline: none !important;
    background: rgba(15, 23, 42, 0.9) !important;
}

/* Contact content grid dark styling */
.contact-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
    position: relative !important;
    z-index: 2 !important;
}

/* ALL contact items dark */
.contact-item {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.contact-item:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
    transform: translateY(-2px) !important;
}

.contact-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    font-size: 1.2rem !important;
}

/* Form row styling */
.form-row {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
}

.form-group {
    flex: 1 !important;
    margin-bottom: 1rem !important;
}

/* Checkbox styling for dark theme */
.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
}

.checkmark {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 4px !important;
    background: rgba(15, 23, 42, 0.8) !important;
    position: relative !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

input[type="checkbox"]:checked + .checkmark {
    background: #10b981 !important;
    border-color: #10b981 !important;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: bold !important;
}

input[type="checkbox"] {
    display: none !important;
}

/* Form submit button area */
.form-submit {
    text-align: center !important;
    margin-top: 2rem !important;
}

.form-note {
    margin-top: 1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

/* IMPROVED MOBILE DESIGN */
@media (max-width: 768px) {
    .logo {
        height: 3rem !important;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1rem !important;
        transform: translateY(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 998 !important;
        border-top: 1px solid rgba(16, 185, 129, 0.3) !important;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
    }
    
    .nav-link {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
        text-align: center !important;
    }
    
    /* Mobile Hero without image */
    .hero-content {
        text-align: center !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
    }
    
    .hero-features {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-feature {
        flex: 1 1 auto !important;
        min-width: 140px !important;
        font-size: 0.8rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Mobile Hero Stats - 2x2 Grid */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
        max-width: 100% !important;
    }
    
    .hero-stat-number {
        font-size: 1.5rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.8rem !important;
    }
    
    /* Mobile Sections */
    .services, .gallery, .about, .contact {
        padding: 3rem 0 !important;
    }
    
    .service-card, .gallery-item {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem) !important;
        padding: 0 1rem !important;
    }
    
    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .gallery-image {
        height: 250px !important;
    }
    
    /* Mobile Contact */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .contact-methods {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-certificates {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        width: 30px !important;
        height: 24px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 999 !important;
    }
    
    .hamburger .bar {
        width: 100% !important;
        height: 3px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        margin: 3px 0 !important;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

/* DARK PROFESSIONAL FOOTER */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: #f1f5f9 !important;
    padding: 4rem 0 2rem !important;
}

.footer h3, .footer h4 {
    color: #ffffff !important;
}

.footer p, .footer span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a {
    color: #10b981 !important;
    transition: color 0.3s ease !important;
}

.footer a:hover {
    color: #34d399 !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .logo {
        height: 3rem !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }
    
    .services, .gallery, .about, .contact {
        padding: 3rem 0 !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        bottom: -1rem !important;
    }
}

/* ANIMATIONS */
.hero-title, .hero-subtitle, .hero-badge {
    animation: fadeInUp 0.8s ease forwards !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
