/* ====== CONTACT PAGE SPECIFIC STYLES ====== */
:root {
    --primary-blue: #2c3e50;
    --dark-blue: #1a252f;
    --light-blue: #3498db;
    --accent-gold: #f1c40f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #343a40;
    --success-green: #28a745;
    --error-red: #dc3545;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --border-radius-lg: 25px;
}

/* ====== ANIMATION BASE CLASSES ====== */
[data-animate] {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    visibility: visible;
}

/* Slide Down Animation */
[data-animate="slide-down"].animated {
    animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Up Animation */
[data-animate="slide-up"].animated {
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Left Animation */
[data-animate="slide-left"].animated {
    animation: slideLeft 0.8s ease forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide Right Animation */
[data-animate="slide-right"].animated {
    animation: slideRight 0.8s ease forwards;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Zoom In Animation */
[data-animate="zoom-in"].animated {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Grow and Turn Animation */
[data-animate="grow-turn"].animated {
    animation: growTurn 0.8s ease forwards;
}

@keyframes growTurn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Bounce In Animation */
[data-animate="bounce-in"].animated {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flip In Animation */
[data-animate="flip-in"].animated {
    animation: flipIn 0.8s ease forwards;
    transform-origin: center;
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Fade Up Animation */
[data-animate="fade-up"].animated {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(241, 196, 15, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0);
    }
}

/* ====== CONTACT HERO SECTION ====== */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.5)), 
                url('imgs/hero-section/2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }
}

.hero-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.52) 0%, rgba(26, 37, 47, 0.7) 100%);
    z-index: 1;
}

.hero-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: heroWipe 8s infinite linear;
    pointer-events: none;
    z-index: 2;
}

@keyframes heroWipe {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-main-title {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
    z-index: 3;
    position: relative;
    animation: titleFadeIn 1.5s ease forwards;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    font-weight: 300;
    animation: subtitleFadeIn 1.5s ease 0.5s forwards;
    opacity: 0;
}

@keyframes subtitleFadeIn {
    to {
        opacity: 1;
    }
}

/* ====== CONTACT INFO SECTION ====== */
.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    transform: rotate(360deg) scale(1.1);
    color: var(--text-dark);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-info-card a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--accent-gold);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 2px solid var(--primary-blue);
    margin-top: 15px;
}

.contact-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.3);
    border-color: var(--primary-blue);
}

/* ====== CONTACT FORM SECTION ====== */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.5)), 
                url('imgs/gallery/4.png') center/cover no-repeat fixed;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-form-section {
        background-attachment: scroll;
    }
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Form Intro Styling */
.form-intro {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-intro h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.form-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.form-intro p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(241, 196, 15, 0.2);
    transform: translateX(10px);
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    min-width: 25px;
}

.feature span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Container Styling */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 20px 20px 20px 55px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    color: var(--text-dark);
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.input-group textarea {
    min-height: 180px;
    resize: vertical;
    padding-top: 25px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.15);
    transform: translateY(-5px);
}

.input-group label {
    position: absolute;
    top: 20px;
    left: 55px;
    font-size: 1.1rem;
    color: var(--dark-gray);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: left top;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:not([value=""]) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-35px) scale(0.85);
    color: black;
    font-weight: 700;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.input-group input:focus ~ i,
.input-group select:focus ~ i,
.input-group textarea:focus ~ i {
    color: var(--accent-gold);
    transform: translateY(-50%) scale(1.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-group:hover {
    background: rgba(241, 196, 15, 0.2);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.checkbox-group label {
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
}

.submit-btn {
    grid-column: 1 / -1;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.4);
    border-color: var(--primary-blue);
}

.submit-btn:active {
    transform: translateY(-4px) scale(1.02);
}

.loading-spinner {
    display: none;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .loading-spinner {
    display: block;
}

.submit-btn.loading span,
.submit-btn.loading i:first-child {
    display: none;
}

.form-note {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.form-note i {
    color: var(--accent-gold);
    margin-right: 8px;
}

/* Form Validation Styles */
.input-group.error input,
.input-group.error select,
.input-group.error textarea {
    border-color: var(--error-red);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.input-group.error i {
    color: var(--error-red);
    animation: pulseError 0.5s ease;
}

@keyframes pulseError {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.error-message {
    color: var(--error-red);
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-group.error .error-message {
    display: block;
}

/* ====== MAP SECTION ====== */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s ease;
}

.map-wrapper:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.map-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px;
    background: var(--white);
}

@media (max-width: 576px) {
    .map-actions {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }
}

.map-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-decoration: none;
}

.map-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.3);
}

/* ====== FAQ SECTION ====== */
.contact-faq-section {
    padding: 120px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.5)), 
                url('imgs/gallery/1.png') center/cover no-repeat fixed;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-faq-section {
        background-attachment: scroll;
    }
}

.contact-faq-section .section-title {
    color: var(--white);
}

.contact-faq-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.faq-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.2), transparent);
    transition: left 0.7s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: var(--light-gray);
    padding-left: 40px;
}

.faq-question i {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) scale(1.2);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    background: var(--white);
    transform-origin: top;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.view-more-btn i:first-child {
    font-size: 1.4rem;
}

.view-more-btn i:last-child {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i:last-child {
    transform: translateX(5px);
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 768px) {
    .contact-hero {
        height: 60vh;
        min-height: 350px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .contact-faq-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        gap: 40px;
    }
    
    .form-intro,
    .form-container {
        padding: 35px 25px;
    }
    
    .form-intro h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .view-more-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 18px 15px 18px 50px;
        font-size: 1rem;
    }
    
    .input-group label {
        left: 50px;
        font-size: 1rem;
    }
    
    .input-group i {
        left: 15px;
        font-size: 1.2rem;
    }
    
    .feature {
        padding: 12px;
    }
    
    .feature i {
        font-size: 1.1rem;
    }
    
    .feature span {
        font-size: 1rem;
    }
}




/* ====== QUICK FIX FOR MOBILE MENU VISIBILITY ====== */
@media (max-width: 992px) {
    /* Make sure navbar appears properly when active */
    .navbar.active {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        z-index: 999999 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 40px 20px !important;
        overflow-y: auto !important;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1) !important;
        border-top: 3px solid var(--accent-gold) !important;
    }
    
    /* Mobile menu slide-in animation */
    .navbar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar.active {
        transform: translateX(0);
    }
    
    /* Ensure nav-links are properly styled */
    .navbar.active .nav-links {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        padding: 0 !important;
    }
    
    .navbar.active .nav-link {
        color: #2c3e50 !important;
        width: 100% !important;
        text-align: left !important;
        padding: 15px 25px !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        font-weight: 300 !important; /* Changed from 600 to 300 (light) */
        border-left: 4px solid transparent !important;
        background: transparent !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .navbar.active .nav-link:hover {
        background: rgba(44, 62, 80, 0.05) !important;
        border-left-color: var(--accent-gold) !important;
        transform: translateX(5px) !important;
        color: var(--primary-blue) !important;
    }
    
    /* Add menu category headings */
    .navbar.active .nav-link:not(.btn-book) {
        position: relative;
        padding-left: 35px !important;
    }
    
    .navbar.active .nav-link:not(.btn-book)::before {
        content: "→";
        position: absolute;
        left: 15px;
        color: var(--accent-gold);
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .navbar.active .nav-link:not(.btn-book):hover::before {
        transform: translateX(5px);
    }
    
    /* Book button styling */
    .navbar.active .nav-link.btn-book {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%) !important;
        color: white !important;
        font-weight: 700 !important;
        margin-top: 30px !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        border-radius: 8px !important;
        padding: 18px 25px !important;
        border: none !important;
        box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2) !important;
        border-left: none !important;
        font-size: 1.1rem !important;
    }
    
    .navbar.active .nav-link.btn-book:hover {
        background: linear-gradient(135deg, var(--dark-blue) 0%, #15202b 100%) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3) !important;
    }
    
    .navbar.active .nav-link.btn-book::before {
        content: "📅";
        position: absolute;
        left: 25px;
        color: white;
        font-weight: normal;
    }
    
    /* Add some spacing and visual separation */
    .navbar.active .nav-links::before {
        content: "";
        display: block;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-gold), transparent);
        margin: 10px auto 25px 0;
        opacity: 0.5;
    }
    
    /* WhatsApp link styling */
    .navbar.active .nav-link[href*="whatsapp"] {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
        color: white !important;
        border-left: none !important;
        text-align: center !important;
        margin-top: 15px !important;
    }
    
    .navbar.active .nav-link[href*="whatsapp"]::before {
        content: "💬";
        position: absolute;
        left: 25px;
        color: white;
    }
    
    .navbar.active .nav-link[href*="whatsapp"]:hover {
        background: linear-gradient(135deg, #128C7E 0%, #0e735c 100%) !important;
    }
    
    /* Active/current page indicator */
    .navbar.active .nav-link.active {
        background: rgba(241, 196, 15, 0.1) !important;
        border-left-color: var(--accent-gold) !important;
        color: var(--primary-blue) !important;
        font-weight: 700 !important;
    }
}

/* ====== MOBILE MENU TOGGLE ICON STYLES ====== */
@media (max-width: 992px) {
    /* Menu button styling for mobile - NO BACKGROUND */
    .menu-btn {
        background: transparent !important;
        color: #2c3e50 !important; /* Black/dark color */
        border: none !important;
        padding: 10px !important;
        transition: all 0.3s ease !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .menu-btn:hover {
        background: transparent !important;
        transform: scale(1.1) !important;
        color: var(--primary-blue) !important;
    }
    
    .menu-btn:active {
        transform: scale(0.95) !important;
    }
    
    /* Menu icon styling */
    .menu-btn i {
        font-size: 1.5rem !important;
        transition: all 0.3s ease !important;
    }
    
    /* When menu is active, change icon color */
    .menu-btn.active i {
        color: var(--primary-blue) !important;
    }
    
    /* Header styles for mobile */
    #header {
        background: white !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 999998 !important;
    }
    
    /* Logo color on mobile */
    .logo {
        color: #2c3e50 !important;
    }
    
    /* Optional: Add a subtle animation to the hamburger icon */
    @keyframes pulse-light {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    .menu-btn:hover i {
        animation: pulse-light 2s infinite;
    }
}

/* ====== SCROLL STATE STYLES ====== */
@media (max-width: 992px) {
    /* When header is scrolled, keep menu icon black */
    #header.scrolled .menu-btn {
        color: #2c3e50 !important;
    }
    
    #header.scrolled .menu-btn i {
        color: #2c3e50 !important;
    }
    
    /* When header is not scrolled, menu icon is black */
    #header:not(.scrolled) .menu-btn {
        color: #2c3e50 !important;
    }
    
    #header:not(.scrolled) .menu-btn i {
        color: #2c3e50 !important;
    }
}

/* ====== MOBILE MENU SCROLLBAR STYLING ====== */
@media (max-width: 992px) {
    .navbar.active {
        scrollbar-width: thin;
        scrollbar-color: var(--accent-gold) #f0f0f0;
    }
    
    .navbar.active::-webkit-scrollbar {
        width: 6px;
    }
    
    .navbar.active::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    
    .navbar.active::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 3px;
    }
    
    .navbar.active::-webkit-scrollbar-thumb:hover {
        background: #e0b30a;
    }
}