/* CONTACT SECTION */

.contact-section {
    padding: 160px 4% 100px;
    background: radial-gradient(circle at top right, #faf6ee, #ffffff 70%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Add a beautiful luxury noise overlay or blurred circle */
.contact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(198, 167, 105, 0.08);
    filter: blur(100px);
    pointer-events: none;
}

/* Allow footer to be shown, remove the display none */
footer, .footer {
    display: block !important;
}

/* HEADER */

.contact-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.contact-header span {
    color: #b38b2d; /* Gold */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 15px;
}

.contact-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: #013220; /* Dark Green */
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-header p {
    color: rgba(1, 50, 32, 0.7); /* Dark green muted text */
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* CONTAINER */

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* INFO CARD GROUP */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 35px;
    border: 1px solid rgba(198, 167, 105, 0.25); /* Gold border */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(1, 50, 32, 0.04);
}

.info-card i {
    font-size: 28px;
    color: #b38b2d; /* Gold */
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    color: #013220; /* Dark Green */
    font-size: 15px;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.info-card p,
.info-card a {
    color: rgba(1, 50, 32, 0.7);
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: #b38b2d;
}

.info-card:hover {
    border-color: rgba(198, 167, 105, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1, 50, 32, 0.08);
    background: #ffffff;
}

/* FORM styling */

.contact-form {
    background: #ffffff;
    padding: 40px;
    border: 1px solid rgba(198, 167, 105, 0.25); /* Gold border */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(1, 50, 32, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #013220; /* Dark green for label */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(1, 50, 32, 0.15);
    background: #faf8f2; /* Soft beige input background */
    color: #013220;
    font-family: inherit;
    transition: var(--transition);
    font-size: 14px;
    border-radius: 8px;
}

.form-group textarea {
    min-height: 140px;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(1, 50, 32, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b38b2d; /* Gold focus border */
    background: #ffffff;
    box-shadow: 0 0 15px rgba(198, 167, 105, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #013220; /* Dark Green */
    color: #f6e2b3; /* Gold text */
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0;
    font-size: 13px;
    border-radius: 8px;
}

.submit-btn:hover {
    background: #b38b2d; /* Gold hover */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 167, 105, 0.3);
}

/* RESPONSIVE LAYOUTS */

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 140px 5% 80px;
        background: #faf8f2;
    }
    
    .contact-header {
        margin-bottom: 35px;
    }
    
    .contact-header h1 {
        font-size: clamp(30px, 8vw, 42px);
    }
    
    .contact-header p {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .submit-btn {
        font-size: 13px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 120px 5% 60px;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
}