/* ==========================================
   GENERAL STUFF (APPLIES TO WHOLE SITE)
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #93afd0;
    color: white;
}

.btn-primary:hover {
    background: #7a9bc0;
    transform: translateY(-2px);
}

.btn-dark {
    background: #000;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background: #333;
    transform: scale(1.05);
}

.btn-white {
    background: white;
    color: #000;
    border: 2px solid white;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* ==========================================
   CONTACT PAGE (contact.html)
   ========================================== */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: clamp(400px, 50vh, 600px);
    padding-top: clamp(80px, 15vh, 140px);
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%), url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 4px solid #93afd0;
}

.contact-hero-overlay {
    width: 100%;
}

.contact-hero .container {
    max-width: 800px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 18px;
    color: white;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.contact-hero-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-hero-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-hero-detail svg {
    color: #93afd0;
    flex-shrink: 0;
}

.contact-hero-detail span {
    font-size: 15px;
    color: white;
    font-weight: 600;
}

/* Section 1 - Contact Form (White Background) */
.contact-section1 {
    padding: 80px 0;
    background: #fff;
}

.contact-section1-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.contact-section1-form h3 {
    font-size: 26px;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.contact-section1-form .form-group {
    margin-bottom: 20px;
}

.contact-section1-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 8px;
}

.contact-section1-form .form-group input,
.contact-section1-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.contact-section1-form .form-group input:focus,
.contact-section1-form .form-group textarea:focus {
    outline: none;
    border-color: #93afd0;
    box-shadow: 0 0 0 3px rgba(147, 175, 208, 0.1);
}

.contact-section1-form .form-group textarea {
    resize: vertical;
}

/* ==========================================
   MOBILE & TABLET ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-hero-details {
        flex-direction: column;
        gap: 20px;
    }
}
