/* Contact page specific styles */
.contact-hero {
    background-color: #F5F0E6;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2F4644;
}

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

/* Contact Hero Section */
/* .contact-hero {
    padding: 80px 0;
} */

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-content {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-content .container {
    max-width: 600px;
    margin-left: auto;
    padding-right: 60px;
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    color: #2F4644;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-image {
    height: 100%;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-book {
    background-color: #2F4644;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #243635;
}

.phone-number {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.number {
    font-size: 1.2rem;
    color: #2F4644;
    font-weight: 500;
}

/* Contact Information Section */
.contact-info {
    padding: 100px 0 0 0;
    margin-bottom: 0;
}

.contact-info .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Ensure last section has no bottom padding */
section:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Ensure contact form section has no bottom spacing */
.contact-form-section .form-container {
    margin-bottom: 0;
}

/* Remove any gap between last section and footer */
body > section:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body > section:last-of-type > * {
    margin-bottom: 0 !important;
}

.info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-content h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #2F4644;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-content > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-details h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-details p {
    color: #2F4644;
    line-height: 1.8;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .container {
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero-content .container {
        padding-right: 0;
        margin: 0 auto;
        text-align: center;
    }

    .contact-actions {
        justify-content: center;
        flex-direction: column;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

    .nav-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background-color: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-cta .enquiry-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        background-color: #F4C150;
        color: #2F4644;
        border-radius: 8px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border: none;
    }

    body {
        padding-bottom: 0;
    }

    .main-nav {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        margin-top: 20px;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-image {
        height: 300px;
    }

    .nav-cta .enquiry-btn {
        padding: 12px 15px;
        font-size: 15px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Add more contact page specific styles */
.contact-form-section {
    padding: 80px 0 0 0;
    background-color: #f4f6fa;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
}

.contact-form-section .form-container {
    margin-bottom: 0 !important;
}

.contact-form-section .form-container *:last-child {
    margin-bottom: 0 !important;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.form-container h2 {
    font-size: 2rem;
    color: #2F4644;
    margin-bottom: 40px;
    line-height: 1.3;
}

.form-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2F4644;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked {
    border-color: #2F4644;
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #2F4644;
    border-radius: 50%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fc;
    font-size: 1rem;
    color: #2F4644;
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #2F4644;
    background: white;
}

textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2F4644;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.submit-btn:hover {
    background: #243635;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
        margin-bottom: 0;
    }
    
    .contact-form-section {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .radio-group {
        flex-wrap: wrap;
        gap: 15px;
    }
}