/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 2rem 0;
}

/* Contact Info Card */
.contact-card {
    background-color: #1E2A38;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(65, 85, 111, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #41556f 0%, #2c3e50 100%);
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-header p {
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 85, 111, 0.08);
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    background: linear-gradient(145deg, #41556f 0%, #2c3e50 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(65, 85, 111, 0.2);
}

.contact-text h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text p {
    color: #e0e0e0;
    margin: 0;
}

.map-section {
    padding: 60px 0;
  
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Form Card */
.form-card {
    background-color: #1E2A38;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid rgba(65, 85, 111, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #41556f 0%, #2c3e50 100%);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: #e0e0e0;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
}

.input-wrapper textarea + i {
    top: 1.5rem;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Add styles for select options */
.form-control option {
    background-color: #1E2A38;
    color: #ffffff;
    padding: 10px;
}

.form-control:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    padding-top: 1rem;
    min-height: 120px;
    resize: vertical;
}

.privacy-group {
    margin: 1.5rem 0;
    padding: 1rem;
   
    border-radius: 8px;
   
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #41556f;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #41556f;
}

.checkbox-wrapper label {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.checkbox-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(145deg, #41556f 0%, #2c3e50 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(65, 85, 111, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #2c3e50 0%, #41556f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(65, 85, 111, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #41556f;
    border: 1px solid rgba(65, 85, 111, 0.2);
}

.btn-outline:hover {
    background: #41556f;
    color: white;
    border-color: #41556f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-card,
    .form-card {
        padding: 1.5rem;
    }
    
    .contact-header h3,
    .form-header h3 {
        font-size: 1.5rem;
    }
} 