
/* =================== GLOBAL RESET =================== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container, .container-fluid {
    width: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Fix for any element causing horizontal overflow */
* {
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    background-size: cover;
    filter: contrast(1.2);
}

/* =================== NAVBAR =================== */
.navbar-nav .nav-link  {
    color: #ff4d01 !important;
}

.navbar-brand {
    color: #ff4d01 !important;
}

.navbar-custom {
    box-shadow: 0px 4px 6px rgba(15, 14, 44, 0.7);
}

.navbar-custom.fixed-top {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1030;
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar-nav {
        width: 100%;
        text-align: left;
        gap: 0;
        margin: 0;
        padding: 10px 0;
    }
    .navbar-nav .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }
}

/* =================== FOOTER =================== */
.custom-footer {
    background-color: #414ea794;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
}
.custom-footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}
.custom-footer h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.custom-footer ul {
    list-style: none;
    padding: 0;
}
.custom-footer ul li {
    margin-bottom: 8px;
}
.custom-footer ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.custom-footer ul li a:hover {
    text-decoration: underline;
}

/* =================== HERO SECTION =================== */
.hero-modern {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: #fff;
    margin-top: 45px;
    margin-bottom: 40px; /* spacing before stats */
}

.hero-bg {
    position: relative;
    width: 100%;
    min-height: 480px;
    max-height: 700px;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-overlay-mobile {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.luxury-box {
    background: rgba(0,0,0,0.45);
    border-radius: 18px;
    padding: 32px 40px 28px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 380px;
    width: max-content;
    max-width: 520px;
}

.contact-bar {
    background: #fff;
    border-radius: 16px;
    padding: 10px 28px;
    display: flex;
    gap: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    align-items: center;
    justify-content: center;
    min-width: 320px;
    width: 100%;
    max-width: 440px;
}

/* =================== CTA BUTTON =================== */
.hero-modern .cta-button {
    position: absolute;
    bottom: 36px;
    left: 48px;
    z-index: 5;

    /* 🎨 Glassy Button Look */
    background: rgba(255, 255, 255, 0.65); /* semi-transparent white */
    color: #111; /* dark text */
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 36px;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.hero-modern .cta-button:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* =================== STATS SECTION =================== */
.stats-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.stats-section .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00a896; /* teal-green premium tone */
    margin-bottom: 8px;
}

.stats-section .stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* 🔹 Responsive Fix */
@media (max-width: 992px) {
    .stats-section .stat-number {
        font-size: 2.4rem;
    }
    .stats-section .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 30px 10px;
    }
    .stats-section .col-6 {
        margin-bottom: 25px;
    }
    .stats-section .stat-number {
        font-size: 2rem !important;
    }
    .stats-section .stat-label {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 25px 10px;
    }
    .stats-section .stat-number {
        font-size: 1.8rem !important;
    }
    .stats-section .stat-label {
        font-size: 0.9rem !important;
    }
}


/* =================== MOBILE FIX =================== */
@media (max-width: 600px) {
    .hero-modern .cta-button {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        display: block;
        margin: 20px auto 0 auto;
        width: 90%;
        text-align: center;

        /* keep same button look */
        background: rgba(255, 255, 255, 0.75) !important;
        color: #111 !important;
        border-radius: 30px !important;
        font-size: 1rem !important;
        padding: 12px 24px !important;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }
}


/*testimonials styles*/
.all-testimonials-wrapper {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
    min-height: 100vh;
    padding: 80px 0 60px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.2rem;
    color: #065f46;
    font-weight: 500;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.testimonial-card-admin {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,253,244,0.95) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(5, 150, 105, 0.2);
    position: relative;
}

.testimonial-card-admin:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-color: rgba(5, 150, 105, 0.5);
}

.testimonial-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.status-active {
    background: #10b981;
    color: white;
}

.status-inactive {
    background: #6b7280;
    color: white;
}

.testimonial-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.testimonial-image-admin {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card-admin:hover .testimonial-image-admin {
    transform: scale(1.1) rotate(2deg);
}

.testimonial-body {
    padding: 25px;
}

.testimonial-quote-section {
    position: relative;
    padding: 20px 15px;
    margin-bottom: 20px;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 15px;
    border-left: 4px solid #059669;
}

.quote-icon {
    font-size: 50px;
    color: rgba(5, 150, 105, 0.15);
    position: absolute;
    font-family: Georgia, serif;
    font-weight: bold;
}

.quote-icon.start {
    top: 5px;
    left: 5px;
}

.quote-icon.end {
    bottom: -10px;
    right: 10px;
    transform: rotate(180deg);
}

.testimonial-text-admin {
    font-style: italic;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.testimonial-author-section {
    text-align: center;
    padding-top: 15px;
    border-top: 2px solid rgba(5, 150, 105, 0.1);
}

.testimonial-name-admin {
    font-size: 20px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-location-admin {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
}

.testimonial-location-admin i {
    color: #059669;
    font-size: 16px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 18px;
    transition: all 0.2s ease;
}

.rating-star-filled {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
}

.rating-star-empty {
    color: #e5e7eb;
}

.testimonial-card-admin:hover .rating-star-filled {
    transform: scale(1.2) rotate(15deg);
}

.toggle-status-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.toggle-status-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* Loading Animation */
.toggle-status-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.toggle-status-btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-masonry {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .all-testimonials-wrapper {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .testimonials-masonry {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .testimonial-image-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .testimonials-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-body {
        padding: 20px;
    }
    
    .testimonial-quote-section {
        padding: 15px 10px;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 80px;
    color: rgba(5, 150, 105, 0.3);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: #064e3b;
    margin-bottom: 10px;
}

.empty-state p {
    color: #6b7280;
    font-size: 16px;
}

/* Add this to the TOP of your custom.css file */

/*body { background: red !important; }*/

/*html, body {*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*    overflow-x: hidden;*/
/*}*/

/*.container, .container-fluid {*/
/*    width: 100% !important;*/
/*    max-width: 1300px !important;*/
/*    margin: 0 auto !important;*/
/*    padding-left: 15px !important;*/
/*    padding-right: 15px !important;*/
/*}*/

/* Fix for any element causing horizontal overflow */
/** {*/
/*    max-width: 100%;*/
/*}*/

/*.navbar-nav .nav-link  {*/
/*    color: #ff4d01 !important;*/
/*}*/

/*.navbar-brand {*/
/*    color: #ff4d01 !important;*/
/*}*/

/*.navbar-custom {*/
    box-shadow: 0px 4px 6px rgba(15, 14, 44, 0.7); /* Adjust shadow strength */
/*}*/

/*.navbar-custom.fixed-top {*/
/*    position: fixed !important;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    z-index: 1030;*/
/*}*/


/*.btn{*/
/*    color: #ffffff;*/
/*    background-color: #ff4d01; */
/*    transition: background-color 0.3s ease, transform 0.2s ease;*/
    
/*}*/

/*.btn:hover {*/
    /*background-color: #e04300;*/
    /*transform: scale(1.05); */
/*    color: #ffffff;*/
/*}*/

/*li:marker{*/
/*    content:"⭐";*/
/*}*/


/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    background: white;*/
/*    background-size: cover;*/
        filter: contrast(1.2); /* increase contrast */

/*}*/

/*.container {*/
/*    max-width: 1300px;*/
/*    margin: auto;*/
/*    padding: 15px;*/
    /*padding-top: 20px;*/
/*}*/
/*.custom-footer {*/
/*    background-color: #414ea794;*/
/*    padding: 40px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    flex-wrap: wrap;*/
/*    gap: 20px;*/
/*    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
/*}*/
/*.custom-footer-column {*/
    flex: 1 1 200px; /* Flexible columns */
/*    min-width: 200px;*/
    /*width: 22%;*/
/*}*/
/*.custom-footer h3 {*/
/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 15px;*/
/*}*/
/*.custom-footer ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*}*/
/*.custom-footer ul li {*/
/*    margin-bottom: 8px;*/
/*}*/
/*.custom-footer ul li a {*/
/*    text-decoration: none;*/
/*    color: #333;*/
/*    font-size: 14px;*/
/*}*/
/*.custom-footer ul li a:hover {*/
/*    text-decoration: underline;*/
/*}*/
/*.fraud-alert {*/
/*    color: red;*/
/*    font-weight: bold;*/
/*}*/
/*.custom-travel-destinations {*/
/*    display: grid;*/
/*    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));*/
/*    gap: 15px;*/
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*gap: 10px;*/
/*}*/
/*.custom-destination {*/
/*    width: 100%;*/
    /*width: 30%;*/
/*    position: relative;*/
/*}*/
/*.custom-destination img {*/
/*    width: 100%;*/
/*    height:auto;*/
/*    border-radius: 5px;*/
/*}*/
/*.custom-destination span {*/
/*    position: absolute;*/
/*    bottom: 10px;*/
/*    left: 10px;*/
/*    color: white;*/
/*    font-weight: bold;*/
/*}*/




/*CSS for image slider*/

/*.my-image-slider {*/
/*  width: 100%;*/
  /*max-width: 800px;*/
/*  max-width: 100%;*/
/*  margin: auto;*/
/*  text-align: center;*/
/*}*/

/*.my-image-slider h2 {*/
/*  font-size: 24px;*/
/*  font-weight: bold;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.my-image-slider .swiper {*/
/*  width: 100%;*/
/*  padding-bottom: 50px;*/
/*}*/

/*.my-image-slider .swiper-slide {*/
/*  width: 350px !important;*/
/*  max-width: 350px !important;*/
/*  height: auto !important;*/
  /*height: 350px !important;*/
/*  aspect-ratio : 1 / 1;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  border-radius: 16px;*/
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.2);*/
/*}*/

/*.my-image-slider .swiper-slide img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/

/*.main-container {*/
    padding-top: 80px; /* keeps content below navbar */
/*}*/

/*@media (max-width: 991px) {*/
/*    .navbar-nav {*/
/*        width: 100%;*/
/*        text-align: left;*/
/*        gap: 0;*/
/*        margin: 0;*/
/*        padding: 10px 0;*/
/*    }*/
/*    .navbar-nav .nav-link {*/
/*        padding: 12px 15px;*/
/*        border-bottom: 1px solid #f0f0f0;*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/



/*input, select, textarea, button {*/
    font-size: 16px; /* prevents zoom on mobile */
/*}*/

/*@media (max-width: 576px) {*/
/*    .btn {*/
/*        width: 100%;*/
/*        margin-bottom: 10px;*/
/*    }*/
/*}*/

/*img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/


/*@media (max-width: 991px) {*/
/*    .main-container {*/
        padding-top: 100px; /* add a bit more for mobile when navbar expands */
/*    }*/
/*}*/


/* ========== FULLWIDTH SECTIONS FIX ========== */
/*.about-fullwidth,*/
/*.why-choose-fullwidth {*/
/*    border-radius: 0 !important;*/
/*    width: 100vw !important;*/
/*    position: relative;*/
/*    left: 50%;*/
/*    right: 50%;*/
/*    margin-left: -50vw !important;*/
/*    margin-right: -50vw !important;*/
/*    box-sizing: border-box;*/
/*    overflow: hidden;*/
/*}*/

/*.about-fullwidth > div[style*='background:rgba'],*/
/*.why-choose-fullwidth > div[style*='background:rgba'] {*/
/*    border-radius: 0 !important;*/
/*}*/

/* ========== HERO SECTION BASE STYLES ========== */
/*.hero-modern {*/
/*    width: 100vw;*/
/*    position: relative;*/
/*    left: 50%;*/
/*    right: 50%;*/
/*    margin-left: -50vw;*/
/*    margin-right: -50vw;*/
/*    overflow: hidden;*/
/*    background: #fff;*/
/*    margin-top: 45px;*/
/*}*/

/*.hero-bg {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    min-height: 480px;*/
/*    max-height: 700px;*/
/*    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat;*/
/*    border-radius: 32px 32px 0 0;*/
/*    box-shadow: 0 8px 32px rgba(0,0,0,0.08);*/
/*    font-family: 'Poppins', sans-serif;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.luxury-overlay-mobile {*/
/*    position: relative;*/
/*    z-index: 4;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    width: auto;*/
/*}*/

/*.luxury-box {*/
/*    background: rgba(0,0,0,0.45);*/
/*    border-radius: 18px;*/
/*    padding: 32px 40px 28px 40px;*/
/*    box-shadow: 0 4px 24px rgba(0,0,0,0.10);*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: flex-start;*/
/*    gap: 18px;*/
/*    min-width: 380px;*/
/*    width: max-content;*/
/*    max-width: 520px;*/
/*}*/

/*.contact-bar {*/
/*    background: #fff;*/
/*    border-radius: 16px;*/
/*    padding: 10px 28px;*/
/*    display: flex;*/
/*    gap: 18px;*/
/*    box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    min-width: 320px;*/
/*    width: 100%;*/
/*    max-width: 440px;*/
/*}*/

/* ========== MOBILE RESPONSIVE ========== */
/*@media (max-width: 600px) {*/
/*    .hero-modern {*/
/*        margin-top: 70px !important;*/
/*    }*/
    
/*    .hero-bg {*/
/*        min-height: 450px !important;*/
/*        max-height: 450px !important;*/
/*        border-radius: 0 !important;*/
/*        padding: 15px !important;*/
/*    }*/
    
/*    .luxury-overlay-mobile {*/
/*        width: 100% !important;*/
/*        padding: 0 10px !important;*/
/*    }*/
    
/*    .luxury-overlay-mobile img {*/
/*        height: 70px !important;*/
/*        margin-bottom: 10px !important;*/
/*    }*/
    
/*    .luxury-box {*/
/*        min-width: 0 !important;*/
/*        max-width: 100% !important;*/
/*        width: 100% !important;*/
/*        padding: 20px 15px !important;*/
/*        align-items: center !important;*/
/*        text-align: center !important;*/
/*    }*/
    
/*    .luxury-box > div:first-child {*/
/*        font-size: 1.4rem !important;*/
/*        letter-spacing: 1px !important;*/
/*    }*/
    
/*    .typing-effect {*/
/*        font-size: 0.9rem !important;*/
/*    }*/
    
/*    .contact-bar {*/
/*        min-width: 0 !important;*/
/*        max-width: 100% !important;*/
/*        width: 100% !important;*/
/*        flex-direction: column !important;*/
/*        padding: 12px !important;*/
/*        gap: 10px !important;*/
/*    }*/
    
/*    .contact-bar a {*/
/*        font-size: 0.9rem !important;*/
/*        padding: 8px !important;*/
/*        width: 100% !important;*/
/*        justify-content: center !important;*/
/*    }*/
    
    /* Stats section mobile */
/*    .stats-section .col-6 {*/
/*        margin-bottom: 15px;*/
/*    }*/
    
/*    .stat-number {*/
/*        font-size: 2rem !important;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .hero-bg {*/
/*        min-height: 400px !important;*/
/*        max-height: 500px !important;*/
/*    }*/
/*}*/

/* ========== MOBILE RESPONSIVE - CRITICAL FIXES ========== */
/*@media (max-width: 600px) {*/
    /* Force proper viewport */
/*    html, body {*/
/*        overflow-x: hidden !important;*/
/*        width: 100% !important;*/
/*        max-width: 100vw !important;*/
/*    }*/
    
    /* Hero section mobile */
/*    .hero-modern {*/
/*        margin-top: 20px !important;*/
/*        border-radius: 0 !important;*/
/*        width: 100vw !important;*/
/*        margin-left: -15px !important;*/
/*        margin-right: -15px !important;*/
/*    }*/
    
/*    .hero-modern > div {*/
/*        min-height: 400px !important;*/
/*        max-height: none !important;*/
/*        border-radius: 0 !important;*/
/*        padding: 20px 10px !important;*/
/*    }*/
    
    /* Logo */
/*    .luxury-overlay-mobile img {*/
/*        height: 60px !important;*/
/*        width: auto !important;*/
/*        margin-bottom: 15px !important;*/
/*    }*/
    
    /* Luxury box */
/*    .luxury-overlay-mobile .luxury-box {*/
/*        min-width: 0 !important;*/
/*        max-width: calc(100vw - 30px) !important;*/
/*        width: calc(100vw - 30px) !important;*/
/*        padding: 20px 15px !important;*/
/*        margin: 0 15px !important;*/
/*    }*/
    
/*    .luxury-overlay-mobile .luxury-box > div:first-child {*/
/*        font-size: 1.3rem !important;*/
/*        letter-spacing: 1px !important;*/
/*    }*/
    
/*    .luxury-overlay-mobile .typing-effect {*/
/*        font-size: 0.9rem !important;*/
/*        min-height: auto !important;*/
/*    }*/
    
    /* Contact bar */
/*    .luxury-overlay-mobile .contact-bar {*/
/*        min-width: 0 !important;*/
/*        max-width: calc(100vw - 30px) !important;*/
/*        width: calc(100vw - 30px) !important;*/
/*        flex-direction: column !important;*/
/*        gap: 12px !important;*/
/*        padding: 15px !important;*/
/*        margin: 0 15px !important;*/
/*    }*/
    
/*    .luxury-overlay-mobile .contact-bar a {*/
/*        font-size: 0.95rem !important;*/
/*        padding: 10px !important;*/
/*        width: 100% !important;*/
/*        justify-content: center !important;*/
/*        text-align: center !important;*/
/*    }*/
    
    /* CTA Button */
/*    .hero-modern a[style*='position:absolute'] {*/
/*        position: relative !important;*/
/*        bottom: auto !important;*/
/*        left: auto !important;*/
/*        display: block !important;*/
/*        width: calc(100% - 30px) !important;*/
/*        max-width: none !important;*/
/*        margin: 20px 15px !important;*/
/*        font-size: 1rem !important;*/
/*        padding: 14px 20px !important;*/
/*        border-radius: 25px !important;*/
/*    }*/
    
    /* Package cards */
/*    .scroll-card {*/
/*        min-width: 220px !important;*/
/*        max-width: 220px !important;*/
/*    }*/
    
/*    .scroll-card-img-wrap {*/
/*        height: 160px !important;*/
/*    }*/
    
    /* Stats section */
/*    .stats-section .stat-number {*/
/*        font-size: 2rem !important;*/
/*    }*/
    
/*    .stats-section .stat-label {*/
/*        font-size: 0.9rem !important;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .section-title {*/
/*        font-size: 1.8rem !important;*/
/*    }*/
    
/*    .feature-card {*/
/*        padding: 1.5rem !important;*/
/*        min-height: auto !important;*/
/*    }*/
    
/*    .about-section,*/
/*    .why-choose-fullwidth {*/
/*        padding: 40px 15px !important;*/
/*    }*/
/*}*/


