/* Enhanced Styles for Improved index.html */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Enhancements */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation Enhancements */
.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Header bleibt kompakt - feste Höhe */
.navbar {
    min-height: auto !important; /* Überschreibt eventuelle Höhenvergrößerungen */
}

.nav-container {
    min-height: 70px; /* Professionelle Header-Höhe für das Logo */
    display: flex;
    align-items: center;
}

/* Logo Styling - Professionelle Größe ohne Überlappung */
.nav-logo .logo {
    height: 4rem; /* Professionelle Größe - keine Überlappung */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 280px; /* Angemessene Breite */
    margin: 0; /* Keine negativen Margins */
    z-index: 10;
    position: relative;
}

.nav-logo a:hover .logo {
    transform: scale(1.05);
}

/* Header bleibt kompakt */
.nav-logo {
    overflow: visible; /* Erlaubt dem Logo über die Header-Grenzen hinauszuragen */
}

/* Mobile Logo Adjustments - Professionelle Größe */
@media (max-width: 768px) {
    .nav-logo .logo {
        height: 3rem; /* Kompakte mobile Größe */
        margin: 0; /* Keine negativen Margins */
    }
}

/* Small Mobile - Kompakte Größe */
@media (max-width: 480px) {
    .nav-logo .logo {
        height: 2.5rem; /* Sehr kompakte Größe für kleine Bildschirme */
        margin: 0; /* Keine negativen Margins */
    }
    
    /* Adjust navbar container for better spacing */
    .nav-container {
        padding: 0 15px;
        min-height: 50px; /* Kompakte Header-Höhe für mobile */
    }
}

/* Extra responsive adjustments */
@media (max-width: 768px) {
    .nav-logo a {
        gap: 0;
    }
}

/* High DPI displays - sharper logo */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.nav-item-special {
    margin-left: 1rem;
    border-left: 1px solid rgba(34, 197, 94, 0.2);
    padding-left: 1rem;
}

.nav-link-login {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Hero Section Enhancements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-trust {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.hero-trust p {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 18px 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-placeholder:hover .hero-overlay {
    opacity: 1;
}

.hero-overlay-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.hero-overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Service Cards */
.service-card.featured {
    position: relative;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    transform: scale(1.02);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.emergency-badge {
    background: #374151;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features i {
    color: #28a745;
    font-size: 0.8rem;
}

.service-card.emergency {
    border: 2px solid #374151;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1f2937;
}

.emergency-contact {
    margin-top: 1rem;
    padding: 10px;
    background: rgba(55, 65, 81, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #371f23;
}

.services-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0f172ae6 0%, #0f172ae6 100%);
    border-radius: 15px;
}

.services-cta h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.services-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Gallery Enhancements */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border: 2px solid #0f172ae6;
    background: #0f172ae6;
    color: #666;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.gallery-item {
    position: relative;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-category {
    display: inline-block;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.gallery-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.gallery-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.gallery-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #22c55e 100%);
    color: white;
    border-radius: 15px;
}

.gallery-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.gallery-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section Enhancements */
.about-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.about-mission {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172ae6 0%, #0f172ae6 100%);
    border-radius: 15px;
    border-left: 4px solid #22c55e;
}

.about-mission h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-mission i {
    color: #ff6b6b;
}

.feature {
    padding: 1rem 0;
    border-bottom: 1px solid #0f172ae6;
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: #28a745;
    font-size: 1.1rem;
    min-width: 20px;
}

.feature div {
    display: flex;
    flex-direction: column;
}

.feature strong {
    color: #2c5aa0;
    margin-bottom: 0.2rem;
}

.feature span {
    font-size: 0.9rem;
    color: #666;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label strong {
    display: block;
    color: #333;
    margin-bottom: 0.2rem;
}

.stat-label span {
    font-size: 0.9rem;
    color: #666;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #ff6b6b;
}

.testimonial blockquote {
    position: relative;
}

.testimonial i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    text-align: right;
}

.testimonial cite strong {
    color: #2c5aa0;
    display: block;
}

.testimonial cite span {
    font-size: 0.9rem;
    color: #666;
}

.certifications h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
}

.cert-badge i {
    color: #28a745;
}

/* Contact Section Enhancements */
.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #0f172ae6;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item.priority {
    border: 2px solid #22c55e;
    background: linear-gradient(135deg, #0f172ae6 0%, #0f172ae6 100%);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172ae6;
    font-size: 1.2rem;
    min-width: 50px;
}

.contact-details h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.2rem;
}

.contact-emergency {
    margin-top: 3rem;
}

.emergency-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.emergency-box h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.emergency-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Form Styles - DARK THEME OVERRIDE */
.contact .contact-form-container {
    background: rgba(15, 23, 42, 0.9) !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
}

.contact .contact-form-container h3 {
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact .form-group {
    margin-bottom: 1.5rem;
}

.contact .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    font-weight: 500;
}

.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.8) !important;
    color: #ffffff !important;
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.contact .form-group input:focus,
.contact .form-group select:focus,
.contact .form-group textarea:focus {
    outline: none;
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3) !important;
    background: rgba(15, 23, 42, 0.9) !important;
}

.contact .form-group input.error,
.contact .form-group select.error,
.contact .form-group textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.contact .form-error {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.contact .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    display: none !important;
}

.contact .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 4px;
    position: relative;
    min-width: 18px;
    margin-top: 2px;
    background: rgba(15, 23, 42, 0.8) !important;
    transition: all 0.3s ease;
}

.contact .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #10b981 !important;
    border-color: #10b981 !important;
}

.contact .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.contact .form-submit {
    text-align: center;
}

.contact .btn-submit {
    position: relative;
    min-width: 200px;
}

.contact .btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.contact .form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-map {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0f172ae6 0%, #0f172ae6 100%);
    border-radius: 15px;
}

.contact-map h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-map p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.area-tag {
    background: #22c55e;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.map-note {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer Enhancements */
.footer {
    position: relative;
}

.footer-main {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-contact a {
    color: #22c55e;
    text-decoration: none;
}

.footer-emergency {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #3498db;
    text-decoration: none;
}

.footer-legal .separator {
    color: #999;
}

.footer-certificates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.cert-item i {
    color: #28a745;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-feature {
        justify-content: center;
    }
    
    .contact .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-certificates {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .service-areas {
        justify-content: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .nav-item-special {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(44, 90, 160, 0.2);
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        text-align: center;
        width: 100%;
    }
}

/* ABSOLUTE OVERRIDE FOR DARK CONTACT FORM - HIGHEST PRIORITY */
#contact .contact-form-container,
section.contact .contact-form-container,
.contact-form-container {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    color: #ffffff !important;
}

#contact .contact-form-container h3,
section.contact .contact-form-container h3,
.contact-form-container h3 {
    color: #ffffff !important;
}

#contact .form-group label,
section.contact .form-group label,
.contact .form-group label,
.form-group label {
    color: #ffffff !important;
}

#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea,
section.contact .form-group input,
section.contact .form-group select,
section.contact .form-group textarea,
.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
    background: rgba(15, 23, 42, 0.8) !important;
    color: #ffffff !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
}

#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder,
section.contact .form-group input::placeholder,
section.contact .form-group textarea::placeholder,
.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

#contact .checkbox-label,
section.contact .checkbox-label,
.contact .checkbox-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

#contact .checkmark,
section.contact .checkmark,
.contact .checkmark {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
}

#contact .form-note,
section.contact .form-note,
.contact .form-note {
    color: rgba(255, 255, 255, 0.7) !important;
}
