@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Figtree",sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

:root{
    --gold:#d4af37;
    --gold-light:#f5d77a;
}

/* GLOBAL */
.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

section{
    padding:80px 0;
}

@media(max-width:991px){
    section{
        padding:60px 0;
    }
}

@media(max-width:576px){
    section{
        padding:50px 0;
    }
}


/* =======================================
   TOP BAR
======================================= */

.top-bar{
    background:#111;
    color:#fff;
    padding:8px 0;
    font-size:13px;
}

.icon-circle{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(212,175,55,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
}


/* =======================================
   HEADER
======================================= */

.main-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#000;
    width:100%;
}

.header-nav{
    position:relative;
    width:100%;
}


/* =======================================
   LOGO
======================================= */

.logo img{
    height:70px;
}


/* =======================================
   DESKTOP NAV
======================================= */

.navbar-nav .nav-link{
    color:#fff;
    margin:0 12px;
    font-weight:500;
    position:relative;
    white-space:nowrap;
    padding-top:0;
    padding-bottom:0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
    color:var(--gold);
}

.navbar-nav .nav-link::before{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.3s;
}

.navbar-nav .nav-link:hover::before{
    width:100%;
}


/* =======================================
   MEGA MENU (FIXED)
======================================= */

.mega-parent{
    position:relative; /* IMPORTANT */
}

.mega-menu{
    position:absolute;
    top:100%;

    /* spacing fix */
    left:10px;
    right:10px;

    background:#111;
    border-top:3px solid var(--gold);
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translateY(8px);
    transition:.25s ease;

    z-index:1000;
}

/* SHOW MENU */
.mega-parent:hover .mega-menu,
.mega-parent:focus-within .mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}


/* INNER CONTAINER (CENTER FIX) */

.mega-inner{
    max-width:1200px;
    margin:0 auto;
    padding:30px 20px;
}


/* =======================================
   5 COLUMN FIX
======================================= */

.five-col-menu{
    display:flex;
    width:100%;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:nowrap;
    gap:20px;
}

.mega-col{
    flex:0 0 20%;
    max-width:20%;
}


/* =======================================
   COLUMN CONTENT
======================================= */

.menu-title{
    color:var(--gold);
    font-size:15px;
    font-weight:600;
    margin-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding-bottom:8px;
    min-height:48px;
}

.mega-menu a{
    display:block;
    color:#bbb;
    font-size:14px;
    padding:6px 0;
    text-decoration:none;
    transition:.2s;
    line-height:1.5;
}

.mega-menu a:hover{
    color:#fff;
    padding-left:6px;
}


/* =======================================
   MOBILE
======================================= */

@media(max-width:991px){

    .five-col-menu{
        flex-wrap:wrap;
        gap:0;
    }

    .mega-col{
        flex:0 0 50%;
        max-width:50%;
        margin-bottom:25px;
    }

    .mega-menu{
        display:none;
    }

}

@media(max-width:576px){

    .mega-col{
        flex:0 0 100%;
        max-width:100%;
    }

}


/* =======================================
   MOBILE TOGGLE
======================================= */

.menu-toggle{
    font-size:22px;
    color:#fff;
    cursor:pointer;
}


/* =======================================
   OFFCANVAS
======================================= */

.offcanvas{
    background:#000;
}

.offcanvas .nav-link{
    color:#fff;
    padding:10px 0;
    border-bottom:1px solid #222;
}

.submenu{
    display:none;
    padding-left:12px;
}

.toggle-sub.active + .submenu{
    display:block;
}

.submenu-title{
    color:var(--gold);
    font-size:13px;
    margin-top:10px;
    display:block;
    padding:4px 0;
}

.submenu a{
    color:#ddd;
    font-size:14px;
    padding:6px 0;
    display:block;
}

.submenu a:hover{
    color:#fff;
}

.toggle-sub i{
    transition:.3s;
}

.toggle-sub.active i{
    transform:rotate(180deg);
}
 
/* =======================================
   HEADER CTA BUTTONS  (top-bar)
======================================= */
.va-header-cta a {
    text-decoration: none !important;
}
 
/* Referral — glass teal */
.va-btn-referral {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #00c896 !important;
    background: rgba(0, 200, 150, 0.10);
    border: 1px solid rgba(0, 200, 150, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
 
.va-btn-referral:hover {
    background: #00c896;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 200, 150, 0.25);
}
 
/* Enquire — gold premium */
.va-btn-enquire {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #111 !important;
    background: linear-gradient(135deg, #ffe08a, #d4af37);
    border: none !important;
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
    transition: all 0.3s ease;
}
 
.va-btn-enquire:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}
 
/* =======================================
   RESPONSIVE
======================================= */
 
/* Hide desktop nav on mobile */
@media (max-width: 991px) {
    .navbar-nav { display: none !important; }
    .mega-menu  { display: none !important; }
    .logo img   { height: 55px; }
}
 
/* Smaller CTA text on very small screens */
@media (max-width: 576px) {
    .va-header-cta a {
        font-size: 12px;
        padding: 7px 12px;
    }
    /* Hide referral on mobile if needed */
    .va-btn-referral { display: none !important; }
}


/* =======================================
   MEGA MENU GAP FIX
   
   Problem: cursor loses hover when moving
   from nav link → mega menu (gap between them)
   
   Solution 1: Remove the transform gap + add
   pseudo-element bridge over the gap
   Solution 2: Add padding-bottom to the li
   so hover area extends down to the panel
======================================= */

/* Extend the hover zone of the parent li
   downward so cursor never "leaves" it */
.mega-parent {
    position: static;
    padding-bottom: 15px;  /* bridges the gap */
    margin-bottom: -15px;  /* compensate so layout stays same */
}

/* Remove the translateY animation that was
   creating the visual (and hover) gap */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #111;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /* NO translateY here — that was creating the gap */
    transition: opacity 0.2s ease, visibility 0.2s;

    z-index: 1000;
}

/* Also add pseudo-element as invisible bridge
   above the mega menu panel */
.mega-menu::before {
    content: "";
    position: absolute;
    top: -18px;       /* covers the gap above the panel */
    left: 0;
    right: 0;
    height: 18px;     /* same as the gap height */
    background: transparent;
}

.mega-parent:hover .mega-menu,
.mega-parent:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* ================= HERO ================= */

.hero-section {
    background: linear-gradient(135deg, #000, #0f2a2a);
    color: #fff;
    padding: 60px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
}

.hero-desc {
    color: #ccc;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: #000;
    border-radius: 30px;
    padding: 10px 25px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){
    .navbar-nav { display: none; }
    .mega-menu { display: none !important; }
    .hero-title { font-size: 30px; }
}

@media(max-width:576px){
    .logo img { height: 55px; }
    .submenu a { font-size: 13px; }
}
/* ================= HERO ================= */
.hero-section {
    background: linear-gradient(135deg, #000, #0f2a2a);
    color: #fff;
    padding: 60px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-desc {
    font-size: 16px;
    color: #ccc;
    margin-top: 15px;
    max-width: 500px;
}

.hero-img {
    max-width: 100%;
    border-radius: 12px;
}

/* Buttons */
.btn-outline-light {
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-arrow i {
    transition: 0.3s;
}

.btn-arrow:hover i {
    transform: translateX(6px);
}

/* Carousel Arrows */
.custom-arrow {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.custom-arrow:hover {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    transform: translateY(-50%) scale(1.1);
}

/* SECTION BACKGROUND */
.service-highlight {
    background: linear-gradient(135deg, #f9fbfd, #eef3f8);
    padding: 80px 0;
}

/* CARD */
.highlight-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.highlight-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY (light version) */
.highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* CONTENT */
.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.card-content h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-content p {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f5d77a);
    color: #000;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-2px);
}

/* HOVER */
.highlight-card:hover img {
    transform: scale(1.1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= MISSION VISION ================= */
.mv-gold {
    background: #f9fbfd;
}

.mv-heading {
    font-size: 36px;
    font-weight: 600;
}

.mv-heading span {
    color: var(--gold);
}

.mv-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.4s;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .hero-title { font-size: 30px; }
    .sec-title { font-size: 28px; }
    .mv-heading { font-size: 28px; }

    .hero-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-img {
        margin-bottom: 20px;
    }

    .navbar-nav {
        display: none;
    }
}

@media(max-width:576px){
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .top-bar {
        font-size: 12px;
    }

    .logo img {
        height: 55px;
    }
    .service-highlight{
        padding:30px 0;
    }
    .about-img img {
    width: 100%!important;
}
.faq-section {
    background: #ffffff;
    padding: 30px 20px!important;
}
.cta-section {
    padding: 30px 0!important;
}
}
/* SECTION HEADING */
.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

.section-heading p {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 15px;
}

/* Responsive */
@media(max-width:768px){
    .section-heading h2 {
        font-size: 28px;
    }
}
/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 0;
    background: #fff;
}

/* IMAGE */
.about-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    border-radius: 16px;
    transition: 0.4s ease;
}

/* IMAGE HOVER */
.about-img:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.about-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

.about-content h2 span {
    color: #d4af37;
}

.about-content p {
    color: #666;
    margin: 15px 0 20px;
    line-height: 1.6;
    font-size: 15px;
}

/* ================= SERVICES TITLE ================= */
.about-section .services-title {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

/* ================= SERVICES GRID ================= */
.about-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}

/* ================= SERVICE ITEM ================= */
.about-section .service-item {
    background: #f9fafb;
    padding: 9px 16px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: #333;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

/* CHECK ICON */
.about-section .service-item::before {
    content: "✔";
    font-size: 14px;
    color: #16a34a;
    font-weight: bold;
}

/* HOVER EFFECT */
.about-section .service-item:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(212,175,55,0.3);
}

/* ================= BUTTON ================= */
.about-section .btn-gold {
    background: linear-gradient(45deg, #d4af37, #f5d77a);
    color: #000;
    border-radius: 30px;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s ease;
}

.about-section .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {

   .about-section .about-content {
        text-align: center;
    }

   .about-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 576px) {

   .about-section .about-section {
        padding: 60px 0;
    }

  .about-section .about-content h2 {
        font-size: 28px;
    }

  .about-section .about-img img {
        width: 100%;
    }

  .about-section .services-grid {
        grid-template-columns: 1fr;
    }

  .about-section .service-item {
        font-size: 14px;
    }
}
.vm-compact-bg {
    padding: 55px 20px; /* compact */
    background: radial-gradient(circle at 85% 50%, rgba(0, 255, 170, 0.18), transparent 45%),
                linear-gradient(90deg, #000000 45%, #052e2b 100%);
    color: #ffffff;
}

/* Container */
.vm-inner {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.vm-title {
    text-align: center;
    margin-bottom: 35px;
}

.vm-title h2 {
    font-size: 34px;
    font-weight: 700;
}

.vm-title span {
    color: #d4af37; /* gold */
}

/* Layout */
.vm-flex {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* Cards */
.vm-card {
    flex: 1 1 48%;
    background: rgba(255,255,255,0.06);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

/* Hover */
.vm-card:hover {
    background: rgba(0,255,170,0.08);
    transform: translateY(-6px);
}

/* Text */
.vm-card h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 10px;
}

.vm-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-card {
        flex: 1 1 100%;
    }
}
/* Section Background (same style as Mission/Vision) */
.care-dark-section {
    padding: 70px 20px;
    background: radial-gradient(circle at 85% 50%, rgba(0, 255, 170, 0.15), transparent 45%),
                linear-gradient(90deg, #000000 45%, #052e2b 100%);
    color: #fff;
}

/* Container */
.care-dark-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Header */
.care-dark-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.care-dark-header span {
    color: #d4af37; /* gold */
}

.care-dark-header p {
    color: #d1d5db;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Grid */
.care-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tablet */
@media (max-width: 1024px) {
    .care-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .care-dark-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.care-dark-card {
    background: rgba(255,255,255,0.05);
    padding: 28px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.care-dark-card:hover {
    transform: translateY(-8px);
    background: rgba(0,255,170,0.08);
}

/* Icon */
.care-dark-icon {
    font-size: 36px;
    color: #d4af37; /* gold */
    margin-bottom: 15px;
}

/* Text */
.care-dark-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.care-dark-card p {
    font-size: 14px;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Button */
.care-dark-action {
    margin-top: 40px;
}

.care-dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4af37;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.care-dark-btn:hover {
    background: #fff;
    color: #000;
}

/* -------- RESPONSIVE -------- */

/* Tablet */
@media (max-width: 1024px) {
    .care-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .care-dark-grid {
        grid-template-columns: 1fr;
    }

    .care-dark-header h2 {
        font-size: 26px;
    }

    .care-dark-btn {
        width: 100%;
        justify-content: center;
    }
}

.testimonial-section {
    background: #fff;
    padding: 70px 20px;
}

.testimonial-container {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header h2 {
    font-size: 32px;
    color: #111;
}

.testimonial-header span {
    color: #d4af37;
}

/* Card */
.testimonial-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Text */
.testimonial-text {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* User */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 50px!important;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 16px;
    color: #111;
}

.testimonial-user span {
    font-size: 13px;
    color: #777;
}

/* Owl Nav */
.owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-nav button {
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    border: none;
    background: #d4af37 !important;
    color: #000 !important;
    font-size: 18px;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: #111 !important;
    color: #fff !important;
}

/* Remove dots */
.owl-dots {
    display: none;
}
/* Stars */
.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: #facc15; /* gold/yellow stars */
    font-size: 14px;
    margin-right: 2px;
}
/* Section */
.signup-section {
    padding: 80px 20px;
    background: radial-gradient(circle at 80% 40%, rgba(0,255,170,0.15), transparent 40%),
                linear-gradient(90deg, #000000 40%, #052e2b 100%);
    color: #fff;
}

/* Container */
.signup-container {
    max-width: 1150px;
    margin: auto;
}

/* Header */
.signup-header {
    text-align: center;
    margin-bottom: 50px;
}

.signup-header h5 {
    color: #d4af37;
    margin-bottom: 10px;
}

.signup-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.signup-header span {
    color: #d4af37;
}

.signup-header p {
    color: #d1d5db;
    font-size: 15px;
}

/* Layout */
.signup-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* Left */
.signup-left {
    flex: 1 1 45%;
}

.signup-left h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.signup-left span {
    color: #d4af37;
}

.signup-left p {
    color: #d1d5db;
    margin-bottom: 25px;
}

/* Options */
.signup-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.signup-option {
    background: rgba(255,255,255,0.06);
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.signup-option:hover {
    background: rgba(0,255,170,0.1);
}

.signup-option i {
    color: #d4af37;
}

/* Steps */
.signup-steps {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Step Card */
.step-card {
    background: rgba(255,255,255,0.05);
    padding: 25px 18px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.step-card:hover {
    transform: translateY(-8px);
    background: rgba(0,255,170,0.08);
}

.step-card i {
    font-size: 26px;
    color: #d4af37;
    margin-bottom: 10px;
}

.step-card h4 {
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: #d1d5db;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .signup-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .signup-header h2 {
        font-size: 28px;
    }

    .signup-content {
        flex-direction: column;
    }

    .signup-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .signup-option {
        width: 100%;
        justify-content: center;
    }
}

/* Section */
.faq-section {
    background: #ffffff;
    padding: 70px 20px;
}

/* Container */
.faq-container {
    max-width: 900px;
    margin: auto;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 32px;
    color: #111;
}

.faq-header span {
    color: #d4af37;
}

.faq-header p {
    color: #666;
    font-size: 15px;
    margin-top: 10px;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Item */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

/* Question */
.faq-question {
    width: 100%;
    padding: 16px 18px;
    background: #f9fafb;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question i {
    transition: 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 18px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Hover */
.faq-question:hover {
    background: #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }
}
.cta-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    background: url('../img/2149759015.jpg') center/cover no-repeat;
}

/* Overlay */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 40%, rgba(0,255,170,0.15), transparent 40%),
                linear-gradient(90deg, #000000 40%, #052e2b 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Title */
.cta-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Description */
.cta-desc {
    font-size: 16px;
    max-width: 650px;
    margin: auto;
    opacity: 0.9;
}

/* Sub line */
.cta-sub {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* Buttons */
.cta-buttons {
    margin-top: 25px;
}

/* Primary button */
.btn-call {
    background: #22c55e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    margin-right: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34,197,94,0.4);
}

/* Secondary button */
.btn-outline-call {
    background: #fff;
    color: #6a1b9a;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* Responsive */
@media(max-width:991px){
    .cta-title {
        font-size: 28px;
    }
}

@media(max-width:576px){
    .btn-call,
    .btn-outline-call {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* MAIN */
.footer-white {
    background: #fff;
    color: #555;
    padding-top: 70px;
    border-top: 1px solid #eee;
}

/* Logo */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

/* About */
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    color: #111;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

/* Underline */
.footer-title::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #d4af37;
    position: absolute;
    bottom: -6px;
    left: 0;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #d4af37;
    margin-right: 8px;
}

/* Social */
.footer-social a {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    color: #444;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #d4af37;
    color: #000;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding: 15px 0;
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media(max-width:768px){
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .btn-referral {
        display: none !important;
    }
    .btn-gold {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 18px;
        margin-bottom: 0px!important;
    }
}
/* CTA Container */
.services-cta {
    margin-top: 40px;
}

/* VIEW ALL BUTTON */
.btn-view-all {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-view-all i {
    margin-left: 6px;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.btn-view-all:hover i {
    transform: translateX(6px);
}

/* ENQUIRE BUTTON */
.btn-enquire {
    background: linear-gradient(45deg, #d4af37, #f5d77a);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-enquire i {
    margin-left: 6px;
}

/* Hover */
.btn-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:991px){
    .services-cta {
        margin-top: 30px;
    }
}

/* Mobile */
@media(max-width:576px){
    .services-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-view-all,
    .btn-enquire {
        width: 100%;
        text-align: center;
    }
}
/* Base Styles */
.breadcrumb-section {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../img/33662.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 20px;
    color: #fff;
}

.breadcrumb-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Breadcrumb List */
.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* important for mobile */
}

.breadcrumb li {
    font-size: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    color: #f4c542;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb li a:hover {
    color: #fff;
}

/* Separator */
.breadcrumb li::after {
    content: "/";
    margin: 0 8px;
    color: #aaa;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li.active {
    color: #fff;
}

/* ============================= */
/* ðŸ“± Mobile Devices (â‰¤576px) */
/* ============================= */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 50px 15px;
    }

    .breadcrumb-content h1 {
        font-size: 26px;
    }

    .breadcrumb li {
        font-size: 13px;
    }

    .breadcrumb {
        gap: 4px;
    }
}

/* ============================= */
/* ðŸ“² Tablets (577px â€“ 991px) */
/* ============================= */
@media (max-width: 991px) {
    .breadcrumb-content h1 {
        font-size: 32px;
    }

    .breadcrumb li {
        font-size: 14px;
    }
}

/* ============================= */
/* ðŸ’» Large Screens (â‰¥1200px) */
/* ============================= */
@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 44px;
    }
}
.principle-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.principle-card img {
    height: 220px;
    object-fit: cover;
}

.principle-card:hover {
    transform: translateY(-8px);
}
.principal-body{
    background: radial-gradient(circle at 80% 40%, rgba(0, 255, 170, 0.15), transparent 40%), linear-gradient(90deg, #000000 40%, #052e2b 100%);
}
.contact-info {
    background: linear-gradient(135deg, #000000, #2c2c2c);
}

.contact-info i {
    font-size: 18px;
    color: #f4c542;
    margin-top: 5px;
}

.contact-item h6 {
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    padding: 10px;
}

.contact-form button {
    border-radius: 8px;
    font-weight: 600;
}
.map-section {
    background: #f8f9fa;
    padding:5px 0!important;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* =========================
   SECTION WRAPPER
========================= */

.va-accommodation{
    background: #f9fafb;
    padding: 70px 20px;
}

/* =========================
   HERO
========================= */

.va-hero h1{
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.va-hero span{
    color: #d4af37;
}

.va-hero p{
    max-width: 700px;
    margin: 12px auto;
    color: #555;
    font-size: 15px;
}

/* CTA BUTTONS */
.va-cta{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.va-btn{
    background: #d4af37;
    color: #111;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0 6px 15px rgba(212,175,55,0.25);
}

.va-btn:hover{
    transform: translateY(-3px);
}

.va-btn-outline{
    border: 2px solid #d4af37;
    color: #111;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: 0.3s;
}

.va-btn-outline:hover{
    background: #d4af37;
}

/* =========================
   TEXT SECTION
========================= */

.va-text h3{
    font-size: 26px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.va-text p{
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* IMAGE */
.va-img img{
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   CARDS
========================= */

.va-card{
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.va-card i{
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 10px;
}

.va-card h5{
    font-size: 18px;
    margin-bottom: 8px;
}

.va-card p{
    font-size: 14px;
    color: #666;
}

.va-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* =========================
   PROCESS BOX
========================= */

.va-highlight{
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    text-align: center;
}

.va-highlight h4{
    margin-bottom: 15px;
}

/* STEP LIST */
.va-list{
    background: #f8f9fa;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.va-list i{
    color: #16a34a;
}

.va-list:hover{
    transform: translateX(5px);
}

/* =========================
   BENEFITS
========================= */

.va-why h3{
    font-size: 28px;
    font-weight: 700;
}

.va-why span{
    color: #d4af37;
}

.va-why p{
    max-width: 650px;
    margin: 10px auto;
    color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){
    .va-hero h1{
        font-size: 32px;
    }
}

@media (max-width: 768px){
    .va-hero h1{
        font-size: 26px;
    }

    .va-text{
        margin-top: 20px;
    }
}

@media (max-width: 480px){
    .va-hero p{
        font-size: 14px;
    }

    .va-btn,
    .va-btn-outline{
        width: 100%;
        justify-content: center;
    }
}
/* =========================
   HEADER CTA FIX (IMPORTANT)
========================= */

.va-header-cta a{
    text-decoration: none !important;
}

/* =========================
   REFERRAL BUTTON (GLASS STYLE)
========================= */

.va-btn-referral{
    display: inline-flex !important;
    align-items: center;
    gap: 6px;

    padding: 8px 16px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;

    color: #00c896 !important;
    background: rgba(0, 200, 150, 0.10);

    border: 1px solid rgba(0, 200, 150, 0.4);

    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.va-btn-referral:hover{
    background: #00c896;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 200, 150, 0.25);
}

/* =========================
   ENQUIRE BUTTON (GOLD PREMIUM)
========================= */

.va-btn-enquire{
    display: inline-flex !important;
    align-items: center;
    gap: 6px;

    padding: 8px 18px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    color: #111 !important;

    background: linear-gradient(135deg, #ffe08a, #d4af37);

    border: none !important;

    box-shadow: 0 6px 18px rgba(212,175,55,0.35);

    transition: all 0.3s ease;
}

.va-btn-enquire:hover{
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 576px){
    .va-header-cta a{
        font-size: 12px;
        padding: 7px 12px;
    }
}