/* Contact Page Redesign */
.contact-form-area {
    background-color: #fcf8e3;
    /* Light Cream/Yellow */
    padding: 50px;
    border-radius: 20px;
}

.contact-form-area .form-title {
    font-size: 24px;
    color: #444;
    margin-bottom: 30px;
    font-family: var(--common-font);
    line-height: 1.4;
}

.contact-form-area .highlight-link {
    color: #fbc50b;
    text-decoration: underline;
    font-weight: bold;
}

.contact-form-styled input,
.contact-form-styled textarea {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    margin-bottom: 0;
    /* Bootstrap handles margin via col classes, but ensuring reset */
}

.contact-form-styled input:focus,
.contact-form-styled textarea:focus {
    outline: none;
    border-color: #fbc50b;
    box-shadow: 0 0 5px rgba(251, 197, 11, 0.2);
}

.send-message-btn {
    background-color: #fbc50b;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    padding: 15px 40px;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.send-message-btn:hover {
    background-color: #000;
    color: #fbc50b;
}

/* Contact Info Cards */
.contact-card {
    background-color: #007d3a;
    border-radius: 0 60px 60px 60px;
    /* Teardrop Shape: Sharp Top-Left */
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h4 {
    font-size: 24px;
    color: #fff;
    font-family: 'Sawarabi Mincho', serif;
    /* Or theme font */
    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-card .icon-circle {
    background-color: #fbc50b;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
    margin-left: 20px;
}

.contact-card .icon-circle i {
    font-size: 24px;
}

.contact-card .icon-circle svg {
    width: 32px;
    height: 32px;
    /* Removed forced stroke/fill:none to support filled icons */
    fill: currentColor;
}

/* Add pattern overlay if needed, for now sticking to flat color */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern-1.png');
    /* Assuming theme has a pattern, otherwise optional */
    opacity: 0.05;
    pointer-events: none;
}

.contact-card h4 {
    font-family: 'Sawarabi Mincho', serif;
}

/* Map Section */
.map-section-full {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.map-section-full .map-container {
    height: 500px;
    /* Adjusted height */
    width: 100%;
}

.map-section-full iframe {
    display: block;
}