/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

/* Contact Section */
.welcome-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    background-repeat: no-repeat !important;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.welcome-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

.welcome-message {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.welcome-description {
    font-size: 18px;
    color: #ddd;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Content Section______________________ */
.content-section {
    background: rgb(36, 36, 36);
}

.content-section h3 {
    color: var(--deep-red);
    font-size: 24px;
    margin-bottom: 20px;
}

.content-section h4 {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.content-section p {
    color: #555;
    line-height: 1.6;
}

.content-section a {
    color: var(--deep-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

/* Contact Form */
.content-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-section input,
.content-section textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #333;
}

.content-section input:focus,
.content-section textarea:focus {
    outline: none;
    border-color: var(--deep-red);
    box-shadow: 0 0 0 3px rgba(151, 0, 0, 0.1);
}

.content-section input::placeholder,
.content-section textarea::placeholder {
    color: #999;
    opacity: 0.8;
}

.content-section textarea {
    resize: none;
}

.content-section button {
    padding: 12px;
    background: var(--deep-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-section button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(151, 0, 0, 0.3);
}

.content-section button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-section {
        min-height: 300px;
        background-size: cover !important;
    }
    
    .content-section {
        padding: 20px 15px !important;
    }
    
    .content-section .container {
        padding: 0 !important;
    }
    
    .content-section > div > div[style*="grid-template-columns"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .welcome-message {
        font-size: 36px;
    }
    
    .welcome-description {
        font-size: 16px;
    }
    
    .content-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .content-section input,
    .content-section textarea {
        font-size: 16px;
        padding: 10px;
    }
    
    .content-section button {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 15px 10px !important;
    }
    
    .welcome-message {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .welcome-description {
        font-size: 14px;
    }
    
    .content-section h3 {
        font-size: 18px;
    }
}
