@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #3F0664;
  --primary-dark: #2D0448;
  --pink: #D90D92;
  --text: #212121;
  --text2: #676767;
  --text3: #999;
  --white: #FFFFFF;
  --gray: #F3F4F6;
  --gray2: #F9FAFB;
  --border: #E5E7EB;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --font: 'Inter', sans-serif;
  --tr: all 0.3s ease;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font);color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
a{text-decoration:none;color:inherit;transition:var(--tr)}
ul,ol{list-style:none}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;border:none;outline:none;font-family:var(--font)}
input,select,textarea{font-family:var(--font);outline:none}

.container{max-width:95%;margin:0 auto;padding:0 20px}
.section-title{font-size:40px;font-weight:500;color:var(--text);margin-bottom:8px}
.section-desc{color:var(--text2);font-size:16px;margin-bottom:40px}
.gray-bg{background:var(--gray)}

/* TOP BAR */
.top-bar{background:linear-gradient(135deg,#2D0448 0%,#3F0664 50%,#4E0A7A 100%);font-size:13px;letter-spacing:0.3px}
.top-bar-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;max-width:95%;margin:0 auto}
.top-bar-left{display:flex;align-items:center;gap:0}
.top-bar-right{display:flex;align-items:center;gap:0}
.top-bar-sep{width:1px;height:14px;background:rgba(255,255,255,0.25);margin:0 16px}
.top-bar-link{color:rgba(255,255,255,0.85);font-size:13px;display:flex;align-items:center;gap:6px;transition:var(--tr);font-weight:400}
.top-bar-link:hover{color:#fff}
.top-bar-link svg{opacity:0.7;flex-shrink:0}
.top-bar-link:hover svg{opacity:1}
.top-bar-email{color:rgba(255,255,255,0.75)}
.top-bar-email:hover{color:#fff}
.top-bar-phone{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,0.9);font-size:13px;font-weight:500;letter-spacing:0.3px}
.top-bar-phone svg{opacity:0.85}
.top-bar-phone:hover{color:#fff}

/* NAV */
.main-nav{background:var(--white);position:sticky;top:0;z-index:1000;box-shadow:0 1px 3px rgba(0,0,0,0.05);border-bottom:1px solid var(--border);transition:box-shadow 0.3s ease}
.main-nav.scrolled{box-shadow:0 4px 20px rgba(63,6,100,0.12)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:0 20px;max-width:95%;margin:0 auto;height:88px}
.nav-logo img{height:44px;width:auto;transition:height 0.3s ease}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-link{font-size:15px;color:var(--text);font-weight:500;position:relative;padding:28px 0;letter-spacing:0.2px;transition:color 0.3s ease}
.nav-link:hover{color:var(--primary)}
.nav-link.active{color:var(--primary)}
.nav-link::after{content:'';position:absolute;bottom:0;left:50%;width:0;height:2.5px;background:linear-gradient(90deg,#3F0664,#D90D92);border-radius:2px;transition:all 0.3s ease;transform:translateX(-50%)}
.nav-link:hover::after{width:100%}
.nav-link.active::after{width:100%}
.nav-link .arrow{display:inline-block;margin-left:4px;transition:var(--tr)}
.nav-link:hover .arrow{transform:rotate(180deg)}

/* CITY DROPDOWN (Desktop) */
.city-dropdown-wrap{position:relative}
.city-dropdown{position:absolute;top:100%;left:50%;transform:translateX(-50%);min-width:260px;background:var(--white);border-radius:14px;box-shadow:0 10px 40px rgba(0,0,0,0.15);padding:8px;opacity:0;visibility:hidden;transition:all 0.25s ease;z-index:200}
.city-dropdown.open{opacity:1;visibility:visible;transform:translateX(-50%) translateY(4px)}
.city-dropdown-item{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border-radius:10px;transition:var(--tr);cursor:pointer}
.city-dropdown-item:hover{background:rgba(63,6,100,0.05)}
.city-item-left{display:flex;flex-direction:column;gap:2px}
.city-dropdown-name{font-size:15px;font-weight:600;color:var(--text)}
.city-dropdown-sub{font-size:12px;color:var(--text3);font-weight:400}
.city-sub-arrow{font-size:18px;color:var(--text3);transition:var(--tr)}
.city-group.open .city-sub-arrow{transform:rotate(90deg);color:var(--primary)}
.city-sub-dropdown{max-height:0;overflow:hidden;transition:max-height 0.3s ease;padding:0 8px}
.city-group.open .city-sub-dropdown{max-height:200px;padding:4px 0 4px 0}
.city-sub-item{display:block;padding:10px 16px 10px 28px;font-size:14px;color:var(--text2);border-radius:8px;transition:var(--tr)}
.city-sub-item:hover{background:rgba(63,6,100,0.05);color:var(--primary)}
.city-has-sub .city-dropdown-item::after{display:none}

/* MOBILE CITY DROPDOWN */
.mobile-city-dropdown{position:relative}
.mobile-city-trigger{display:flex!important;align-items:center;justify-content:space-between}
.mobile-city-list{max-height:0;overflow:hidden;transition:max-height 0.4s ease;background:var(--gray2);border-radius:8px}
.mobile-city-list.open{max-height:600px}
.mobile-city-link{padding:12px 16px!important;border-bottom:1px solid var(--border)!important;font-size:14px!important}
.mobile-city-parent{display:flex;align-items:center;justify-content:space-between}
.mc-arrow{font-size:16px;transition:var(--tr)}
.mobile-city-group.open .mc-arrow{transform:rotate(90deg);color:var(--primary)}
.mobile-hotel-list{max-height:0;overflow:hidden;transition:max-height 0.3s ease}
.mobile-city-group.open .mobile-hotel-list{max-height:200px}
.mobile-hotel-link{padding:10px 16px 10px 32px!important;font-size:13px!important;color:var(--text2)!important}
.mobile-hotel-link:hover{color:var(--primary)!important}
.nav-actions{display:flex;align-items:center;gap:14px}
.nav-signin-link{display:flex;align-items:center;gap:5px;font-size:14px;color:var(--text2);font-weight:500;transition:var(--tr)}
.nav-signin-link:hover{color:var(--primary)}
.nav-signin-link svg{opacity:0.6}
.nav-signin-link:hover svg{opacity:1}
.nav-book-btn{background:linear-gradient(135deg,#D90D92 0%,#B80A7B 100%);color:#fff;padding:10px 26px;border-radius:9999px;font-size:14px;font-weight:600;white-space:nowrap;transition:all 0.3s ease;box-shadow:0 2px 12px rgba(217,13,146,0.35);letter-spacing:0.3px}
.nav-book-btn:hover{transform:translateY(-2px);box-shadow:0 4px 20px rgba(217,13,146,0.5)}
.mobile-menu-btn{display:none;background:none;padding:8px;flex-shrink:0}
.mobile-menu-btn span{display:block;width:24px;height:2.5px;background:var(--text);margin:6px 0;transition:var(--tr);border-radius:2px}

/* MEGA MENU */
.mega-menu-trigger{position:relative}
.mega-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%);background:var(--white);box-shadow:var(--shadow-lg);border-radius:12px;padding:24px;opacity:0;visibility:hidden;transition:all 0.25s ease;min-width:600px;z-index:100}
.mega-menu-trigger:hover .mega-menu{opacity:1;visibility:visible}
.mega-menu-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.mega-menu-item{display:flex;align-items:center;gap:14px;padding:10px 14px;border-radius:10px;cursor:pointer;transition:var(--tr)}
.mega-menu-item:hover{background:var(--gray)}
.mega-menu-item img{width:60px;height:60px;border-radius:8px;object-fit:cover}
.mega-menu-item-text h4{font-size:14px;color:var(--pink);font-weight:500;margin-bottom:2px}
.mega-menu-item-text p{font-size:12px;color:var(--text2);line-height:1.4}

/* HERO */
.hero-section{position:relative;width:100%;height:580px;overflow:hidden}
.hero-slide{position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;transition:opacity 0.8s ease}
.hero-slide.active{opacity:1}
.hero-slide-bg{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.15) 100%);display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:0 80px}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.15);backdrop-filter:blur(10px);padding:6px 16px;border-radius:9999px;font-size:13px;color:var(--white);margin-bottom:16px;cursor:pointer;border:1px solid rgba(255,255,255,0.2)}
.hero-badge img{height:36px}
.hero-title{font-size:48px;font-weight:700;color:var(--white);margin-bottom:12px;max-width:550px;line-height:1.15}
.hero-desc{font-size:16px;color:rgba(255,255,255,0.9);max-width:480px;line-height:1.6}
.hero-dots{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);display:flex;gap:10px}
.hero-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.4);cursor:pointer;transition:var(--tr)}
.hero-dot.active{background:var(--white);transform:scale(1.2)}
.hero-arrow{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,0.15);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.2);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:20px;cursor:pointer;transition:var(--tr);z-index:5}
.hero-arrow:hover{background:rgba(255,255,255,0.3)}
.hero-arrow.prev{left:20px}
.hero-arrow.next{right:20px}

/* SEARCH BAR */
.search-section{position:relative;margin-top:-40px;z-index:10;padding:0 20px}
.search-bar{background:var(--white);border-radius:16px;box-shadow:var(--shadow-lg);padding:16px 20px;display:flex;align-items:center;gap:12px;max-width:95%;margin:0 auto;flex-wrap:wrap}
.search-label{font-size:12px;color:var(--text2);font-weight:500;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:4px}
.search-group{flex:1;min-width:180px;padding:8px 16px;border-right:1px solid var(--border)}
.search-group:last-of-type{border-right:none}
.search-input{width:100%;border:none;font-size:14px;color:var(--text);background:transparent}
.search-input::placeholder{color:var(--text3)}
.btn-go{background:var(--primary);color:var(--white);padding:14px 32px;border-radius:9999px;font-size:16px;font-weight:500;transition:var(--tr);text-transform:lowercase}
.btn-go:hover{background:var(--primary-dark);transform:translateY(-1px)}

/* HOTEL INTRO SECTION */
.hotel-intro{background:#EDE8F8;padding:60px 20px}
.hotel-intro-inner{max-width:95%;margin:0 auto;display:grid;grid-template-columns:22% 40% 35%;gap:3%;align-items:center}
.hotel-intro-city{font-size:42px;font-weight:800;color:var(--pink);letter-spacing:2px;line-height:1;margin-bottom:16px;text-transform:lowercase}
.hotel-intro-city span{color:var(--primary)}
.hotel-intro-name{font-size:16px;font-weight:700;color:var(--text);line-height:1.4;margin-bottom:16px;max-width:200px}
.hotel-intro-rating{display:flex;align-items:center;gap:8px;margin-bottom:24px}
.hi-stars{display:flex;gap:2px}
.hi-stars span{color:#F59E0B;font-size:16px}
.hi-rating-text{font-size:13px;font-weight:600;color:var(--text);background:var(--white);padding:3px 10px;border-radius:9999px;box-shadow:0 1px 4px rgba(0,0,0,0.08)}
.hotel-intro-info{display:flex;flex-direction:column;gap:12px}
.hi-info-item{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--text2);font-weight:500}
.hi-info-item svg{color:var(--primary);flex-shrink:0;opacity:0.7}
.hotel-intro-center{}
.hotel-intro-heading{font-size:26px;font-weight:700;color:var(--pink);margin-bottom:4px;line-height:1.3}
.hotel-intro-tagline{font-size:13px;font-weight:700;letter-spacing:4px;text-transform:uppercase;color:var(--primary);margin-bottom:20px}
.hotel-intro-text{font-size:14px;color:var(--text2);line-height:1.75;margin-bottom:14px}
.hotel-intro-features{margin-top:16px;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.hotel-intro-features li{font-size:13.5px;color:var(--text);font-weight:500;padding-left:20px;position:relative;line-height:1.5}
.hotel-intro-features li::before{content:'';position:absolute;left:0;top:7px;width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,var(--pink),var(--primary))}
.hotel-intro-right{display:flex;justify-content:center;align-items:center}
.hotel-intro-circle{width:100%;max-width:380px;aspect-ratio:1;border-radius:50%;overflow:hidden;box-shadow:0 20px 60px rgba(63,6,100,0.18);border:6px solid var(--white);position:relative}
.hotel-intro-circle::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;border-radius:50%;box-shadow:inset 0 0 30px rgba(63,6,100,0.15);pointer-events:none}
.hotel-intro-circle img{width:100%;height:100%;object-fit:cover;display:block}

/* GUEST DROPDOWN */
.guest-dropdown{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,0.15);padding:16px 20px;z-index:100;min-width:220px;margin-top:4px}
.guest-row{display:flex;align-items:center;justify-content:space-between;padding:8px 0}
.guest-row span{font-size:14px;color:#333;font-weight:500}
.guest-counter{display:flex;align-items:center;gap:12px}
.guest-btn{width:32px;height:32px;border-radius:50%;border:2px solid #ddd;background:#fff;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#333;transition:all 0.2s;font-weight:600;padding:0;line-height:1}
.guest-btn:hover{border-color:var(--primary);color:var(--primary);background:rgba(63,6,100,0.05)}
.guest-counter span{min-width:20px;text-align:center;font-size:15px;font-weight:600;color:#333}

/* CATEGORY CARDS */
.category-section{padding:60px 0 40px}
.category-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:32px;padding:0 20px;max-width:95%;margin-left:auto;margin-right:auto}
.explore-all{font-size:14px;color:var(--primary);font-weight:500;display:flex;align-items:center;gap:4px}
.explore-all:hover{gap:8px}
.category-slider{display:flex;gap:20px;overflow-x:auto;padding:0 20px 16px;max-width:95%;margin:0 auto;scroll-snap-type:x mandatory;-ms-overflow-style:none;scrollbar-width:none}
.category-slider::-webkit-scrollbar{display:none}
.category-card{min-width:240px;height:320px;border-radius:16px;overflow:hidden;position:relative;cursor:pointer;scroll-snap-align:start;flex-shrink:0;transition:transform 0.3s ease}
.category-card:hover{transform:translateY(-4px)}
.category-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.category-card:hover img{transform:scale(1.05)}
.category-card-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to top,rgba(0,0,0,0.6) 0%,transparent 60%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px}
.category-card-title{font-size:20px;font-weight:600;color:var(--white);margin-bottom:4px}
.category-card-link{font-size:13px;color:rgba(255,255,255,0.85);font-weight:500}
.category-dots{display:flex;justify-content:center;gap:8px;margin-top:24px}
.category-dot{width:8px;height:8px;border-radius:50%;background:#ccc;cursor:pointer;transition:var(--tr)}
.category-dot.active{background:var(--primary);width:24px;border-radius:4px}

/* MEMBERSHIP */
.membership-section{padding:48px 20px;max-width:95%;margin:0 auto;text-align:center}
.membership-section .section-desc{max-width:550px;margin:0 auto 32px}
.membership-buttons{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:48px}
.btn-join{background:var(--primary);color:var(--white);padding:12px 32px;border-radius:9999px;font-size:16px;font-weight:500;transition:var(--tr);box-shadow:0 2px 8px rgba(63,6,100,0.3)}
.btn-join:hover{background:var(--primary-dark);transform:translateY(-2px)}
.btn-outline{background:transparent;color:var(--primary);padding:12px 32px;border-radius:9999px;font-size:16px;font-weight:500;border:2px solid var(--primary);transition:var(--tr)}
.btn-outline:hover{background:var(--primary);color:var(--white)}
.benefits-slider{display:flex;gap:24px;overflow-x:auto;padding:16px 0;scroll-snap-type:x mandatory;-ms-overflow-style:none;scrollbar-width:none}
.benefits-slider::-webkit-scrollbar{display:none}
.benefit-card{min-width:140px;text-align:center;padding:20px 12px;border-radius:12px;transition:var(--tr);cursor:pointer;scroll-snap-align:start;flex-shrink:0}
.benefit-card:hover{background:var(--gray);transform:translateY(-2px)}
.benefit-card img{width:48px;height:48px;margin:0 auto 12px}
.benefit-card p{font-size:13px;color:var(--text2)}

/* DESTINATION / HOTEL / DINING CARDS (shared) */
.card-slider-section{padding:48px 0}
.card-slider-header{padding:0 20px;max-width:95%;margin:0 auto 32px}
.card-slider{display:flex;gap:20px;overflow-x:auto;padding:0 20px 16px;max-width:95%;margin:0 auto;scroll-snap-type:x mandatory;-ms-overflow-style:none;scrollbar-width:none}
.card-slider::-webkit-scrollbar{display:none}
.dest-card{min-width:0;border-radius:16px;overflow:hidden;position:relative;height:380px;cursor:pointer;scroll-snap-align:start;transition:transform 0.3s ease}
.dest-card:hover{transform:translateY(-4px)}
.dest-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.dest-card:hover img{transform:scale(1.05)}
.dest-slider-wrapper{position:relative;max-width:1320px;margin:0 auto;padding:0 20px}
.dest-slider-wrapper .dest-slider{max-width:none;margin:0;padding:0 0 16px 0;display:grid;grid-auto-flow:column;grid-auto-columns:305px;gap:20px}
.dest-featured-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;max-width:95%;margin:0 auto 24px;padding:0 20px}
.dest-featured-card{border-radius:16px;overflow:hidden;position:relative;height:360px;cursor:pointer;transition:transform 0.3s ease}
.dest-featured-card:hover{transform:translateY(-4px)}
.dest-featured-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.dest-featured-card:hover img{transform:scale(1.05)}
.dest-featured-card .dest-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.1) 50%);display:flex;flex-direction:column;justify-content:flex-end;padding:32px}
.dest-featured-title{font-size:24px;font-weight:600;color:var(--white);margin-bottom:10px}
.dest-featured-desc{font-size:15px;color:rgba(255,255,255,0.85);line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.dest-arrow{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;background:var(--white);box-shadow:0 2px 12px rgba(0,0,0,0.15);color:var(--text);display:flex;align-items:center;justify-content:center;font-size:24px;cursor:pointer;z-index:5;transition:all 0.3s ease;border:none}
.dest-arrow:hover{background:var(--primary);color:var(--white);box-shadow:0 4px 16px rgba(63,6,100,0.3)}
.dest-arrow.prev{left:-4px}
.dest-arrow.next{right:-4px}
.dest-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.1) 50%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px}
.dest-title{font-size:20px;font-weight:600;color:var(--white);margin-bottom:8px}
.dest-desc{font-size:14px;color:rgba(255,255,255,0.85);line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.dining-card{min-width:360px;height:300px;border-radius:16px;overflow:hidden;position:relative;cursor:pointer;scroll-snap-align:start;flex-shrink:0;transition:transform 0.3s ease}
.dining-card:hover{transform:translateY(-4px)}
.dining-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.dining-card:hover img{transform:scale(1.05)}
.dining-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to top,rgba(0,0,0,0.6) 0%,transparent 60%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px}
.dining-title{font-size:18px;font-weight:500;color:var(--white);margin-bottom:6px}
.dining-desc{font-size:13px;color:rgba(255,255,255,0.8);line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

/* HOTEL CARD */
.hotel-card{min-width:340px;height:240px;border-radius:16px;overflow:hidden;position:relative;cursor:pointer;scroll-snap-align:start;flex-shrink:0;transition:transform 0.3s ease}
.hotel-card:hover{transform:translateY(-4px)}
.hotel-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.hotel-card:hover img{transform:scale(1.05)}
.hotel-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to top,rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.1) 50%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px}
.hotel-location{font-size:12px;color:rgba(255,255,255,0.75);margin-bottom:4px}
.hotel-name{font-size:18px;font-weight:500;color:var(--white);margin-bottom:12px}
.btn-book{background:var(--white);color:var(--primary);padding:8px 20px;border-radius:9999px;font-size:13px;font-weight:500;align-self:flex-start;transition:var(--tr)}
.btn-book:hover{background:var(--gray)}
.hotel-dots{display:flex;justify-content:center;gap:8px;margin-top:24px}
.hotel-dot{width:8px;height:8px;border-radius:50%;background:#ccc;cursor:pointer;transition:var(--tr)}
.hotel-dot.active{background:var(--primary);width:24px;border-radius:4px}

/* FOOD CAROUSEL */
.food-section{padding:48px 0}
.food-header{display:flex;align-items:center;justify-content:space-between;padding:0 20px;max-width:95%;margin:0 auto 32px}
.btn-explore{background:var(--primary);color:var(--white);padding:10px 24px;border-radius:9999px;font-size:14px;font-weight:500;transition:var(--tr)}
.btn-explore:hover{background:var(--primary-dark)}
.food-carousel-wrapper{position:relative;max-width:95%;margin:0 auto;padding:0 20px}
.food-carousel{display:flex;gap:16px;overflow:hidden;border-radius:16px}
.food-slide-group{display:flex;gap:16px;transition:transform 0.5s ease;flex-shrink:0}
.food-item{min-width:calc(25% - 12px);border-radius:12px;overflow:hidden;height:200px;position:relative}
.food-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.food-item:hover img{transform:scale(1.08)}
.food-carousel-dots{display:flex;justify-content:center;gap:8px;margin-top:20px}
.food-dot{width:8px;height:8px;border-radius:50%;background:#ccc;cursor:pointer;transition:var(--tr)}
.food-dot.active{background:var(--primary);width:24px;border-radius:4px}
.food-arrow{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;background:var(--white);box-shadow:var(--shadow-md);display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--text);z-index:5;transition:var(--tr)}
.food-arrow:hover{background:var(--gray)}
.food-arrow.prev{left:0}
.food-arrow.next{right:0}

/* BRANDS */
.brand-section{padding:48px 20px;max-width:95%;margin:0 auto}
.brand-grid{display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap}
.brand-item{opacity:0.6;transition:var(--tr);cursor:pointer}
.brand-item:hover{opacity:1}
.brand-item img{height:40px;width:auto}

/* SUBSCRIBE */
.subscribe-section{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 50%,#1a0230 100%);padding:80px 20px;text-align:center}
.subscribe-desc{color:rgba(255,255,255,0.75);font-size:16px;margin-bottom:32px;max-width:500px;margin-left:auto;margin-right:auto}
.subscribe-form{display:flex;align-items:center;max-width:480px;margin:0 auto;background:rgba(255,255,255,0.1);border-radius:9999px;border:1px solid rgba(255,255,255,0.2);overflow:hidden}
.subscribe-input{flex:1;padding:14px 24px;background:transparent;border:none;color:var(--white);font-size:14px}
.subscribe-input::placeholder{color:rgba(255,255,255,0.5)}
.btn-subscribe{background:var(--white);color:var(--primary);padding:14px 28px;font-size:14px;font-weight:600;border-radius:9999px;margin:4px;transition:var(--tr)}
.btn-subscribe:hover{background:var(--gray)}

/* FOOTER */
.footer{background:var(--white);padding:60px 20px 30px;border-top:1px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;max-width:95%;margin:0 auto;padding-bottom:40px;border-bottom:1px solid var(--border)}
.footer-brand img{height:36px;margin-bottom:16px}
.footer-brand p{font-size:14px;color:var(--text2);line-height:1.6;margin-bottom:16px}
.footer-social{display:flex;gap:12px}
.footer-social a{width:36px;height:36px;border-radius:50%;background:var(--gray);display:flex;align-items:center;justify-content:center;transition:var(--tr)}
.footer-social a:hover{background:var(--primary)}
.footer-social a:hover img{filter:brightness(10)}
.footer-social img{width:36px;height:36px}
.footer-heading{font-size:20px;font-weight:600;color:var(--text2);margin-bottom:20px}
.footer-links li{margin-bottom:12px}
.footer-links a{font-size:14px;color:var(--text2);transition:var(--tr)}
.footer-links a:hover{color:var(--primary);padding-left:4px}
.footer-contact a{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--text2);margin-bottom:12px}
.footer-contact a:hover{color:var(--primary)}
.footer-contact img{width:20px;height:20px}
.footer-app{display:flex;gap:12px;margin-top:20px}
.footer-app img{height:40px;border-radius:8px;cursor:pointer;transition:var(--tr)}
.footer-app img:hover{transform:translateY(-2px)}
.footer-bottom{max-width:95%;margin:0 auto;padding-top:24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px}
.footer-bottom-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-bottom-links a{font-size:13px;color:var(--text2)}
.footer-bottom-links a:hover{color:var(--primary)}
.footer-copyright{font-size:13px;color:var(--text3)}
.footer-bottom-right{display:flex;gap:20px}
.footer-bottom-right a{font-size:13px;color:var(--text2)}
.footer-bottom-right a:hover{color:var(--primary)}

/* SCROLL TOP */
.scroll-top{position:fixed;bottom:30px;right:30px;width:44px;height:44px;border-radius:50%;background:var(--primary);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:20px;box-shadow:var(--shadow-md);opacity:0;visibility:hidden;transition:var(--tr);z-index:999}
.scroll-top.visible{opacity:1;visibility:visible}
.scroll-top:hover{background:var(--primary-dark);transform:translateY(-2px)}

/* ========== INNER PAGE STYLES ========== */
.page-banner{position:relative;height:320px;overflow:hidden;display:flex;align-items:center;justify-content:center;text-align:center}
.page-banner img{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;object-fit:cover}
.page-banner-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:2}
.page-banner h1{font-size:48px;font-weight:700;color:var(--white);margin-bottom:8px}
.page-banner p{font-size:16px;color:rgba(255,255,255,0.85);max-width:500px}
.breadcrumb{display:flex;gap:8px;font-size:14px;color:rgba(255,255,255,0.7);margin-bottom:16px}
.breadcrumb a{color:rgba(255,255,255,0.7)}
.breadcrumb a:hover{color:var(--white)}

/* Inner Page Content */
.page-section{padding:60px 20px}
.page-section .container{max-width:95%;margin:0 auto}
.inner-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.inner-card{border-radius:16px;overflow:hidden;background:var(--white);box-shadow:var(--shadow);transition:var(--tr)}
.inner-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.inner-card-img{height:240px;overflow:hidden}
.inner-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.inner-card:hover .inner-card-img img{transform:scale(1.05)}
.inner-card-body{padding:20px}
.inner-card-body h3{font-size:18px;font-weight:600;margin-bottom:8px;color:var(--text)}
.inner-card-body p{font-size:14px;color:var(--text2);line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.inner-card-meta{display:flex;align-items:center;justify-content:space-between;margin-top:16px;padding-top:16px;border-top:1px solid var(--border)}

/* Tags / Badges */
.tag{display:inline-block;padding:4px 12px;border-radius:9999px;font-size:12px;font-weight:500}
.tag-pink{background:rgba(217,13,146,0.1);color:var(--pink)}
.tag-purple{background:rgba(63,6,100,0.08);color:var(--primary)}
.badge-discount{background:var(--pink);color:var(--white);padding:4px 12px;border-radius:9999px;font-size:12px;font-weight:600}

/* Two Column Layout */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.two-col-text h2{font-size:32px;font-weight:600;margin-bottom:16px}
.two-col-text p{font-size:15px;color:var(--text2);line-height:1.8;margin-bottom:16px}
.two-col-image{border-radius:16px;overflow:hidden;height:400px}
.two-col-image img{width:100%;height:100%;object-fit:cover}

/* Offer Cards */
.offer-card{min-width:380px;border-radius:16px;overflow:hidden;background:var(--white);box-shadow:var(--shadow);scroll-snap-align:start;flex-shrink:0;transition:var(--tr)}
.offer-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.offer-card-img{height:220px;overflow:hidden;position:relative}
.offer-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.offer-card:hover .offer-card-img img{transform:scale(1.05)}
.offer-card-badge{position:absolute;top:16px;right:16px;background:var(--pink);color:var(--white);padding:6px 14px;border-radius:9999px;font-size:14px;font-weight:700}
.offer-card-body{padding:20px}
.offer-card-body h3{font-size:18px;font-weight:600;margin-bottom:8px}
.offer-card-body p{font-size:14px;color:var(--text2);line-height:1.6;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.offer-code{display:inline-block;background:var(--gray);padding:6px 16px;border-radius:8px;font-size:13px;font-weight:600;color:var(--primary);letter-spacing:1px}
.offer-valid{font-size:12px;color:var(--text3);margin-top:8px}

/* Hotel Detail Page */
.hotel-detail-hero{position:relative;height:450px;overflow:hidden}
.hotel-detail-hero img{width:100%;height:100%;object-fit:cover}
.hotel-detail-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,transparent 50%);display:flex;flex-direction:column;justify-content:flex-end;padding:60px;max-width:95%;margin:0 auto}
.hotel-detail-overlay h1{font-size:40px;font-weight:700;color:var(--white);margin-bottom:8px}
.hotel-detail-overlay p{font-size:16px;color:rgba(255,255,255,0.85)}
.hotel-info-grid{display:grid;grid-template-columns:2fr 1fr;gap:40px;padding:60px 20px;max-width:95%;margin:0 auto}
.amenity-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.amenity-tag{background:var(--gray);padding:6px 14px;border-radius:9999px;font-size:13px;color:var(--text2)}

/* Contact Page */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;padding:60px 20px;max-width:95%;margin:0 auto}
.form-group{margin-bottom:20px}
.form-label{display:block;font-size:14px;font-weight:500;color:var(--text);margin-bottom:6px}
.form-input{width:100%;padding:12px 16px;border:1px solid var(--border);border-radius:10px;font-size:14px;transition:var(--tr)}
.form-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(63,6,100,0.1)}
textarea.form-input{min-height:120px;resize:vertical}

/* Blog */
.blog-card{border-radius:16px;overflow:hidden;background:var(--white);box-shadow:var(--shadow);transition:var(--tr)}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.blog-card-img{height:220px;overflow:hidden}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:24px}
.blog-card-body h3{font-size:18px;font-weight:600;margin-bottom:8px;line-height:1.4}
.blog-card-body h3 a:hover{color:var(--primary)}
.blog-card-body p{font-size:14px;color:var(--text2);line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.blog-meta{display:flex;gap:16px;margin-top:12px;font-size:13px;color:var(--text3)}

/* FAQ */
.faq-item{border:1px solid var(--border);border-radius:12px;margin-bottom:12px;overflow:hidden}
.faq-question{padding:18px 24px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:var(--white);transition:var(--tr)}
.faq-question:hover{color:var(--primary)}
.faq-question .faq-icon{transition:var(--tr);font-size:20px;color:var(--text3)}
.faq-item.open .faq-question .faq-icon{transform:rotate(45deg);color:var(--primary)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s ease}
.faq-answer-inner{padding:0 24px 18px;font-size:14px;color:var(--text2);line-height:1.8}
.faq-item.open .faq-answer{max-height:500px}

/* Membership Tiers */
.tier-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.tier-card{border:2px solid var(--border);border-radius:16px;padding:32px;text-align:center;transition:var(--tr);position:relative}
.tier-card:hover{border-color:var(--primary);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.tier-card.featured{border-color:var(--primary);background:linear-gradient(135deg,rgba(63,6,100,0.03),rgba(217,13,146,0.03))}
.tier-card.featured::before{content:'MOST POPULAR';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--primary);color:var(--white);padding:4px 16px;border-radius:9999px;font-size:11px;font-weight:600;letter-spacing:0.5px}
.tier-name{font-size:24px;font-weight:700;color:var(--primary);margin-bottom:8px}
.tier-price{font-size:36px;font-weight:700;color:var(--text);margin-bottom:4px}
.tier-price span{font-size:14px;font-weight:400;color:var(--text2)}
.tier-features{text-align:left;margin:24px 0}
.tier-features li{padding:8px 0;font-size:14px;color:var(--text2);display:flex;align-items:center;gap:10px}
.tier-features li::before{content:'✓';color:var(--primary);font-weight:700}

/* Animations */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.animate-fade-up{animation:fadeUp 0.6s ease forwards}

/* MOBILE */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .inner-grid{grid-template-columns:repeat(2,1fr)}
  .tier-grid{grid-template-columns:1fr 1fr}
  .food-item{min-width:calc(33.333% - 11px)}
  .hotel-info-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .top-bar{display:none}
  .nav-links{display:none}
  .mobile-menu-btn{display:block}
  .hero-section{height:450px}
  .hero-title{font-size:32px}
  .hero-overlay{padding:0 24px}
  .search-bar{flex-direction:column;gap:8px;padding:16px}
  .search-group{width:100%;border-right:none;border-bottom:1px solid var(--border);padding:8px 0}
  .search-group:last-of-type{border-bottom:none}
  .btn-go{width:100%;text-align:center}
  .section-title{font-size:28px}
  .page-banner{height:250px}
  .page-banner h1{font-size:32px}
  .category-card{min-width:200px;height:260px}
  .dest-card{height:340px}
  .dest-arrow{display:none}
  .dest-featured-grid{grid-template-columns:1fr}
  .dest-featured-card{height:280px}
  .dest-slider-wrapper .dest-slider{grid-auto-columns:350px}
  .hotel-intro{padding:40px 16px}
  .hotel-intro-inner{grid-template-columns:1fr;gap:28px;text-align:center}
  .hotel-intro-name{max-width:100%}
  .hotel-intro-rating{justify-content:center}
  .hotel-intro-info{align-items:center}
  .hotel-intro-circle{max-width:260px}
  .hotel-intro-heading{font-size:22px}
  .dining-card{min-width:300px;height:260px}
  .hotel-card{min-width:300px;height:200px}
  .offer-card{min-width:300px}
  .membership-buttons{flex-direction:column}
  .food-item{min-width:calc(50% - 8px)}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;text-align:center}
  .subscribe-form{flex-direction:column;border-radius:12px;padding:8px}
  .subscribe-input{text-align:center}
  .btn-subscribe{margin:0;width:100%;text-align:center}
  .inner-grid{grid-template-columns:1fr}
  .tier-grid{grid-template-columns:1fr}
  .hotel-detail-hero{height:300px}
  .hotel-detail-overlay{padding:24px}
  .hotel-detail-overlay h1{font-size:28px}
}
@media(max-width:480px){
  .hero-section{height:380px}
  .hero-title{font-size:26px}
  .category-card{min-width:180px;height:240px}
  .dest-card{height:300px}
  .dest-slider-wrapper .dest-slider{grid-auto-columns:280px}
  .food-item{min-width:100%}
  .brand-grid{gap:24px}
  .brand-item img{height:30px}
}

/* MOBILE NAV */
.mobile-nav{position:fixed;top:0;right:-100%;width:80%;max-width:360px;height:100vh;background:var(--white);z-index:2000;transition:right 0.3s ease;padding:24px;overflow-y:auto;box-shadow:-4px 0 30px rgba(63,6,100,0.15)}
.mobile-nav.open{right:0}
.mobile-nav-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:1999;opacity:0;visibility:hidden;transition:var(--tr)}
.mobile-nav-overlay.open{opacity:1;visibility:visible}
.mobile-nav-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:32px;padding-bottom:20px;border-bottom:1px solid var(--border)}
.mobile-nav-close{width:36px;height:36px;border-radius:50%;background:var(--gray);display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--text);transition:var(--tr)}
.mobile-nav-close:hover{background:var(--primary);color:var(--white)}
.mobile-nav-link{display:block;padding:14px 0;font-size:16px;color:var(--text);border-bottom:1px solid var(--border);font-weight:500;transition:var(--tr)}
.mobile-nav-link:hover{color:var(--primary);padding-left:6px}
.mobile-nav-sub{color:var(--text2);font-weight:400;font-size:14px}
.mobile-nav-sub:hover{color:var(--primary);padding-left:6px}
.mobile-nav-divider{height:1px;background:var(--border);margin:12px 0}
.mobile-btn-booknow{display:block;width:100%;background:linear-gradient(135deg,#D90D92 0%,#B80A7B 100%);color:#fff;padding:15px;border-radius:9999px;font-size:16px;font-weight:600;text-align:center;margin-top:16px;box-shadow:0 4px 16px rgba(217,13,146,0.35);transition:var(--tr)}
.mobile-btn-booknow:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(217,13,146,0.5)}
.mobile-btn-signin{display:block;width:100%;background:var(--white);color:var(--primary);padding:14px;border-radius:9999px;font-size:16px;font-weight:600;text-align:center;margin-top:10px;border:2px solid var(--primary);transition:var(--tr)}
.mobile-btn-signin:hover{background:var(--primary);color:var(--white)}

/* ========== SPLIT ROWS — STAY / DINE / MEET / FACILITIES ========== */
.split-rows-section{padding:80px 0}
.split-row{display:flex;align-items:stretch;width:100%;min-height:420px;max-width:95%;margin:0 auto;overflow:hidden;border-radius:16px;margin-bottom:16px}
.split-row:last-child{margin-bottom:0}
.split-row--normal{flex-direction:row}
.split-row--reverse{flex-direction:row-reverse}
.split-images-wrapper{width:70%;min-height:420px;overflow:hidden;position:relative;flex-shrink:0;background:var(--gray)}
.split-images-track{position:absolute;top:0;left:0;width:100%;height:100%}
.split-img-item{position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;transition:opacity 1s ease-in-out;overflow:hidden;z-index:0}
.split-img-item.active{opacity:1;z-index:1}
.split-img-item img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1);transition:transform 6s ease-out}
.split-img-item.active img{transform:scale(1.08)}
.split-img-item::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(90deg,rgba(0,0,0,0) 50%,rgba(0,0,0,0.2) 100%);pointer-events:none}
.split-row--reverse .split-img-item::after{background:linear-gradient(-90deg,rgba(0,0,0,0) 50%,rgba(0,0,0,0.2) 100%)}
.split-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,0.9);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--text);box-shadow:0 2px 8px rgba(0,0,0,0.15);transition:var(--tr)}
.split-arrow:hover{background:var(--white);box-shadow:0 4px 16px rgba(0,0,0,0.2)}
.split-arrow.prev{left:12px}
.split-arrow.next{right:12px}
.split-dots{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10}
.split-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.5);border:none;cursor:pointer;transition:var(--tr);padding:0}
.split-dot.active{background:var(--white);width:24px;border-radius:4px}
.split-text-wrapper{width:30%;display:flex;flex-direction:column;justify-content:center;padding:60px 40px;background:var(--white);position:relative;z-index:2}
.split-label{display:inline-block;font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--pink);margin-bottom:16px}
.split-title{font-size:28px;font-weight:600;color:var(--text);line-height:1.3;margin-bottom:16px}
.split-desc{font-size:15px;color:var(--text2);line-height:1.7;margin-bottom:24px}
.split-link{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:600;color:var(--primary);border-bottom:2px solid var(--primary);padding-bottom:2px;align-self:flex-start;transition:var(--tr)}
.split-link:hover{color:var(--pink);border-color:var(--pink);gap:12px}
.split-link svg{transition:var(--tr)}
.split-row:nth-child(even) .split-text-wrapper{background:var(--gray)}
.split-row--normal .split-text-wrapper{box-shadow:-8px 0 30px rgba(0,0,0,0.08)}
.split-row--reverse .split-text-wrapper{box-shadow:8px 0 30px rgba(0,0,0,0.08)}
@media(max-width:1024px){
  .split-row{flex-direction:column!important;min-height:auto;border-radius:12px}
  .split-images-wrapper{width:100%;height:280px}
  .split-text-wrapper{width:100%;padding:36px 24px;box-shadow:none!important}
  .split-img-item{position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;transition:opacity 1s ease-in-out;overflow:hidden;z-index:0}
}
@media(max-width:768px){
  .split-rows-section{padding:48px 0}
  .split-images-wrapper{height:220px}
  .split-title{font-size:22px}
  .split-text-wrapper{padding:28px 20px}
  .split-arrow{width:32px;height:32px;font-size:16px}
}
@media(max-width:480px){
  .split-images-wrapper{height:180px}
  .split-title{font-size:20px}
  .split-desc{font-size:14px}
}

/* ========== HOTEL PRESENTATION — CORPORATE SECTION ========== */
.hotel-pres-section{padding:80px 0;background:linear-gradient(135deg,#F0E6F6 0%,#EDE4F3 40%,#F9F5FB 100%)}
.hotel-pres-grid{display:grid;grid-template-columns:200px 1fr 420px;gap:32px;max-width:95%;margin:0 auto;padding:0 20px;align-items:center}
.hotel-pres-left{display:flex;flex-direction:column;gap:20px}
.hotel-pres-brand{position:relative;height:60px;display:flex;align-items:center;justify-content:center}
.hotel-pres-city-tag{font-size:32px;color:var(--pink);font-weight:300;letter-spacing:2px}
.hotel-pres-city-tag strong{font-weight:700}
.hotel-pres-name{font-size:15px;font-weight:700;color:var(--text);letter-spacing:3px;text-transform:uppercase;line-height:1.5}
.hotel-pres-location{font-size:13px;color:var(--text3);font-weight:500;letter-spacing:1px}
.hotel-pres-rating{display:flex;flex-direction:column;gap:6px}
.hotel-pres-rating-label{font-size:11px;color:var(--text3);text-transform:uppercase;letter-spacing:1px;font-weight:500}
.hotel-pres-stars{display:flex;gap:2px}
.hotel-pres-stars .star{font-size:16px;color:var(--border)}
.hotel-pres-stars .star.filled{color:#22C55E}
.hotel-pres-info-items{display:flex;flex-direction:column;gap:14px;margin-top:8px}
.hotel-pres-info-item{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--text2);font-weight:500}
.hotel-pres-info-item svg{flex-shrink:0;color:var(--primary);opacity:0.7}
.hotel-pres-center{display:flex;flex-direction:column;gap:16px}
.hotel-pres-heading{font-size:36px;font-weight:800;color:var(--primary);line-height:1.2;letter-spacing:-0.5px}
.hotel-pres-tagline{font-size:14px;font-weight:600;color:var(--pink);text-transform:uppercase;letter-spacing:3px;font-style:italic}
.hotel-pres-desc{font-size:15px;color:var(--text2);line-height:1.8}
.hotel-pres-features-intro{font-size:14px;color:var(--text2);line-height:1.8}
.hotel-pres-features{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:4px}
.hotel-pres-features li{font-size:14px;color:var(--text);font-weight:500;padding-left:20px;position:relative;line-height:1.6}
.hotel-pres-features li::before{content:'';position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:50%;background:var(--pink)}
.hotel-pres-right{display:flex;align-items:center;justify-content:center}
.hotel-pres-img-wrap{width:420px;height:420px;border-radius:50%;overflow:hidden;box-shadow:0 25px 70px rgba(63,6,100,0.2);border:6px solid var(--white);position:relative}
.hotel-pres-img-wrap img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:1024px){
  .hotel-pres-grid{grid-template-columns:160px 1fr 340px;gap:24px}
  .hotel-pres-heading{font-size:28px}
  .hotel-pres-img-wrap{width:340px;height:340px}
}
@media(max-width:768px){
  .hotel-pres-section{padding:48px 0}
  .hotel-pres-grid{grid-template-columns:1fr;gap:32px;text-align:center}
  .hotel-pres-left{align-items:center}
  .hotel-pres-info-items{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:16px}
  .hotel-pres-center{align-items:center}
  .hotel-pres-heading{font-size:26px}
  .hotel-pres-img-wrap{width:280px;height:280px;margin:0 auto}
  .hotel-pres-features li{text-align:left}
}
@media(max-width:480px){
  .hotel-pres-heading{font-size:22px}
  .hotel-pres-city-tag{font-size:26px}
  .hotel-pres-img-wrap{width:200px;height:200px}
  .hotel-pres-info-item{font-size:11px}
}

/* ========== OUR VEGA — CORPORATE HOTEL PAGE ========== */
.about-hero{position:relative;height:85vh;min-height:550px;overflow:hidden;display:flex;align-items:center;justify-content:center;text-align:center}
.about-hero img{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;object-fit:cover}
.about-hero-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to bottom,rgba(45,4,72,0.3) 0%,rgba(0,0,0,0.55) 50%,rgba(45,4,72,0.8) 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:2;padding:0 20px}
.about-hero-tag{display:inline-block;padding:8px 24px;border:1px solid rgba(255,255,255,0.4);border-radius:9999px;color:rgba(255,255,255,0.9);font-size:13px;font-weight:500;letter-spacing:3px;text-transform:uppercase;margin-bottom:24px}
.about-hero h1{font-size:64px;font-weight:700;color:var(--white);line-height:1.15;margin-bottom:16px;letter-spacing:-0.5px}
.about-hero h1 span{display:block;font-size:22px;font-weight:400;color:rgba(255,255,255,0.8);letter-spacing:1px;margin-top:8px}
.about-hero p{font-size:17px;color:rgba(255,255,255,0.8);max-width:600px;line-height:1.7}
.about-hero-scroll{position:absolute;bottom:32px;left:50%;transform:translateX(-50%);z-index:3;color:rgba(255,255,255,0.6);font-size:13px;letter-spacing:1px;display:flex;flex-direction:column;align-items:center;gap:8px;animation:aboutBounce 2s infinite}
.about-hero-scroll .scroll-line{width:1px;height:40px;background:linear-gradient(to bottom,rgba(255,255,255,0.6),transparent)}
@keyframes aboutBounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* WELCOME STATEMENT */
.about-welcome{padding:100px 20px;text-align:center;max-width:900px;margin:0 auto}
.about-welcome-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:24px}
.about-welcome-text{font-size:30px;font-weight:400;color:var(--text);line-height:1.6}
.about-welcome-text em{font-style:normal;color:var(--primary);font-weight:600}
.about-welcome-divider{width:60px;height:3px;background:linear-gradient(to right,var(--primary),var(--pink));margin:40px auto 0;border-radius:2px}

/* OUR STORY */
.about-story{padding:80px 20px}
.about-story .container{max-width:95%;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-story-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px}
.about-story h2{font-size:40px;font-weight:600;color:var(--text);margin-bottom:24px;line-height:1.25}
.about-story h2 span{color:var(--primary)}
.about-story p{font-size:15px;color:var(--text2);line-height:1.8;margin-bottom:16px}
.about-story-img{border-radius:20px;overflow:hidden;height:480px;box-shadow:0 20px 60px rgba(63,6,100,0.12)}
.about-story-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.8s ease}
.about-story-img:hover img{transform:scale(1.03)}
.about-story-inner{max-width:95%;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-story-text h2{font-size:40px;font-weight:600;color:var(--text);margin-bottom:24px;line-height:1.25}
.about-story-text h2 span{color:var(--primary)}
.about-why-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:22px}
.about-why-list li{display:flex;gap:16px;align-items:flex-start}
.about-why-icon{min-width:44px;height:44px;background:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:18px;flex-shrink:0}
.about-why-list li strong{font-size:16px;display:block;margin-bottom:4px;color:var(--text)}
.about-why-list li p{color:var(--text2);margin:0;font-size:14px;line-height:1.7}

/* VISION & MISSION */
.about-vm{padding:80px 20px;background:var(--gray)}
.about-vm .container{max-width:95%;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:32px}
.about-vm-card{padding:48px 40px;border-radius:20px;position:relative;overflow:hidden;transition:transform 0.3s ease}
.about-vm-card:hover{transform:translateY(-4px)}
.about-vm-card.vision{background:linear-gradient(135deg,#3F0664 0%,#2D0448 100%);color:var(--white)}
.about-vm-card.mission{background:var(--white);color:var(--text);box-shadow:0 4px 24px rgba(0,0,0,0.08)}
.about-vm-card .vm-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:24px;font-size:26px}
.about-vm-card.vision .vm-icon{background:rgba(255,255,255,0.12)}
.about-vm-card.mission .vm-icon{background:linear-gradient(135deg,#3F0664,#D90D92);color:var(--white)}
.about-vm-card h3{font-size:24px;font-weight:600;margin-bottom:16px}
.about-vm-card.vision h3{color:var(--white)}
.about-vm-card p{font-size:15px;line-height:1.8}
.about-vm-card.vision p{color:rgba(255,255,255,0.8)}
.about-vm-card.mission p{color:var(--text2)}

/* STATS BAR */
.about-stats{background:linear-gradient(135deg,#1a0230 0%,#3F0664 50%,#2D0448 100%);padding:64px 20px}
.about-stats .container{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center}
.about-stat-num{font-size:52px;font-weight:800;color:var(--white);line-height:1;margin-bottom:8px}
.about-stat-num span{font-size:28px;font-weight:400;color:var(--pink);margin-left:2px}
.about-stat-label{font-size:14px;color:rgba(255,255,255,0.65);letter-spacing:0.5px}
.about-stat-divider{display:none}.about-stats .container>div:not(.about-stat-divider){position:relative}.about-stats .container>div:not(.about-stat-divider):not(:last-child)::after{content:'';position:absolute;right:-16px;top:15%;height:70%;width:1px;background:rgba(255,255,255,0.12)}

/* WHAT SETS US APART */
.about-features{padding:80px 20px}
.about-features .container{max-width:95%;margin:0 auto}
.about-features-header{text-align:center;margin-bottom:56px}
.about-features-header h2{font-size:40px;font-weight:600;color:var(--text);margin-bottom:12px}
.about-features-header p{font-size:16px;color:var(--text2);max-width:550px;margin:0 auto}
.about-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.about-feature-card{padding:36px 28px;border-radius:20px;background:var(--white);border:1px solid var(--border);transition:all 0.3s ease;position:relative;overflow:hidden}
.about-feature-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(to right,var(--primary),var(--pink));transform:scaleX(0);transform-origin:left;transition:transform 0.3s ease}
.about-feature-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(63,6,100,0.1);border-color:transparent}
.about-feature-card:hover::before{transform:scaleX(1)}
.about-feature-icon{width:52px;height:52px;border-radius:14px;background:linear-gradient(135deg,rgba(63,6,100,0.08),rgba(217,13,146,0.08));display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:24px;transition:all 0.3s ease}
.about-feature-card:hover .about-feature-icon{background:linear-gradient(135deg,var(--primary),var(--pink));color:var(--white)}
.about-feature-card h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:10px}
.about-feature-card p{font-size:14px;color:var(--text2);line-height:1.7}

/* EXPERIENCE GALLERY */
.about-exp{padding:0 20px 80px;max-width:95%;margin:0 auto}
.about-exp-header{text-align:center;margin-bottom:48px}
.about-exp-header h2{font-size:40px;font-weight:600;color:var(--text);margin-bottom:12px}
.about-exp-header p{font-size:16px;color:var(--text2)}
.about-exp-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:320px 320px;gap:20px}
.about-exp-grid .exp-img:first-child{grid-row:1/3;border-radius:20px;overflow:hidden}
.about-exp-grid .exp-img{border-radius:20px;overflow:hidden;position:relative;cursor:pointer}
.about-exp-grid .exp-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.about-exp-grid .exp-img:hover img{transform:scale(1.05)}
.about-exp-grid .exp-img .exp-img-label{position:absolute;bottom:20px;left:20px;background:rgba(0,0,0,0.5);backdrop-filter:blur(8px);color:var(--white);padding:8px 16px;border-radius:8px;font-size:13px;font-weight:500;letter-spacing:0.3px}

/* PHILOSOPHY / QUOTE */
.about-philosophy{background:var(--primary-dark);padding:100px 20px;text-align:center;position:relative;overflow:hidden}
.about-philosophy::before{content:'\201C';position:absolute;top:40px;left:50%;transform:translateX(-50%);font-size:300px;color:rgba(255,255,255,0.04);font-family:Georgia,serif;line-height:1}
.about-philosophy-content{max-width:800px;margin:0 auto;position:relative;z-index:2}
.about-philosophy blockquote{font-size:26px;font-weight:400;color:var(--white);line-height:1.7;font-style:italic;margin-bottom:32px}
.about-philosophy cite{font-size:15px;color:var(--pink);font-style:normal;font-weight:500;letter-spacing:0.5px}
.about-philosophy cite span{display:block;font-size:13px;color:rgba(255,255,255,0.5);margin-top:4px;font-weight:400;letter-spacing:0}

/* OUR VEGA CTA */
.about-cta{background:linear-gradient(135deg,var(--pink) 0%,var(--primary) 100%);padding:80px 20px;text-align:center}
.about-cta h2{font-size:40px;font-weight:600;color:var(--white);margin-bottom:16px}
.about-cta p{font-size:16px;color:rgba(255,255,255,0.85);max-width:500px;margin:0 auto 32px;line-height:1.7}
.about-cta .btn-cta{display:inline-block;padding:16px 44px;background:var(--white);color:var(--primary);font-size:16px;font-weight:600;border-radius:9999px;transition:all 0.3s ease;box-shadow:0 4px 20px rgba(0,0,0,0.15)}
.about-cta .btn-cta:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,0.25)}

/* RESPONSIVE — ABOUT PAGE */
@media(max-width:1024px){
  .about-hero h1{font-size:48px}
  .about-story .container{gap:40px}
  .about-story-img{height:380px}
  .about-stats .container{grid-template-columns:repeat(4,1fr);gap:20px}
  .about-stats .container>div:not(.about-stat-divider)::after{right:-10px}
  .about-stat-num{font-size:40px}
  .about-features-grid{grid-template-columns:repeat(2,1fr)}
  .about-exp-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .about-exp-grid .exp-img:first-child{grid-row:auto;grid-column:1/3}
}
@media(max-width:768px){
  .about-hero{height:65vh;min-height:420px}
  .about-hero h1{font-size:36px}
  .about-hero h1 span{font-size:18px}
  .about-hero p{font-size:15px}
  .about-welcome{padding:60px 20px}
  .about-welcome-text{font-size:24px}
  .about-story .container{grid-template-columns:1fr;gap:32px}
  .about-story-inner{grid-template-columns:1fr;gap:32px}
  .about-story-img{height:300px;order:-1}
  .about-vm .container{grid-template-columns:1fr}
  .about-vm-card{padding:36px 28px}
  .about-stats .container{grid-template-columns:repeat(2,1fr);gap:24px}
  .about-stats .container>div:not(.about-stat-divider)::after{right:-12px}
  .about-features-grid{grid-template-columns:1fr;gap:20px}
  .about-exp-grid{grid-template-columns:1fr;grid-template-rows:auto}
  .about-exp-grid .exp-img:first-child{grid-column:auto}
  .about-exp-grid .exp-img{height:240px}
  .about-philosophy blockquote{font-size:20px}
  .about-philosophy{padding:70px 20px}
  .about-cta h2{font-size:30px}
  .about-cta{padding:60px 20px}
  .about-story h2{font-size:30px}
  .about-features-header h2,.about-exp-header h2{font-size:30px}
}
@media(max-width:480px){
  .about-hero{height:55vh;min-height:360px}
  .about-hero h1{font-size:28px}
  .about-hero-tag{font-size:11px;padding:6px 16px;letter-spacing:2px}
  .about-welcome-text{font-size:20px}
  .about-vm-card{padding:28px 24px}
  .about-stat-num{font-size:34px}
  .about-philosophy blockquote{font-size:18px}
}

/* ========== STAY PAGE — TAB ROOMS ========== */
.stay-rooms-section{padding:80px 20px;max-width:95%;margin:0 auto}
.stay-rooms-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);text-align:center;margin-bottom:12px}
.stay-rooms-title{font-size:40px;font-weight:600;color:var(--text);text-align:center;margin-bottom:12px}
.stay-rooms-subtitle{font-size:16px;color:var(--text2);text-align:center;max-width:600px;margin:0 auto 40px;line-height:1.6}

/* TABS */
.stay-room-tabs{display:flex;justify-content:center;gap:0;margin-bottom:0;border-bottom:2px solid var(--border);max-width:600px;margin-left:auto;margin-right:auto}
.stay-room-tab{padding:14px 32px;font-size:15px;font-weight:600;color:var(--text2);cursor:pointer;border:none;background:none;position:relative;transition:all 0.3s ease;letter-spacing:0.5px;font-family:var(--font)}
.stay-room-tab::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:3px;background:var(--pink);transform:scaleX(0);transition:transform 0.3s ease}
.stay-room-tab.active{color:var(--primary)}
.stay-room-tab.active::after{transform:scaleX(1)}
.stay-room-tab:hover{color:var(--primary)}

/* ROOM CONTENT — IMAGE LEFT + CARD RIGHT */
.stay-room-panel{display:none;margin-top:40px}
.stay-room-panel.active{display:grid;grid-template-columns:1.3fr 1fr;gap:0;border-radius:20px;overflow:hidden;box-shadow:0 12px 48px rgba(63,6,100,0.1)}
.stay-room-banner{position:relative;min-height:480px;overflow:hidden}
.stay-room-slider{position:relative;width:100%;height:100%}
.stay-room-slide{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;transition:opacity 0.7s ease}
.stay-room-slide.active{opacity:1}
.stay-room-slide img{width:100%;height:100%;object-fit:cover}
.stay-room-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:3}
.stay-room-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.4);cursor:pointer;transition:all 0.3s ease;border:none;padding:0}
.stay-room-dot.active{background:var(--white);transform:scale(1.2)}
.stay-room-dot:hover{background:rgba(255,255,255,0.8)}
.stay-room-arrow{position:absolute;top:50%;transform:translateY(-50%);width:36px;height:36px;border-radius:50%;background:rgba(0,0,0,0.35);backdrop-filter:blur(4px);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:20px;cursor:pointer;z-index:3;border:none;transition:all 0.3s ease;opacity:0}
.stay-room-panel.active:hover .stay-room-arrow{opacity:1}
.stay-room-arrow:hover{background:rgba(0,0,0,0.6)}
.stay-room-arrow.prev{left:12px}
.stay-room-arrow.next{right:12px}
.stay-room-banner-tag{position:absolute;top:24px;left:24px;background:rgba(0,0,0,0.45);backdrop-filter:blur(8px);color:var(--white);padding:6px 16px;border-radius:8px;font-size:12px;font-weight:500;letter-spacing:0.5px;z-index:3}

/* RIGHT INFO CARD */
.stay-room-info{background:linear-gradient(160deg,#2D0448 0%,#3F0664 60%,#4E0A7A 100%);padding:48px 40px;display:flex;flex-direction:column;justify-content:center;color:var(--white)}
.stay-room-name{font-size:28px;font-weight:700;margin-bottom:6px}
.stay-room-type{font-size:13px;color:var(--pink);font-weight:500;letter-spacing:1px;text-transform:uppercase;margin-bottom:20px}
.stay-room-desc{font-size:14px;color:rgba(255,255,255,0.78);line-height:1.75;margin-bottom:24px}
.stay-room-area{font-size:14px;color:rgba(255,255,255,0.9);margin-bottom:20px;display:flex;align-items:center;gap:8px}
.stay-room-area svg{opacity:0.7}
.stay-room-amenities{display:grid;grid-template-columns:1fr 1fr;gap:10px 24px;margin-bottom:32px}
.stay-room-amenity{font-size:13px;color:rgba(255,255,255,0.75);display:flex;align-items:center;gap:8px}
.stay-room-amenity svg{flex-shrink:0;opacity:0.6}
.stay-room-price-row{display:flex;align-items:center;justify-content:space-between;padding-top:24px;border-top:1px solid rgba(255,255,255,0.12)}
.stay-room-price{font-size:28px;font-weight:700;color:var(--white)}
.stay-room-price span{font-size:14px;font-weight:400;color:rgba(255,255,255,0.6);margin-left:4px}
.stay-room-price small{font-size:13px;color:rgba(255,255,255,0.5);font-weight:400}
.stay-book-btn{padding:14px 36px;background:linear-gradient(135deg,var(--pink),#b00a7a);color:var(--white);font-size:15px;font-weight:600;border-radius:9999px;border:none;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 16px rgba(217,13,146,0.35);font-family:var(--font)}
.stay-book-btn:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(217,13,146,0.45)}

/* RESPONSIVE — STAY PAGE */
@media(max-width:1024px){
  .stay-room-panel.active{grid-template-columns:1fr 1fr}
  .stay-room-banner{min-height:400px}
  .stay-room-info{padding:36px 28px}
}
@media(max-width:768px){
  .stay-rooms-section{padding:48px 16px}
  .stay-rooms-title{font-size:30px}
  .stay-room-tab{padding:12px 20px;font-size:14px}
  .stay-room-panel.active{grid-template-columns:1fr}
  .stay-room-banner{min-height:280px;order:-1}
  .stay-room-info{padding:32px 24px}
  .stay-room-name{font-size:24px}
  .stay-room-amenities{grid-template-columns:1fr;gap:8px}
  .stay-room-price-row{flex-direction:column;gap:16px;align-items:flex-start}
  .stay-book-btn{width:100%;text-align:center}
}
@media(max-width:480px){
  .stay-rooms-title{font-size:24px}
  .stay-room-info{padding:24px 20px}
  .stay-room-name{font-size:20px}
  .stay-room-desc{font-size:13px}
}

/* ===================== DINING VENUES TABS ===================== */
.dining-venus-section{padding:80px 20px;max-width:95%;margin:0 auto}
.dining-venus-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px}
.dining-venus-title{font-size:40px;font-weight:600;color:var(--text);margin-bottom:12px;line-height:1.25}
.dining-venus-subtitle{font-size:16px;color:var(--text2);margin-bottom:40px;max-width:640px}
.dining-venus-tabs{display:flex;gap:0;margin-bottom:32px;border-bottom:2px solid var(--border)}
.dining-venus-tab{padding:14px 32px;font-size:14px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--text3);background:none;border:none;cursor:pointer;position:relative;transition:all 0.3s ease;font-family:var(--font)}
.dining-venus-tab.active{color:var(--primary)}
.dining-venus-tab.active::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:3px;background:var(--pink);border-radius:3px 3px 0 0}
.dining-venus-tab:hover{color:var(--primary)}

/* FACILITIES SCROLLABLE TABS */
.facilities-venus-section{padding:80px 20px;max-width:95%;margin:0 auto}
.facilities-tabs-wrap{margin-bottom:32px;border-bottom:2px solid var(--border);overflow:hidden}
.facilities-tabs-scroll{display:flex;gap:0;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none}
.facilities-tabs-scroll::-webkit-scrollbar{display:none}
.facilities-tabs-scroll .dining-venus-tab{white-space:nowrap;flex-shrink:0;padding:14px 24px;font-size:12px;letter-spacing:1.5px}

/* FACILITIES ICON GRID */
.facilities-icon-section{padding:80px 20px;max-width:95%;margin:0 auto}
.facilities-icon-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:48px}
.fac-icon-card{text-align:center;padding:40px 24px 32px;border-radius:16px;border:1px solid var(--border);transition:all 0.3s ease;background:var(--white)}
.fac-icon-card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(0,0,0,0.1);border-color:var(--pink)}
.fac-icon-wrap{width:72px;height:72px;border-radius:18px;background:linear-gradient(135deg,#f3e8ff,#ede9fe);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;color:var(--primary);transition:all 0.3s ease}
.fac-icon-card:hover .fac-icon-wrap{background:linear-gradient(135deg,var(--primary),#4E0A7A);color:#fff}
.fac-icon-card h3{font-size:16px;font-weight:600;color:var(--text);margin-bottom:10px}
.fac-icon-card p{font-size:13px;color:var(--text2);line-height:1.7}

.dining-venus-panel{display:none;grid-template-columns:1.3fr 1fr;gap:0;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-lg);min-height:460px}
.dining-venus-panel.active{display:grid}

.dining-venus-banner{position:relative;overflow:hidden;min-height:460px}
.dining-venus-slider{position:relative;width:100%;height:100%}
.dining-venus-slide{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;transition:opacity 0.6s ease}
.dining-venus-slide.active{opacity:1}
.dining-venus-slide img{width:100%;height:100%;object-fit:cover}
.dining-venus-arrow{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;background:rgba(0,0,0,0.4);color:#fff;font-size:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:3;transition:all 0.3s ease;cursor:pointer;border:none;backdrop-filter:blur(4px)}
.dining-venus-arrow:hover{background:rgba(0,0,0,0.7)}
.dining-venus-arrow.prev{left:16px}
.dining-venus-arrow.next{right:16px}
.dining-venus-dots{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:3}
.dining-venus-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.4);border:none;cursor:pointer;transition:all 0.3s ease;padding:0}
.dining-venus-dot.active{background:var(--pink);transform:scale(1.2)}

.dining-venus-info{background:linear-gradient(135deg,#2D0448 0%,#3F0664 60%,#4E0A7A 100%);color:var(--white);padding:48px 40px;display:flex;flex-direction:column;justify-content:center}
.dining-venus-type{font-size:12px;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:var(--pink);margin-bottom:8px}
.dining-venus-name{font-size:28px;font-weight:700;margin-bottom:20px;color:var(--white)}
.dining-venus-desc{font-size:14px;color:rgba(255,255,255,0.8);line-height:1.8;margin-bottom:28px}

.dining-venus-details{display:flex;flex-direction:column;gap:14px;margin-bottom:24px}
.dining-venus-detail{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,0.9);font-size:14px}
.dining-venus-detail svg{color:var(--pink);flex-shrink:0}
.dining-venus-detail strong{display:block;font-size:14px;font-weight:600}
.dining-venus-detail span{font-size:13px;color:rgba(255,255,255,0.6)}

.dining-venus-cuisines{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px}
.dining-cuisine-tag{padding:6px 16px;background:rgba(255,255,255,0.1);border-radius:9999px;font-size:12px;font-weight:500;color:rgba(255,255,255,0.85);border:1px solid rgba(255,255,255,0.15)}
.dining-venus-action{margin-top:auto}

/* MEETINGS CAPACITY TABLE */
.meet-capacity-table{width:100%;border-collapse:collapse;margin-bottom:16px;border:1px solid rgba(255,255,255,0.1);border-radius:10px;overflow:hidden}
.meet-table-head{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;background:rgba(255,255,255,0.08);padding:10px 16px;font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,0.6)}
.meet-table-row{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;padding:10px 16px;font-size:13px;color:rgba(255,255,255,0.85);border-top:1px solid rgba(255,255,255,0.06)}
.meet-table-row span:nth-child(n+2){text-align:center}
.meet-table-head span:nth-child(n+2){text-align:center}
.meet-pre-fn{font-size:13px;color:rgba(255,255,255,0.5);margin-bottom:20px}
.meet-pre-fn strong{color:rgba(255,255,255,0.8)}

/* DINING SIGNATURE DISHES */
.dining-dishes-section{padding:80px 20px;background:var(--gray)}
.dining-dishes-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px;text-align:center}
.dining-dishes-title{font-size:40px;font-weight:600;color:var(--text);margin-bottom:12px;text-align:center;line-height:1.25}
.dining-dishes-subtitle{font-size:16px;color:var(--text2);margin-bottom:48px;text-align:center;max-width:640px;margin-left:auto;margin-right:auto}

.dining-dishes-grid{max-width:95%;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.dining-dish-card{background:var(--white);border-radius:16px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,0.06);transition:all 0.3s ease}
.dining-dish-card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(0,0,0,0.12)}
.dining-dish-img{position:relative;height:220px;overflow:hidden}
.dining-dish-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.dining-dish-card:hover .dining-dish-img img{transform:scale(1.05)}
.dining-dish-overlay{position:absolute;bottom:12px;left:12px}
.dining-dish-tag{padding:6px 14px;background:var(--pink);color:#fff;font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;border-radius:9999px}
.dining-dish-body{padding:24px}
.dining-dish-body h3{font-size:20px;font-weight:600;color:var(--text);margin-bottom:10px}
.dining-dish-body p{font-size:14px;color:var(--text2);line-height:1.7}

/* DINING RESPONSIVE */
@media(max-width:1024px){
  .dining-venus-panel{grid-template-columns:1fr}
  .dining-venus-banner{min-height:320px}
  .dining-dishes-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .dining-venus-section{padding:60px 16px}
  .dining-venus-title{font-size:28px}
  .dining-venus-info{padding:32px 24px}
  .dining-venus-name{font-size:22px}
  .dining-dishes-section{padding:60px 16px}
  .dining-dishes-title{font-size:28px}
  .dining-dishes-grid{grid-template-columns:1fr;max-width:480px;margin-left:auto;margin-right:auto}
  .facilities-icon-grid{grid-template-columns:repeat(3,1fr);gap:20px}
  .fac-icon-card{padding:28px 16px 24px}
  .fac-icon-wrap{width:60px;height:60px;border-radius:14px}
}
@media(max-width:480px){
  .dining-venus-tab{padding:10px 18px;font-size:12px;letter-spacing:1px}
  .dining-venus-info{padding:24px 20px}
  .dining-venus-name{font-size:20px}
  .dining-venus-desc{font-size:13px}
  .dining-dish-img{height:180px}
  .meet-table-head,.meet-table-row{grid-template-columns:1.2fr 0.9fr 0.9fr 0.9fr;font-size:11px;padding:8px 12px}
  .facilities-icon-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .fac-icon-card{padding:24px 12px 20px}
  .fac-icon-card h3{font-size:14px}
  .fac-icon-card p{font-size:12px}
  .fac-icon-wrap{width:52px;height:52px}
  .fac-icon-wrap svg{width:24px;height:24px}
}

/* ===== GALLERY PAGE ===== */
.gallery-section{padding:60px 20px 80px;max-width:95%;margin:0 auto}
.gallery-filter-wrap{display:flex;justify-content:center;gap:8px;margin-bottom:40px;flex-wrap:wrap}
.gallery-filter{padding:10px 28px;border-radius:9999px;font-size:13px;font-weight:600;letter-spacing:1px;text-transform:uppercase;background:var(--gray);color:var(--text2);border:2px solid transparent;cursor:pointer;transition:all 0.3s ease}
.gallery-filter:hover{background:var(--primary);color:#fff}
.gallery-filter.active{background:var(--primary);color:#fff;border-color:var(--primary)}

.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.gallery-item{position:relative;border-radius:12px;overflow:hidden;cursor:pointer;aspect-ratio:4/3}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.gallery-item:hover img{transform:scale(1.08)}
.gallery-hover{position:absolute;bottom:0;left:0;right:0;padding:20px 16px 16px;background:linear-gradient(transparent,rgba(0,0,0,0.7));opacity:0;transition:opacity 0.3s ease}
.gallery-item:hover .gallery-hover{opacity:1}
.gallery-hover span{color:#fff;font-size:14px;font-weight:500;letter-spacing:0.5px}

.gallery-item.hidden{display:none}

/* LIGHTBOX */
.gallery-lightbox{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.92);z-index:10000;align-items:center;justify-content:center;flex-direction:column}
.gallery-lightbox.open{display:flex}
.gallery-lb-img-wrap{max-width:85vw;max-height:75vh;display:flex;align-items:center;justify-content:center}
.gallery-lb-img-wrap img{max-width:100%;max-height:75vh;object-fit:contain;border-radius:8px}
.gallery-lb-close{position:absolute;top:20px;right:28px;font-size:42px;color:#fff;background:none;cursor:pointer;z-index:10001;opacity:0.7;transition:opacity 0.3s ease;line-height:1}
.gallery-lb-close:hover{opacity:1}
.gallery-lb-arrow{position:absolute;top:50%;transform:translateY(-50%);font-size:52px;color:#fff;background:rgba(255,255,255,0.1);width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease;z-index:10001;border:none}
.gallery-lb-arrow:hover{background:rgba(255,255,255,0.25)}
.gallery-lb-arrow.prev{left:20px}
.gallery-lb-arrow.next{right:20px}
.gallery-lb-caption{color:rgba(255,255,255,0.85);font-size:16px;margin-top:16px;text-align:center;font-weight:400;letter-spacing:0.5px}
.gallery-lb-counter{color:rgba(255,255,255,0.5);font-size:13px;margin-top:8px;text-align:center}

/* GALLERY RESPONSIVE */
@media(max-width:1024px){
  .gallery-grid{grid-template-columns:repeat(3,1fr);gap:14px}
}
@media(max-width:768px){
  .gallery-section{padding:40px 16px 60px}
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .gallery-lb-img-wrap{max-width:92vw;max-height:65vh}
  .gallery-lb-arrow{width:44px;height:44px;font-size:40px}
  .gallery-lb-arrow.prev{left:10px}
  .gallery-lb-arrow.next{right:10px}
}
@media(max-width:480px){
  .gallery-filter{padding:8px 18px;font-size:11px}
  .gallery-grid{gap:8px}
  .gallery-item{border-radius:8px}
  .gallery-hover{padding:12px 10px 10px;opacity:1}
  .gallery-hover span{font-size:12px}
  .gallery-lb-arrow{width:36px;height:36px;font-size:32px}
}

/* ===== OFFERS PAGE ===== */
.offers-featured{padding:60px 20px;max-width:95%;margin:0 auto}
.offers-featured-inner{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.offers-featured-img{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:4/3}
.offers-featured-img img{width:100%;height:100%;object-fit:cover}
.offers-featured-badge{position:absolute;top:20px;left:20px;background:var(--pink);color:#fff;padding:8px 20px;border-radius:9999px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase}
.offers-featured-info h2{font-size:36px;font-weight:700;color:var(--text);margin-bottom:16px;line-height:1.2}
.offers-featured-info p{font-size:15px;color:var(--text2);line-height:1.8;margin-bottom:24px}
.offers-featured-price{display:flex;align-items:baseline;gap:12px;margin-bottom:24px}
.offers-price-old{font-size:20px;color:var(--text3);text-decoration:line-through}
.offers-price-new{font-size:36px;font-weight:700;color:var(--primary)}
.offers-price-save{background:rgba(217,13,146,0.1);color:var(--pink);padding:4px 14px;border-radius:9999px;font-size:13px;font-weight:600}
.offers-featured-includes{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:28px}
.offers-inc-item{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--text);font-weight:500}
.offers-inc-item svg{flex-shrink:0}

.offers-all-section{padding:80px 20px;background:var(--gray)}
.offers-section-label,.offers-why-label,.contact-map-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px;text-align:center}
.offers-section-title,.offers-why-title{font-size:40px;font-weight:600;color:var(--text);margin-bottom:12px;text-align:center;line-height:1.25}
.offers-section-subtitle,.offers-why-subtitle{font-size:16px;color:var(--text2);margin-bottom:48px;text-align:center;max-width:680px;margin-left:auto;margin-right:auto;line-height:1.7}
.offers-grid{max-width:95%;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.offers-card{background:var(--white);border-radius:20px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,0.06);transition:all 0.3s ease}
.offers-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(0,0,0,0.12)}
.offers-card-img{position:relative;height:240px;overflow:hidden}
.offers-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.offers-card:hover .offers-card-img img{transform:scale(1.05)}
.offers-card-badge{position:absolute;top:16px;right:16px;background:var(--pink);color:#fff;padding:8px 18px;border-radius:9999px;font-size:14px;font-weight:700}
.offers-card-body{padding:28px}
.offers-card-body h3{font-size:22px;font-weight:600;color:var(--text);margin-bottom:10px}
.offers-card-body p{font-size:14px;color:var(--text2);line-height:1.7;margin-bottom:20px}
.offers-card-code{display:flex;align-items:center;justify-content:space-between;background:var(--gray);border-radius:10px;padding:12px 16px;margin-bottom:12px}
.offers-code-label{font-size:12px;color:var(--text3);font-weight:500;text-transform:uppercase;letter-spacing:1px}
.offers-code-value{font-size:16px;font-weight:700;color:var(--primary);letter-spacing:1px}
.offers-card-valid{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text3);margin-bottom:20px}
.offers-card-btn{display:inline-block;padding:12px 28px;background:var(--primary);color:#fff;border-radius:9999px;font-size:14px;font-weight:600;transition:all 0.3s ease}
.offers-card-btn:hover{background:var(--primary-dark);transform:translateY(-2px)}

/* OFFERS - WHY BOOK */
.offers-why-section{padding:80px 20px}
.offers-why-inner{max-width:95%;margin:0 auto}
.offers-why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:48px}
.offers-why-card{background:var(--white);border:1px solid var(--border);border-radius:20px;padding:32px;transition:all 0.3s ease}
.offers-why-card:hover{box-shadow:0 8px 30px rgba(0,0,0,0.08);transform:translateY(-4px)}
.offers-why-icon{width:56px;height:56px;background:rgba(63,6,100,0.08);border-radius:14px;display:flex;align-items:center;justify-content:center;color:var(--primary);margin-bottom:20px}
.offers-why-card h3{font-size:20px;font-weight:600;color:var(--text);margin-bottom:10px}
.offers-why-card p{font-size:14px;color:var(--text2);line-height:1.7}

/* OFFERS - HOW TO REDEEM */
.offers-redeem-section{padding:80px 20px;background:var(--gray)}
.offers-redeem-grid{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:0;max-width:95%;margin:0 auto;align-items:start}
.offers-redeem-step{text-align:center;padding:0 20px}
.offers-redeem-num{font-size:48px;font-weight:800;color:var(--primary);opacity:0.15;margin-bottom:12px;line-height:1}
.offers-redeem-step h3{font-size:20px;font-weight:600;color:var(--text);margin-bottom:10px}
.offers-redeem-step p{font-size:14px;color:var(--text2);line-height:1.7}
.offers-redeem-divider{width:60px;height:2px;background:var(--pink);margin-top:40px;flex-shrink:0;align-self:center}

/* OFFERS - SEASONAL BANNER */
.offers-seasonal{background:linear-gradient(135deg,var(--primary) 0%,#6B2FA0 100%);padding:80px 20px}
.offers-seasonal-inner{max-width:95%;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.offers-seasonal-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px}
.offers-seasonal-content h2{font-size:36px;font-weight:700;color:#fff;margin-bottom:16px;line-height:1.2}
.offers-seasonal-content p{font-size:15px;color:rgba(255,255,255,0.85);line-height:1.8;margin-bottom:8px}
.offers-seasonal-img{border-radius:20px;overflow:hidden;aspect-ratio:4/3}
.offers-seasonal-img img{width:100%;height:100%;object-fit:cover}

/* OFFERS - TERMS */
.offers-terms-section{padding:80px 20px}
.offers-terms-inner{max-width:95%;margin:0 auto}
.offers-terms-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin-top:40px}
.offers-terms-col h3{font-size:20px;font-weight:600;color:var(--primary);margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid var(--border)}
.offers-terms-col ul{list-style:none;padding:0}
.offers-terms-col li{font-size:14px;color:var(--text2);line-height:1.8;margin-bottom:16px;padding-left:24px;position:relative}
.offers-terms-col li:before{content:'';position:absolute;left:0;top:10px;width:8px;height:8px;border-radius:50%;background:var(--pink)}

/* OFFERS RESPONSIVE */
@media(max-width:1024px){
  .offers-featured-inner{grid-template-columns:1fr}
  .offers-featured-img{aspect-ratio:16/9}
  .offers-why-grid,.offers-terms-grid{grid-template-columns:1fr}
  .offers-seasonal-inner{grid-template-columns:1fr}
  .offers-seasonal-img{max-height:300px}
  .offers-redeem-grid{grid-template-columns:1fr;gap:0}
  .offers-redeem-divider{width:2px;height:40px;margin:20px auto}
}
@media(max-width:768px){
  .offers-featured{padding:40px 16px}
  .offers-featured-info h2{font-size:28px}
  .offers-price-new{font-size:28px}
  .offers-all-section{padding:60px 16px}
  .offers-section-title,.offers-why-title{font-size:28px}
  .offers-grid{grid-template-columns:1fr}
  .offers-card-img{height:200px}
  .offers-why-section,.offers-redeem-section,.offers-terms-section{padding:60px 16px}
  .offers-seasonal{padding:60px 16px}
  .offers-seasonal-content h2{font-size:28px}
  .offers-featured-includes{grid-template-columns:1fr}
}
@media(max-width:480px){
  .offers-card-body{padding:20px}
  .offers-card-body h3{font-size:18px}
  .offers-redeem-num{font-size:36px}
}

/* ===== CONTACT PAGE ===== */
.contact-modern-section{padding:60px 20px 80px;max-width:95%;margin:0 auto}
.contact-modern-inner{display:grid;grid-template-columns:1.2fr 0.8fr;gap:48px;align-items:start}
.contact-form-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px}
.contact-form-title{font-size:36px;font-weight:700;color:var(--text);margin-bottom:12px;line-height:1.2}
.contact-form-subtitle{font-size:15px;color:var(--text2);line-height:1.7;margin-bottom:32px}

.contact-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.contact-field{display:flex;flex-direction:column}
.contact-field.full{grid-column:1/-1}
.contact-label{font-size:14px;font-weight:500;color:var(--text);margin-bottom:6px}
.contact-req{color:var(--pink)}
.contact-input{width:100%;padding:13px 16px;border:1.5px solid var(--border);border-radius:12px;font-size:14px;font-family:var(--font);transition:all 0.3s ease;background:#fff}
.contact-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(63,6,100,0.08);outline:none}
.contact-textarea{min-height:140px;resize:vertical}
.contact-form{margin-bottom:24px}

.contact-captcha-row{display:flex;gap:16px;align-items:end;margin-bottom:24px}
.contact-captcha-box{background:var(--gray);border-radius:12px;padding:14px 20px;display:flex;flex-direction:column;gap:4px;flex-shrink:0}
.contact-captcha-label{font-size:11px;font-weight:600;color:var(--text3);text-transform:uppercase;letter-spacing:1px}
.contact-captcha-q{font-size:22px;font-weight:700;color:var(--primary)}
.contact-captcha-input{width:140px;flex-shrink:0}

.contact-form-error{background:rgba(239,68,68,0.08);border:1px solid rgba(239,68,68,0.3);color:#DC2626;padding:14px 18px;border-radius:12px;font-size:14px;margin-bottom:24px}

.contact-submit-btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:16px;background:var(--primary);color:#fff;border-radius:9999px;font-size:16px;font-weight:600;cursor:pointer;transition:all 0.3s ease;font-family:var(--font);border:none}
.contact-submit-btn:hover{background:var(--primary-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(63,6,100,0.3)}

/* CONTACT INFO CARDS */
.contact-info-col{display:flex;flex-direction:column;gap:16px}
.contact-info-card{background:var(--gray);border-radius:16px;padding:24px;transition:all 0.3s ease}
.contact-info-card:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,0.06)}
.contact-info-card.contact-info-dark{background:var(--primary);color:#fff}
.contact-info-card.contact-info-dark h3{color:#fff}
.contact-info-card.contact-info-dark p{color:rgba(255,255,255,0.85)}
.contact-info-icon{width:48px;height:48px;background:rgba(63,6,100,0.08);border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--primary);margin-bottom:14px}
.contact-info-dark .contact-info-icon{background:rgba(255,255,255,0.15);color:#fff}
.contact-info-card h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:8px}
.contact-info-card p{font-size:14px;color:var(--text2);line-height:1.7}
.contact-info-card p a{color:var(--primary);font-weight:500}
.contact-info-note{display:block;font-size:12px;color:var(--text3);margin-top:6px}

.contact-social-row{display:flex;gap:12px;padding:8px 0}
.contact-social-link{width:44px;height:44px;background:var(--gray);border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--text2);transition:all 0.3s ease}
.contact-social-link:hover{background:var(--primary);color:#fff;transform:translateY(-2px)}

/* CONTACT MAP */
.contact-map-section{padding:80px 20px;background:var(--gray)}
.contact-map-inner{max-width:95%;margin:0 auto}
.contact-map-title{font-size:40px;font-weight:600;color:var(--text);margin-bottom:12px;text-align:center;line-height:1.25}
.contact-map-subtitle{font-size:16px;color:var(--text2);margin-bottom:40px;text-align:center;max-width:680px;margin-left:auto;margin-right:auto;line-height:1.7}
.contact-map-embed{border-radius:20px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.1)}

/* CONTACT PROPERTIES */
.contact-properties-section{padding:80px 20px}
.contact-properties-inner{max-width:95%;margin:0 auto}
.contact-props-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.contact-prop-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,0.06);transition:all 0.3s ease}
.contact-prop-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(0,0,0,0.12)}
.contact-prop-img{height:200px;overflow:hidden}
.contact-prop-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.contact-prop-card:hover .contact-prop-img img{transform:scale(1.05)}
.contact-prop-body{padding:24px}
.contact-prop-body h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:6px}
.contact-prop-loc{font-size:13px;color:var(--text3);margin-bottom:4px}
.contact-prop-price{font-size:15px;font-weight:600;color:var(--primary);margin-bottom:6px}
.contact-prop-rating{display:flex;align-items:center;gap:6px;font-size:14px;font-weight:500;color:var(--text);margin-bottom:16px}
.contact-prop-btn{display:inline-block;padding:10px 24px;background:var(--primary);color:#fff;border-radius:9999px;font-size:13px;font-weight:600;transition:all 0.3s ease}
.contact-prop-btn:hover{background:var(--primary-dark);transform:translateY(-2px)}

/* CONTACT FAQ */
.contact-faq-section{padding:80px 20px;background:var(--gray)}
.contact-faq-inner{max-width:800px;margin:0 auto}
.contact-faq-list{margin-top:40px}
.contact-faq-item{border-bottom:1px solid var(--border)}
.contact-faq-q{width:100%;text-align:left;padding:20px 0;font-size:16px;font-weight:600;color:var(--text);background:none;border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:var(--font);transition:color 0.3s ease}
.contact-faq-q:hover{color:var(--primary)}
.contact-faq-q:after{content:'+';font-size:24px;font-weight:300;color:var(--text3);transition:transform 0.3s ease;flex-shrink:0;margin-left:16px}
.contact-faq-item.open .contact-faq-q:after{transform:rotate(45deg);color:var(--primary)}
.contact-faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.contact-faq-item.open .contact-faq-a{max-height:500px}
.contact-faq-a p{padding:0 0 20px;font-size:14px;color:var(--text2);line-height:1.8}

/* CONTACT THANK YOU */
.contact-thanks{padding:80px 20px;text-align:center}
.contact-thanks-inner{max-width:700px;margin:0 auto}
.contact-thanks-icon{width:80px;height:80px;background:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 28px}
.contact-thanks h2{font-size:36px;font-weight:700;color:var(--text);margin-bottom:20px}
.contact-thanks-main{font-size:16px;color:var(--text2);line-height:1.8;margin-bottom:40px}
.contact-thanks-details{text-align:left;margin-bottom:36px}
.contact-thanks-detail{display:flex;gap:16px;margin-bottom:24px;align-items:start}
.contact-thanks-detail svg{flex-shrink:0;color:var(--primary);margin-top:2px}
.contact-thanks-detail strong{display:block;font-size:16px;color:var(--text);margin-bottom:4px}
.contact-thanks-detail p{font-size:14px;color:var(--text2);line-height:1.7}
.contact-thanks-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* CONTACT RESPONSIVE */
@media(max-width:1024px){
  .contact-modern-inner{grid-template-columns:1fr;gap:40px}
  .contact-props-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .contact-modern-section{padding:40px 16px 60px}
  .contact-form-title{font-size:28px}
  .contact-form-row{grid-template-columns:1fr}
  .contact-captcha-row{flex-direction:column;align-items:stretch}
  .contact-captcha-input{width:100%}
  .contact-map-section,.contact-properties-section,.contact-faq-section{padding:60px 16px}
  .contact-map-title{font-size:28px}
  .contact-props-grid{grid-template-columns:1fr}
  .contact-thanks{padding:60px 16px}
  .contact-thanks h2{font-size:28px}
}
@media(max-width:480px){
  .contact-form-subtitle{font-size:14px}
  .contact-info-card{padding:20px}
}

/* DESTINATION DETAIL */
.dest-detail-section{padding:80px 20px}
.dest-detail-section.gray-bg{background:var(--gray)}
.dest-detail-inner{max-width:95%;margin:0 auto;max-width:800px}
.dest-section-label{font-size:12px;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:var(--pink);margin-bottom:12px}
.dest-section-title{font-size:36px;font-weight:600;color:var(--text);margin-bottom:24px;line-height:1.3}
.dest-section-text{font-size:16px;color:var(--text2);line-height:1.9;margin-bottom:20px}
.dest-section-text:last-child{margin-bottom:0}

/* DESTINATION SPLIT LAYOUT — Modern */
.dest-split-section{padding:90px 20px}
.dest-split-section.gray-bg{background:var(--gray)}
.dest-split-wrap{max-width:95%;margin:0 auto;display:flex;align-items:center;gap:64px}
.dest-split-wrap.reverse{flex-direction:row-reverse}
.dest-split-content{flex:1;min-width:0}
.dest-split-image{flex:1;min-width:0;position:relative}
.dest-split-image img{width:100%;height:100%;min-height:420px;object-fit:cover;display:block;border-radius:20px;box-shadow:0 24px 64px rgba(63,6,100,0.10);transition:transform 0.7s ease}
.dest-split-image:hover img{transform:scale(1.03)}
.dest-split-content .dest-section-label{position:relative;padding-left:24px;margin-bottom:16px}
.dest-split-content .dest-section-label::before{content:'';position:absolute;left:0;top:2px;width:4px;height:calc(100% - 4px);background:linear-gradient(180deg,var(--pink),var(--primary));border-radius:2px}
.dest-split-content .dest-section-title{font-size:34px;font-weight:700;color:var(--text);margin-bottom:20px;line-height:1.3}
.dest-split-content .dest-section-text{font-size:15px;color:#555;line-height:1.85;margin-bottom:16px}
.dest-split-content .dest-section-text:last-child{margin-bottom:0}

/* DESTINATIONS MAIN PAGE */
.dest-places-section{padding:80px 20px}
.dest-places-inner{max-width:95%;margin:0 auto}
.dest-places-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.dest-place-card{background:var(--white);border-radius:20px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,0.06);transition:all 0.3s ease}
.dest-place-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(0,0,0,0.12)}
.dest-place-img{position:relative;height:220px;overflow:hidden}
.dest-place-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.dest-place-card:hover .dest-place-img img{transform:scale(1.05)}
.dest-place-tag{position:absolute;top:14px;left:14px;background:var(--pink);color:#fff;padding:5px 14px;border-radius:9999px;font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase}
.dest-place-body{padding:24px}
.dest-place-body h3{font-size:20px;font-weight:600;color:var(--text);margin-bottom:10px}
.dest-place-body p{font-size:14px;color:var(--text2);line-height:1.7;margin-bottom:20px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.dest-place-btn{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:var(--primary);transition:all 0.3s ease}
.dest-place-btn:hover{gap:12px;color:var(--pink)}
.dest-place-btn svg{transition:transform 0.3s ease}
.dest-place-btn:hover svg{transform:translateX(4px)}

.dest-why-section{padding:80px 20px;background:var(--gray)}
.dest-why-inner{max-width:95%;margin:0 auto}
.dest-why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:48px}
.dest-why-card{background:var(--white);border-radius:16px;padding:32px;transition:all 0.3s ease;border-left:4px solid var(--primary)}
.dest-why-card:hover{box-shadow:0 8px 30px rgba(0,0,0,0.08);transform:translateY(-4px)}
.dest-why-num{font-size:42px;font-weight:800;color:var(--primary);opacity:0.12;margin-bottom:12px;line-height:1}
.dest-why-card h3{font-size:20px;font-weight:600;color:var(--text);margin-bottom:10px}
.dest-why-card p{font-size:14px;color:var(--text2);line-height:1.7}

/* DESTINATION GALLERY */
.dest-gallery-section{padding:80px 20px;background:var(--gray)}
.dest-gallery-inner{max-width:95%;margin:0 auto}
.dest-gallery-inner .offers-section-label{text-align:center;margin-bottom:12px}
.dest-gallery-inner .offers-section-title{text-align:center;margin-bottom:40px}

@media(max-width:768px){
  .dest-detail-section{padding:60px 16px}
  .dest-section-title{font-size:28px}
  .dest-gallery-section{padding:60px 16px}
  .dest-places-section{padding:60px 16px}
  .dest-places-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .dest-why-section{padding:60px 16px}
  .dest-why-grid{grid-template-columns:1fr}
  .dest-split-section{padding:60px 16px}
  .dest-split-wrap,.dest-split-wrap.reverse{flex-direction:column;gap:32px}
  .dest-split-image img{min-height:280px}
  .dest-split-content .dest-section-title{font-size:26px}
}
@media(max-width:480px){
  .dest-section-title{font-size:24px}
}
/* ============================================ */
/* CAREER PAGE */
/* ============================================ */

.career-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:10px;
}

.career-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px 24px;
  transition:var(--tr);
  display:flex;
  flex-direction:column;
  position:relative;
}
.career-card:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-4px);
  border-color:rgba(63,6,100,0.15);
}

.career-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.career-badge{
  display:inline-block;
  background:rgba(63,6,100,0.08);
  color:var(--primary);
  font-size:12px;
  font-weight:600;
  padding:4px 14px;
  border-radius:9999px;
  letter-spacing:0.3px;
}

.career-loc{
  font-size:13px;
  color:var(--text3);
  display:flex;
  align-items:center;
  gap:4px;
}
.career-loc:before{
  content:'';
  display:inline-block;
  width:8px;
  height:8px;
  background:#22c55e;
  border-radius:50%;
}

.career-card-title{
  font-size:20px;
  font-weight:600;
  color:var(--text);
  margin-bottom:4px;
  line-height:1.3;
}

.career-card-dept{
  font-size:13px;
  color:var(--pink);
  font-weight:500;
  margin-bottom:16px;
}

.career-req-list{
  margin:0 0 24px 0;
  padding:0;
  list-style:none;
  flex:1;
}
.career-req-list li{
  position:relative;
  padding-left:18px;
  font-size:13px;
  color:var(--text2);
  line-height:1.7;
  margin-bottom:2px;
}
.career-req-list li:before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:6px;
  height:6px;
  background:var(--primary);
  border-radius:50%;
  opacity:0.5;
}

.career-apply-btn{
  display:block;
  width:100%;
  padding:12px 24px;
  background:var(--primary);
  color:var(--white);
  border:none;
  border-radius:9999px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:var(--tr);
  box-shadow:0 2px 8px rgba(63,6,100,0.2);
  font-family:var(--font);
}
.career-apply-btn:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(63,6,100,0.3);
}

/* Career Alert */
.career-alert{
  max-width:1200px;
  margin:24px auto 0;
  padding:14px 24px;
  border-radius:10px;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  animation:careerFadeIn 0.3s ease;
}
.career-alert-success{
  background:#f0fdf4;
  color:#166534;
  border:1px solid #bbf7d0;
}
.career-alert-error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}
.career-alert button{
  background:none;
  border:none;
  font-size:20px;
  cursor:pointer;
  color:inherit;
  opacity:0.6;
}
.career-alert button:hover{
  opacity:1;
}

@keyframes careerFadeIn{
  from{opacity:0;transform:translateY(-10px)}
  to{opacity:1;transform:translateY(0)}
}

/* Career Popup */
.career-popup-overlay{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.6);
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.career-popup-overlay.open{
  display:flex;
}

.career-popup{
  background:var(--white);
  border-radius:20px;
  width:100%;
  max-width:620px;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
  padding:36px 32px 32px;
  animation:careerPopIn 0.3s ease;
}

@keyframes careerPopIn{
  from{opacity:0;transform:scale(0.95) translateY(20px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

.career-popup-close{
  position:absolute;
  top:16px;
  right:20px;
  background:none;
  border:none;
  font-size:28px;
  color:var(--text3);
  cursor:pointer;
  line-height:1;
  transition:var(--tr);
}
.career-popup-close:hover{
  color:var(--text);
}

.career-popup-header{
  margin-bottom:28px;
}
.career-popup-header h3{
  font-size:22px;
  font-weight:600;
  color:var(--text);
  margin-bottom:4px;
}
.career-popup-position{
  font-size:14px;
  color:var(--pink);
  font-weight:500;
}

.career-form-row{
  display:flex;
  gap:16px;
  margin-bottom:16px;
}
.career-form-group{
  flex:1;
  margin-bottom:0;
}
.career-form-group label{
  display:block;
  font-size:13px;
  font-weight:500;
  color:var(--text);
  margin-bottom:6px;
}

/* File Upload Styling */
.career-file-upload{
  position:relative;
  border:2px dashed var(--border);
  border-radius:12px;
  padding:24px 16px;
  text-align:center;
  cursor:pointer;
  transition:var(--tr);
  background:var(--gray2);
}
.career-file-upload:hover{
  border-color:var(--primary);
  background:rgba(63,6,100,0.02);
}
.career-file-upload input[type="file"]{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  opacity:0;
  cursor:pointer;
}
.career-file-label{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:var(--text3);
  font-size:13px;
  pointer-events:none;
}
.career-file-label svg{
  stroke:var(--text3);
}

.career-form-status{
  font-size:13px;
  margin:12px 0 0;
  min-height:20px;
}
.career-form-status.error{
  color:#dc2626;
}
.career-form-status.success{
  color:#16a34a;
}

.career-submit-btn{
  display:block;
  width:100%;
  padding:14px 24px;
  background:var(--primary);
  color:var(--white);
  border:none;
  border-radius:9999px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:var(--tr);
  margin-top:20px;
  font-family:var(--font);
}
.career-submit-btn:hover{
  background:var(--primary-dark);
}
.career-submit-btn:disabled{
  opacity:0.6;
  cursor:not-allowed;
}

/* Career Responsive */
@media(max-width:992px){
  .career-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

@media(max-width:640px){
  .career-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
  .career-form-row{
    flex-direction:column;
    gap:0;
  }
  .career-form-group{
    margin-bottom:16px;
  }
  .career-popup{
    padding:28px 20px 24px;
    border-radius:16px 16px 0 0;
    max-height:85vh;
  }
  .career-popup-overlay{
    padding:0;
    align-items:flex-end;
  }
}
