@charset "utf-8";
        body {
            margin: 0;
            background-color: #e3e3db;
            font-family: 'Gentium Plus', serif;
            overflow-x: hidden; 
        }

        .contact-section {
            padding: 80px 10%;
            max-width: 2200px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .contact-header h1 {
            font-family: 'Lora', serif;
            font-size: 40px;
            font-style: italic;
            font-weight: 700;
            display: inline-block;
            position: relative;
            margin: 0;
        }

        .contact-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #000;
        }

        .contact-container {
            display: flex;
            justify-content: space-between;
            gap: 150px;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            margin-top: 65px; 
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            font-size: 1.3rem;
            font-family: 'Alegreya', serif;
            font-weight: 400;
            font-style: normal;
        }

        .contact-icon-img {
            width: 24px; 
            height: auto;
            margin-right: 15px;
            display: inline-block;
        }

        .map-placeholder {
            margin-top: 30px;
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .enquiry-form-container {
            flex: 1;
            min-width: 350px;
        }

        .enquiry-form-container h2 {
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            background-color: #fff;
            font-family: 'Gentium Plus', serif;
            box-sizing: border-box;
        }

        .form-group textarea {
            height: 120px;
            resize: none;
        }

        .submit-container {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn {
            background-color: #36168F;
            color: white;
            border: none;
            padding: 12px 80px;
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
            border-radius: 10px;
        }

        .submit-btn:hover {
            background-color: #E3E3DB;
            color: #36168f;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none; 
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(3px);
        }

        .modal-content {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.3s ease-in-out;
        }

        .modal-overlay.active { display: flex; }
        .modal-overlay.active .modal-content { transform: scale(1); opacity: 1; }

        .modal-icon {
            font-size: 50px;
            color: #36168F;
            margin-bottom: 15px;
        }

        .modal-content h3 { margin-top: 0; font-family: 'Lora', serif; font-style: italic; }
        
        .close-popup-btn {
            margin-top: 20px;
            background: #36168F;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .contact-footer-text {
            text-align: center;
            margin-top: 80px;
            font-family: 'Gentium Plus', serif;
            font-size: 1.4rem;
            font-style: italic;
            font-weight: 700;
            line-height: 1.4;
        }

        .reveal {
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.17, 0.55, 0.55, 1);
        }

        .reveal-left { transform: translateX(-80px); }
        .reveal-right { transform: translateX(80px); }
        .reveal-up { transform: translateY(80px); }

        .reveal.active {
            opacity: 1;
            transform: translate(0, 0);
        }

        @media (max-width: 768px) {
            .contact-container { flex-direction: column; }
            .contact-info { margin-top: 0; }
            .submit-btn { width: 100%; }
            .reveal-left, .reveal-right { transform: translateY(40px); } 
        }

@media (max-width: 1024px) {
    .contact-container {
        gap: 50px; 
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 5%;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-header h1 {
        font-size: 30px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-info, .enquiry-form-container {
        width: 100%;
        min-width: 100%;
    }

    .contact-info {
        margin-top: 0;
    }

    .info-item {
        font-size: 1.1rem;
        justify-content: center;
    }

    .map-placeholder {
        height: 250px;
    }

    .submit-btn {
        padding: 12px 0;
        width: 100%; 
    }

    .contact-footer-text {
        font-size: 1.1rem;
        margin-top: 50px;
    }
}
