/* --- Contact Page Specific Styles --- */

/* 1. Hero Section (Kept consistent) */
.inner-hero {
    position: relative;
    background-image: url('/images/Still.jpg');
    padding: 100px 0;
    color: #fff;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

.breadcrumb-item a {
    color: var(--gold, #c5a065);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* 2. Main Section Background */
.contact-section-page {
    background-color: #fcebd91a;
    /* Subtle warm tint */
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

/* 3. Info Cards (Top 4) */
.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft initial shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 101, 0.15);
    /* Gold glow on hover */
    border-color: rgba(197, 160, 101, 0.3);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fdfbf7, #fff);
    border: 1px solid var(--gold, #c5a065);
    color: var(--gold, #c5a065);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: var(--gold, #c5a065);
    color: #fff;
    transform: rotateY(180deg);
}

.info-card-icon i {
    transition: transform 0.3s;
}

.info-card h4 {
    color: #1a3a60;
    /* Navy */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p,
.info-card a {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s;
}

.info-card a:hover {
    color: var(--gold, #c5a065);
}

/* 4. Form & Map Separated Containers */
.separated-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    /* Equal height */
    border: 1px solid #f1f1f1;
}

.form-container h2 {
    font-size: 1.8rem;
    color: #1a3a60;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.form-container h2::after {
    /* Underline effect */
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gold, #c5a065);
    border-radius: 2px;
}

/* Input Styles */
.form-control {
    background-color: #fcfcfc;
    border: 1px solid #e9e9e9;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--gold, #c5a065);
    box-shadow: 0 0 0 4px rgba(197, 160, 101, 0.1);
}

/* Map Container */
.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(10%);
}

/* Responsive */
@media (max-width: 768px) {
    .info-card {
        margin-bottom: 15px;
    }

    .separated-container {
        padding: 25px;
    }
}