html {
    scroll-behavior: smooth;
}

.section-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.section-nav a {
    background: #003366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.section-nav a:hover {
    background: #0055aa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wp-block-button__link {
        width: 100% !important; /* Full width on mobile */
        height: 50px;
        font-size: 14px;
    }
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	  overflow: hidden;
}

.hero-section {
    transition: opacity 0.6s ease-in-out;
}
.hero-section.scrolled {
    opacity: 0;
}



/* CSS to modify home pop up*/

/* Modal Popup Container with Enhanced Background */
.wpcf7-form {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite, slideUp 0.5s ease;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 30, 0.25), 0 0 0 1px rgba(52, 152, 219, 0.1);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    position: relative;
    border-top: 4px solid #3498db;
}

@keyframes gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Interactive Background Elements */
.wpcf7-form:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233498db' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    border-radius: 10px;
    z-index: 0;
    opacity: 0.7;
}

/* Form Title with Animation */
.contact-form-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    position: relative;
    display: inline-block;
}

.contact-form-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

.contact-form-title:hover:after {
    width: 100%;
}

/* Interactive Input Fields */
.cf7-input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #333;
    position: relative;
    z-index: 1;
}

.cf7-input:focus {
    border-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.15);
    background-color: #fff;
}

.cf7-input::placeholder {
    color: #aaa;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cf7-input:focus::placeholder {
    opacity: 0.6;
}

/* Float Label Effect */
.cf7-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.cf7-label:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3498db;
    transition: width 0.3s ease;
}

.cf7-input:focus + .cf7-label:after,
.cf7-input:not(:placeholder-shown) + .cf7-label:after {
    width: 30px;
}

/* Interactive Next/Prev Navigation Buttons */
.uacf7-next, .uacf7-prev {
    background: linear-gradient(to right, #3498db, #2980b9);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.uacf7-next:hover, .uacf7-prev:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.35);
}

.uacf7-next:active, .uacf7-prev:active {
    transform: translateY(-1px);
}

/* Ripple Effect for Buttons */
.uacf7-next:after, .uacf7-prev:after, .cf7-submit:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: -1;
}

.uacf7-next:hover:after, .uacf7-prev:hover:after, .cf7-submit:hover:after {
    width: 300px;
    height: 300px;
}

/* Enhanced Submit Button */
.cf7-submit {
    background: linear-gradient(to right, #3498db, #2980b9);
    background-size: 200% auto;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.25);
    position: relative;
    overflow: hidden;
}

.cf7-submit:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.35);
}

/* Interactive Select Fields */
select.cf7-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%233498db' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
    cursor: pointer;
}

select.cf7-input:hover {
    border-color: #bbb;
}

/* Enhanced Step Titles */
.uacf7-step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.uacf7-step-title:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

/* Advanced Progress Indicator */
.uacf7-progress-bar {
    height: 6px;
    background-color: #f0f0f0;
    margin: 20px 0 30px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.uacf7-progress {
    height: 100%;
    background: linear-gradient(to right, #3498db, #2980b9);
    background-size: 200% auto;
    animation: progressShift 2s linear infinite;
    transition: width 0.5s ease;
    border-radius: 3px;
    position: relative;
}

@keyframes progressShift {
    0% { background-position: 0% 50% }
    100% { background-position: 100% 50% }
}

/* Interactive Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.popup-close:before, .popup-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #999;
    transition: all 0.3s;
}

.popup-close:before {
    transform: rotate(45deg);
}

.popup-close:after {
    transform: rotate(-45deg);
}

.popup-close:hover {
    transform: rotate(90deg);
}

.popup-close:hover:before,
.popup-close:hover:after {
    background-color: #3498db;
}

/* Enhanced Textarea Styling */
textarea.cf7-input {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Error Message Animation */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 13px;
    margin-top: -20px;
    margin-bottom: 20px;
    animation: shakeError 0.6s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
}

@keyframes shakeError {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* Interactive Booking Link */
.cf7-booking-link {
    display: inline-block;
    background: linear-gradient(to right, #f39c12, #e67e22);
    background-size: 200% auto;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.25);
    z-index: 1;
}

.cf7-booking-link:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.35);
}

.cf7-booking-link:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: -1;
}

.cf7-booking-link:hover:after {
    width: 300px;
    height: 300px;
}

/* Form Step Transitions */
.uacf7-step {
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
}

.uacf7-step.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInStep 0.5s ease;
}

.uacf7-step.inactive {
    opacity: 0;
    position: absolute;
    transform: translateX(30px);
}

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

/* Interactive Radio & Checkbox Styling */
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin: 0 0 10px 0;
    position: relative;
}

.wpcf7-radio input,
.wpcf7-checkbox input {
    position: absolute;
    opacity: 0;
}

.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
    line-height: 20px;
}

.wpcf7-radio .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wpcf7-checkbox .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wpcf7-radio input:checked + .wpcf7-list-item-label:before {
    border-color: #3498db;
}

.wpcf7-checkbox input:checked + .wpcf7-list-item-label:before {
    border-color: #3498db;
    background: #3498db;
}

.wpcf7-radio input:checked + .wpcf7-list-item-label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3498db;
    transition: all 0.3s ease;
}

.wpcf7-checkbox input:checked + .wpcf7-list-item-label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* Animated Date Picker */
input[type="date"].cf7-input {
    position: relative;
    padding-right: 35px;
}

input[type="date"].cf7-input::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233498db' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    cursor: pointer;
    transition: transform 0.3s ease;
}

input[type="date"].cf7-input:hover::-webkit-calendar-picker-indicator {
    transform: scale(1.2);
}

/* Enhanced Modal Overlay with Interactive Background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 30, 0.9) 0%, rgba(0, 0, 20, 0.97) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414l5.586-5.586zM112.414 86l5.586-5.586L112.414 75h11.172l-5.586 5.586L113 80.414 112.414 86zM82.414 75H93.586L88 80.586 82.414 75z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

/* Form Focus Effect for the entire form when interacting */
.wpcf7-form:focus-within {
    box-shadow: 0 20px 40px rgba(0, 0, 30, 0.3), 0 0 0 1px rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

/* Add subtle glow to the form when focusing */
.wpcf7-form:focus-within:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(ellipse at center, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    z-index: -1;
    border-radius: 20px;
    pointer-events: none;
}

/* Interactive keyboard navigation indicators */
.cf7-input:focus,
.uacf7-next:focus,
.uacf7-prev:focus,
.cf7-submit:focus,
.popup-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.4);
}

/* Success message with animation */
.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 15px;
    border-radius: 6px;
    text-align: center;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 0 0 rgba(21, 87, 36, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(21, 87, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 87, 36, 0); }
}

/* Dynamic form element transitions for conditional fields */
.conditional-field {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.conditional-field.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Interactive floating text field labels (for a more modern UX) */
.floating-label-container {
    position: relative;
    margin-bottom: 25px;
}

.floating-label-container .cf7-input {
    height: 56px;
    padding: 20px 16px 0 16px;
    margin-bottom: 0;
}

.floating-label-container .floating-label {
    position: absolute;
    top: 20px;
    left: 16px;
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-label-container .cf7-input:focus ~ .floating-label,
.floating-label-container .cf7-input:not(:placeholder-shown) ~ .floating-label {
    top: 8px;
    left: 16px;
    font-size: 12px;
    color: #3498db;
    font-weight: 600;
}

/* Loading indicator for form submission */
.submitting-indicator {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.wpcf7-form.submitting .submitting-indicator {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(52, 152, 219, 0.2);
    border-top-color: #3498db;
    animation: spin 1s linear infinite;
}

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

/* Add responsive improvements */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 25px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .uacf7-step-title {
        font-size: 20px;
    }
    
    .cf7-input {
        padding: 12px 15px;
    }
    
    .uacf7-next, .uacf7-prev, .cf7-submit {
        padding: 12px 20px;
    }
}


/* end of pop up*/

/* Custom header */
.custom-header {
    position: fixed; /* Keeps header at the top */
    top: 0;
    left: 0;
    width: 100vw; /* Full screen width */
    height: auto; /* Keeps it compact */
    display: flex;
    justify-content: space-between; /* Spacing between logo & menu */
    align-items: center; /* Ensures everything is aligned */
    background: rgba(0, 0, 0, 0.6); /* Slight transparency */
    backdrop-filter: blur(5px); /* Soft blur effect */
    padding: 5px 30px; /* Adjusted padding for a better fit */
    z-index: 1000;
}

.custom-header img {
    max-height: 60px; /* Keeps logo at a reasonable size */
    width: auto; /* Prevents distortion */
    object-fit: contain; /* Keeps aspect ratio */
    margin-right: 20px; /* Adds spacing between logo and menu */
}

.custom-header nav {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Centers the menu */
}

.custom-header ul {
    display: flex;
    gap: 20px; /* Spacing between menu items */
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-header ul li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.custom-header ul li a:hover {
    color: #2D88FF; /* Changes color on hover */
}

/* 📌 Mobile Responsiveness Fix */
@media (max-width: 768px) {
    .custom-header {
        flex-direction: column;
        padding: 10px 15px;
    }

    .custom-header nav {
        justify-content: center;
    }

    .custom-header ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .custom-header img {
        max-height: 50px; /* Adjust logo size for mobile */
    }
}


/* end custom header*/

/* footer spacing*/

/* Footer Spacing Improvements */
.footer-section {
  padding: 50px 0;
}

.footer-column {
  padding: 0 15px;
}

/* Contact Us section */
/* Footer Spacing Improvements */
.footer-section {
  padding: 50px 0;
}

.footer-column {
  padding: 0 15px;
}

/* NAVIGATION PANEL STYLE*/


/* END NAVIGATION PANEL STYLE*/


