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

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Contact Section */
.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1200&h=600&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffc107, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ddd;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Section Titles */
.section-title {
    color: #ffc107;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffc107;
}

/* Contact Information */
.contact-info {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon .fa {
    font-size: 1.2rem;
    color: #121212;
}

.contact-details h4 {
    color: #ffc107;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #ddd;
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
}

/* Social Media Section */
.social-section {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
}

.social-title {
    color: #ffc107;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #ffc107;
    color: #121212;
    transform: translateY(-3px);
    border-color: #ffc107;
}

.social-link .fa {
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-container {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-subtitle {
    color: #ddd;
    margin-bottom: 30px;
    text-align: left;
    font-size: 1rem;
}

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

.form-label {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background-color: #2d2d2d;
    color: #fff;
    border: 1px solid #444;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    background-color: #2d2d2d;
    color: #fff;
}

.form-control::placeholder {
    color: #888;
}

/* Custom Select Styling */
select.form-control {
    appearance: none;
    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='%23ffc107' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
}

/* Checkbox Styling */
.form-check-input {
    background-color: #2d2d2d;
    border: 1px solid #444;
}

.form-check-input:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

.form-check-label {
    color: #ddd;
    font-size: 0.9rem;
}

/* Button Styling */
.btn-send {
    background: linear-gradient(45deg, #ffc107, #ff6b00);
    border: none;
    color: #121212;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    color: #121212;
}

/* ===== SOLUTION 2 MAP SECTION ===== */
.map-container {
    position: relative;
    height: 500px;
}

/* Google Maps Embed */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Directions Overlay */
.directions-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 30, 30, 0.95);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ffc107;
    max-width: 320px;
    backdrop-filter: blur(10px);
}

.directions-icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.directions-content h3 {
    color: #ffc107;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.4rem;
}

.address {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* Directions Buttons */
.directions-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-directions {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #ff6b00);
    color: #121212;
    border: none;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: #121212;
}

.btn-outline-warning {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.btn-outline-warning:hover {
    background: #ffc107;
    color: #121212;
    transform: translateY(-2px);
}

/* Contact Info on Map */
.contact-info-map {
    text-align: center;
}

.contact-info-map p {
    color: #ddd;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info-map .fa {
    color: #ffc107;
    width: 16px;
}

/* Footer */
.footer-main {
    background-color: #0d0d0d;
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer-main p {
    margin: 5px 0;
    color: #ddd;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-details p {
        text-align: center;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    /* Mobile Map Styles */
    .map-container {
        height: 400px;
    }
    
    .directions-overlay {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .directions-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-directions {
        flex: 1;
        min-width: 140px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-info,
    .social-section {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .directions-buttons {
        flex-direction: column;
    }
    
    .btn-directions {
        width: 100%;
    }
}

/* Loading State for Map */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #1e1e1e;
}

.map-loading .spinner-border {
    color: #ffc107;
}