/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES - SILVER MOON PARITY
   ========================================================================== */

.contact-page-body {
    background-color: #fdfaf6; /* Uniform Cream Background */
}

/* Hero Banner Styles (same as Cruises page) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 29, 40, 0.45); /* Dark overlay */
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    padding: 0 20px;
}

.page-hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffd700; /* Gold */
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.page-hero h1 {
    font-family: var(--primary-font);
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

.page-hero h1 em {
    font-style: italic;
    color: #ffd700;
}

.page-hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 20px auto 0 auto;
}

/* Wave transitions */
.wave-transition-container {
    line-height: 0;
    width: 100%;
    margin-top: -1px;
}

.wave-transition {
    width: 100%;
    height: 50px;
    display: block;
}

.fill-cream {
    fill: #fdfaf6;
    background-color: transparent;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0 100px 0;
    background-color: #fdfaf6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

/* Contact Details Info List (Left Column) */
.contact-details-wrap {
    padding-top: 10px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-link-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.contact-link-item:hover {
    color: #a4823c;
}

.item-icon {
    font-size: 24px;
    color: #a4823c;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(164, 130, 60, 0.08);
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.contact-link-item:hover .item-icon {
    background: #a4823c;
    color: #ffffff;
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-text .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.item-text .value {
    font-size: 16px;
    color: #071d28;
    line-height: 1.5;
}

/* WhatsApp popping detail */
.contact-link-item.whatsapp:hover {
    color: #25d366;
}

.contact-link-item.whatsapp:hover .item-icon {
    background: #25d366;
    color: #ffffff;
}

/* Form Container (Right Column) */
.contact-form-container {
    background: transparent;
}

.contact-page-form .form-group-wrap {
    margin-bottom: 35px;
}

.contact-page-form label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a4823c;
    display: block;
    margin-bottom: 6px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(164, 130, 60, 0.2);
    padding: 10px 0;
    font-size: 15px;
    background: transparent;
    color: #071d28;
    outline: none;
    transition: border-color 0.3s;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    border-color: #a4823c;
}

.form-submit-btn {
    background: #071d28;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.form-submit-btn:hover {
    background: #a4823c;
}

.form-submit-btn:active {
    transform: scale(0.98);
}

/* Success status alert box */
.form-status-alert {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f4f7f9;
    border: 1px solid #e5e9ec;
    border-radius: 4px;
    padding: 20px;
    margin-top: 25px;
}

.success-icon {
    font-size: 20px;
    color: #a4823c;
    line-height: 1;
}

.alert-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #071d28;
    margin: 0 0 5px 0;
}

.alert-content p {
    font-size: 13.5px;
    color: #555;
    margin: 0;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLES)
   ========================================================================== */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .page-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding-bottom: 60px;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .page-hero h1 {
        font-size: 34px;
    }
    
    .contact-info-list {
        gap: 20px;
    }
    
    .contact-link-item {
        gap: 15px;
    }
    
    .item-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
