/* Base styles (desktop first) */
body {
    background-color: #f8f9fa;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    min-height: 100vh;
}

/* Header Section */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #00000041;
    background-color: transparent;
    color: #ffffff;
    padding: 10px;
}

.navbar-brand,
.nav-link,
.navbar-text {
    color: #ffffff !important;
}

.nav-link:hover {
    color: #cccccc !important;
}

/* Hero Section */
.hero-section {
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 24px #0002;
    display: flex;
    align-items: stretch;
}

.hero-image-wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) blur(0px);
}

.hero-text-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40vh;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #000a;
    margin: 0;
    text-transform: uppercase;    
}

/* Contact Container */
.contact-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-section h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 600;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* Form Controls */
.form-floating {
    margin-bottom: 20px;
}

.form-floating > .form-control {
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-floating > textarea.form-control {
    height: 150px;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #666;
}

.form-floating > .form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.1);
}

.form-floating > .form-control:focus + label,
.form-floating > .form-control:not(:placeholder-shown) + label {
    color: #4a90e2;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Submit Button */
.submit-btn {
    background-color: #4a90e2;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-section h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 24px;
    color: #4a90e2;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #357abd;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-container {
        padding: 40px 20px;
    }
    
    .contact-form-section,
    .contact-info-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-form-section,
    .contact-info-section {
        padding: 20px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
}

