/* ==========================================
   NovAura - Common Styles
   ========================================== */

/* Enable smooth scrolling globally */
html {
    scroll-behavior: smooth;
}

/* Alternative: If you want more control, use this instead */
html.smooth-scroll {
    scroll-behavior: smooth;
}

/* For Safari and older browsers - Add scroll padding for fixed header */
html {
    scroll-padding-top: 90px; /* Adjust based on your header height */
}

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

:root {
    --primary-teal: #00A896;
    --secondary-gold: #F4D03F;
    --accent-cream: #FFF8E7;
    --neutral-dark: #2C3E50;
    --white: #FFFFFF;
    --light-grey: #F8F8F8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ==========================================
   HEADER STYLES
   ========================================== */

.header {
    background: rgba(0, 168, 150, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
}

.header.scrolled, .headerActive .header {
    background: rgba(0, 168, 150, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 168, 150, 0.3);
}

.header.static-header {
    background: rgba(0, 168, 150, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 168, 150, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(244, 208, 63, 0.3);
    color: var(--secondary-gold);
}

.nav-cta {
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-teal));
    color: var(--white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--neutral-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: var(--white);
    display: flex;           
    align-items: center;     
    gap: 0.5rem;            
}

.footer-section p i {
    flex-shrink: 0;         
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(244, 208, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-gold);
    color: var(--primary-teal);
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* Footer Link Styles */
.footer-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-hours-title {
    margin-bottom: 0.5rem;
}

.footer-hours-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================
   FOOTER STAMP IMAGE
   ========================================== */

.footer {
    position: relative;
}

.footer-container {
    position: relative;
}

.footer-stamp {
    position: relative;
    top: 33px;
    left: 0;
    width: 220px;
    height: 220px;
    transform: rotate(-8deg);
    pointer-events: none;
    z-index: 0;
    margin: 0 auto;
}

.footer-stamp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-section {
    position: relative;
    z-index: 1;
}

/* ==========================================
   FOOTER STAMP SWING ANIMATION (Like a Bell)
   ========================================== */

.footer-stamp-swing {
    /*animation: swing 8s ease-in-out infinite;
    transform-origin: top center;*/
    animation: float 8s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(8deg);
    }
    40% {
        transform: rotate(-8deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .footer-stamp {
        width: 180px;
        height: 180px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .footer-stamp {
        width: 150px;
        height: 150px;
        top: 30px;
        left: 0;
    }
}

@media (max-width: 480px) {
    .footer-stamp {
        width: 120px;
        height: 120px;
    }
}

/* ==========================================
   (Travel Fees List)
   ========================================== */

/* Footer Travel Fees List */
.footer-travel-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.footer-travel-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-travel-list li i {
    color: var(--secondary-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.footer-travel-list li span {
    flex: 1;
}

.footer-travel-list li strong {
    color: var(--secondary-gold);
    font-weight: 600;
}

/* Footer Links */
.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

/* Responsive Footer - 4 columns on larger screens */
@media (min-width: 1024px) {
    .footer-container {
        /*grid-template-columns: repeat(4, 1fr);*/
        grid-template-columns: 4fr 5fr 3fr 4fr;
    }
}

/* Responsive Footer - Stack on mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-travel-list li {
        font-size: 0.85rem;
    }
}

/* ==========================================
   FLOATING BOOK BUTTON
   ========================================== */

.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary-teal), var(--secondary-gold));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 150, 0.6);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==========================================
   COMMON BUTTON STYLES
   ========================================== */

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-teal));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 150, 0.6);
}

/* ==========================================
   MODAL STYLES
   ========================================== */

#autoBookModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#autoBookModal.modal-hidden {
    display: none !important;
}

.modal-content-box {
    background: white;
    border-radius: 15px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
    text-align: center;
}

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

.modal-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6B7280;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.modal-close-x:hover {
    color: #E94E3D;
    transform: rotate(90deg);
}

.modal-logo-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #00A896;
}

.modal-logo-circle i {
    font-size: 3rem;
    color: #00A896;
}

.modal-main-title {
    font-size: 1.8rem;
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-desc-text {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-instruction-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-cta-button {
    background: linear-gradient(45deg, var(--primary-teal), var(--secondary-gold));
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 78, 61, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.modal-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 78, 61, 0.5);
}

.modal-contact-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #F3F4F6;
}

.modal-contact-heading {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.modal-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #374151;
    font-size: 0.95rem;
}

.modal-contact-row i {
    color: #00A896;
    font-size: 1.1rem;
}

.modal-contact-row a {
    color: #00A896;
    text-decoration: none;
    font-weight: 600;
}

.modal-contact-row a:hover {
    text-decoration: underline;
}


/* ==========================================
   SWEETALERT2 CUSTOM STYLES
   ========================================== */

.swal2-popup {
    border: 3px solid #FFD700;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(128,0,0,0.4), 0 0 60px rgba(255,69,0,0.2);
    animation: fadeScale 0.6s ease;
    z-index: 10001 !important; /* Higher than modal */
}

.swal2-title {
    font-size: 26px !important;
    font-weight: bold !important;
    color: var(--secondary-gold) !important;
}

.swal2-html-container {
    font-size: 16px !important;
}

.swal2-confirm {
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    background: linear-gradient(45deg, var(--primary-teal), var(--secondary-gold)) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(128,0,0,0.4);
    transition: all 0.3s ease;
    cursor: pointer !important;
    border: none !important;
}

.swal2-confirm:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, var(--primary-teal), var(--secondary-gold)) !important;
}

.swal2-confirm:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.5) !important;
}

.swal2-container {
    z-index: 10000 !important;
}

/* Fix for backdrop issues */
.swal2-container.swal2-backdrop-show {
    background: rgba(0, 0, 0, 0.4) !important;
}

.swal2-container.swal2-center.swal2-backdrop-hide {
    display: none;
}

/* Ensure the alert is clickable */
.swal2-popup * {
    pointer-events: auto !important;
}

/* Animation */
@keyframes fadeScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==========================================
   FORM STYLES
   ========================================== */

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* ==========================================
   SECTION HEADER STYLES
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-teal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .modal-content-box {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-main-title {
        font-size: 1.5rem;
    }

    .modal-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .floating-book-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 50px;
    }
}


/*HowItWork Page Start*/
.dividedsectionintoTwoHIWMain{
    display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 2rem;
}
.dividedsectionintoTwoHIWRytImgOutr{
    display: flex; justify-content: center; align-items: center;
}
.dividedsectionintoTwoHIWRytImg{
    width: 400px; height: auto;border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/*HowItWork Page End*/

.headerActive .mainSection{
    padding: 6rem 2rem;
}

.mainSection .firstcontainer{
    max-width: 1200px; margin: 0 auto; padding:2rem;
}

.dripLearnmoresectionImg{
    height: auto;width:100%;border-radius: 12px;box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.widerangecardsection{
     height: 235px;width:100%;border-radius: 12px;box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.padding2rem{
    padding: 2rem;
}

.singlepageheadersection {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2d7a7a 100%);
    padding: 10rem 0 4rem 0;
    text-align: center;
    margin-bottom: 0;
}

.singlepageheadersection h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.singlepageheadersection h2 {
    color: var(--secondary-gold);
    font-size: 2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {       
    .singlepageheadersection h1 {
        font-size: 2.5rem;
    }
    
    .singlepageheadersection h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .singlepageheadersection {
        padding: 8rem 1rem 3rem 1rem;
    }
    
    .singlepageheadersection h1 {
        font-size: 2rem;
    }
    
    .singlepageheadersection h2 {
        font-size: 1.2rem;
    }
}