/* ===========================
   ROOT & RESET
=========================== */
:root {
  --gold: #C8962A;
  --gold-light: #E8B84B;
  --gold-dark: #A07A1F;
  --maroon: #8B1A1A;
  --maroon-light: #C0392B;
  --cream: #FDF6EC;
  --sand: #F5EDD8;
  --sand-dark: #EAD9B5;
  --text-dark: #1A1008;
  --text-mid: #4A3728;
  --text-light: #7A6555;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
  --font-display: 'Cinzel', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-sans); outline: none; border: none; }

/* ===========================
   UTILITIES
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-sand { background: var(--sand); }
.bg-dark-gold { background: linear-gradient(135deg, var(--maroon) 0%, #5C1010 50%, #2A0A0A 100%); }

.section-head { text-align: center; margin-bottom: 50px; }
.section-label { display: inline-block; font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); background: rgba(200,150,42,0.12); padding: 6px 18px; border-radius: 50px; margin-bottom: 14px; }
.section-label.light { color: var(--gold-light); background: rgba(232,184,75,0.15); }
.section-title { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--text-dark); line-height: 1.25; margin-bottom: 14px; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.white { color: var(--white); }
.section-title.white em { color: var(--gold-light); }
.section-head p { color: var(--text-light); font-size: 16px; margin: 0 auto; text-align: justify; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); padding: 13px 19px; border-radius: 50px; font-weight: 700;
  font-size: 15px; letter-spacing: 0.5px; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,42,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,150,42,0.5); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7); padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: 15px; transition: var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--maroon); }

.btn-sm {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); padding: 8px 20px; border-radius: 50px; font-size: 13px;
  font-weight: 700; transition: var(--transition); white-space: nowrap;
}
.btn-sm:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(200,150,42,0.4); }

.btn-sm-white {
  display: inline-block; background: var(--white); color: var(--maroon);
  padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 700;
  transition: var(--transition);
}
.btn-sm-white:hover { background: var(--gold); color: var(--white); }

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important; padding: 8px 22px !important; border-radius: 50px !important;
  font-weight: 700 !important; transition: var(--transition) !important;
}
.btn-nav:hover { box-shadow: 0 4px 16px rgba(200,150,42,0.4) !important; }

/* ===========================
   TOPBAR
=========================== */
.topbar { background: var(--maroon); color: var(--white); padding: 8px 0; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left a { color: rgba(255,255,255,0.9); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--gold-light); }
.topbar-left i { color: var(--gold-light); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { color: rgba(255,255,255,0.75); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); font-size: 12px; }
.topbar-right a:hover { background: var(--gold); border-color: var(--gold); color: white; }

/* ===========================
   HEADER
=========================== */
.header {
  top: 0; z-index: 1000; background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 2px 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; box-shadow: 0 4px 16px rgba(200,150,42,0.35); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--maroon); line-height: 1; letter-spacing: 1px; }
.logo-sub { font-family: var(--font-sans); font-size: 11px; color: var(--gold-dark); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

.nav ul { display: flex; align-items: center; gap: 4px; }
.nav ul li a { padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text-mid); transition: var(--transition); display: block; }
.nav ul li a:hover, .nav ul li a.active { color: var(--gold-dark); background: rgba(200,150,42,0.08); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; cursor: pointer; padding: 8px; border-radius: 8px; transition: var(--transition); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--maroon); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO SLIDER
=========================== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.slider { width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,8,3,0.75) 0%, rgba(139,26,26,0.4) 50%, rgba(0,0,0,0.2) 100%); }
.slide-content { position: absolute; bottom: 0; left: 0; right: 0; top: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 8%; z-index: 2; max-width: 800px; }
.slide-badge { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 6px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; width: fit-content; }
.slide-content h1 { font-family: var(--font-serif); font-size: clamp(36px, 6vw, 72px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.slide-content h1 em { font-style: italic; color: var(--gold-light); }
.slide-content p { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-btn { position: absolute; top: 57%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; width: 50px; height: 50px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.prev { left: 24px; }
.next { right: 24px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); border: none; }
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===========================
   QUICK ICONS
=========================== */
.quick-icons { background: var(--white); box-shadow: 0 8px 40px rgba(0,0,0,0.10); position: relative; z-index: 5; }
.qi-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.qi-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 28px 20px; text-align: center; color: var(--text-mid); font-weight: 700; font-size: 14px; transition: var(--transition); border-right: 1px solid var(--sand-dark); cursor: pointer; }
.qi-item:last-child { border-right: none; }
.qi-item:hover { background: var(--sand); color: var(--gold-dark); }
.qi-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; transition: var(--transition); }
.qi-item:hover .qi-icon { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 24px rgba(200,150,42,0.35); }

/* ===========================
   ABOUT US
=========================== */
.about { padding: 100px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 42%; border-radius: var(--radius); overflow: hidden; border: 5px solid white; box-shadow: var(--shadow-lg); aspect-ratio: 1; }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float { position: absolute; top: 158px; left: -20px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 18px 20px; border-radius: var(--radius); text-align: center; box-shadow: 0 8px 32px rgba(200,150,42,0.4); }
.about-badge-float .num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; }
.about-badge-float .txt { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.9; }

.about-content .section-label { margin-bottom: 10px; }
.about-intro { font-size: 18px; font-weight: 600; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; }
.about-content p { color: var(--text-light); margin-bottom: 24px; text-align: justify; }
.about-stats { display: flex; gap: 32px; margin-bottom: 24px; padding: 24px 0; border-top: 1px solid var(--sand-dark); border-bottom: 1px solid var(--sand-dark); }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--maroon); }
.stat-lbl { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.af-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-mid); }
.af-item i { color: var(--gold); font-size: 16px; }

/* ===========================
   CARD GRIDS
=========================== */
.cards-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===========================
   TOUR PACKAGES
=========================== */
.packages { background: var(--white); }
.pkg-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); border: 1px solid var(--sand-dark); }
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-img { position: relative; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-badge { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.pkg-body { padding: 20px; }
.pkg-body h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pkg-body p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.pkg-meta { font-size: 12px; color: var(--text-light); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pkg-meta i { color: var(--gold); }
.pkg-meta span { color: var(--sand-dark); }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--sand-dark); }
.pkg-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--maroon); }
.pkg-price small { font-size: 12px; color: var(--text-light); font-family: var(--font-sans); }

/* ===========================
   CAR RENTAL
=========================== */
.car-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--sand-dark); }
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.car-img { aspect-ratio: 16/9; overflow: hidden; }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.car-card:hover .car-img img { transform: scale(1.06); }
.car-body { padding: 16px; }
.car-body h3 { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.car-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.car-specs span { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.car-specs i { color: var(--gold); }
.car-body p { font-size: 12px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.car-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--sand-dark); }
.car-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--maroon); }

/* ===========================
   DESTINATIONS
=========================== */
.destinations { background: var(--white); }
.dest-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-img { position: relative;overflow: hidden; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover .dest-img img { transform: scale(1.1); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,8,3,0.85) 0%, rgba(0,0,0,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 20px; opacity: 0.9; transition: var(--transition); }
.dest-card:hover .dest-overlay { opacity: 1; }
.dest-overlay h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: white; margin-bottom: 2px; }
.dest-overlay p { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }
.dest-overlay .btn-sm-white { transform: translateY(10px); opacity: 0; transition: all 0.3s ease 0.1s; }
.dest-card:hover .dest-overlay .btn-sm-white { transform: translateY(0); opacity: 1; }

/* ===========================
   SAME DAY TOURS
=========================== */
.day-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--sand-dark); }
.day-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.day-img { aspect-ratio: 16/9; overflow: hidden; }
.day-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.day-card:hover .day-img img { transform: scale(1.06); }
.day-body { padding: 16px; }
.day-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--maroon); background: rgba(139,26,26,0.08); padding: 4px 10px; border-radius: 50px; margin-bottom: 8px; }
.day-body h3 { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.day-body p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.day-footer { align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--sand-dark); }
.day-price { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--maroon); }

/* ===========================
   HOTELS
=========================== */
.hotel-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--sand-dark); }
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hotel-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.hotel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hotel-card:hover .hotel-img img { transform: scale(1.06); }
.hotel-tag { position: absolute; top: 12px; left: 12px; background: var(--maroon); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; }
.hotel-body { padding: 16px; }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 6px; letter-spacing: 2px; }
.hotel-body h3 { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.hotel-body p { font-size: 12px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.hotel-footer { text-align: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--sand-dark); }
.hotel-price { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--maroon); }
.hotel-price small { font-size: 11px; color: var(--text-light); font-family: var(--font-sans); }

/* ===========================
   INQUIRY
=========================== */
.inquiry { background: var(--cream); }
.inquiry-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.inquiry-left .section-title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.inquiry-left > p { color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-item > i { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ci-item div { display: flex; flex-direction: column; }
.ci-item strong { font-size: 13px; color: var(--text-dark); }
.ci-item span { font-size: 14px; color: var(--text-light); }
.whatsapp-big a { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: white; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: var(--transition); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.whatsapp-big a:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
.whatsapp-big i { font-size: 22px; }

.inquiry-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.inquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.req { color: var(--maroon); }
.form-group input, .form-group select, .form-group textarea {
  border: 2px solid var(--sand-dark); border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: var(--text-dark); transition: var(--transition);
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(200,150,42,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8962A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.captcha-group {}
.captcha-box { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.captcha-code { background: linear-gradient(135deg, #1A1008, var(--maroon)); color: var(--gold-light); font-family: 'Courier New', monospace; font-size: 22px; font-weight: 700; padding: 12px 24px; border-radius: 10px; letter-spacing: 8px; user-select: none; min-width: 160px; text-align: center; }
.captcha-refresh { background: var(--sand); border: 2px solid var(--sand-dark); border-radius: 8px; padding: 10px 14px; cursor: pointer; color: var(--gold-dark); transition: var(--transition); font-size: 16px; }
.captcha-refresh:hover { background: var(--gold); color: white; border-color: var(--gold); }

.btn-submit { width: 100%; background: linear-gradient(135deg, var(--maroon), #6A1010); color: white; padding: 16px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; border: none; margin-bottom: 14px; letter-spacing: 0.5px; }
.btn-submit:hover { background: linear-gradient(135deg, #A02020, var(--maroon)); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,26,26,0.35); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; }
.form-msg { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; font-weight: 600; display: none; }
.form-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-msg.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-item { text-align: center; padding: 32px 24px; background: rgba(255,255,255,0.06); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.why-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-item i { font-size: 36px; color: var(--gold-light); margin-bottom: 16px; display: block; }
.why-item h3 { font-family: var(--font-serif); font-size: 18px; color: white; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: var(--transition); }
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); }
.wa-tooltip { position: absolute; right: 72px; background: var(--text-dark); color: white; padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===========================
   BACK TO TOP
=========================== */
.back-top { position: fixed; bottom: 100px; right: 28px; z-index: 999; width: 44px; height: 44px; background: var(--maroon); color: white; border-radius: 50%; font-size: 16px; cursor: pointer; transition: var(--transition); opacity: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(139,26,26,0.35); }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===========================
   FOOTER
=========================== */
.footer { background: #0E0604; }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo i { font-size: 28px; color: var(--gold); }
.fl-main { display: block; font-family: var(--font-display); font-size: 18px; color: var(--white); }
.fl-sub { display: block; font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 13px; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-col h4 { font-family: var(--font-serif); font-size: 17px; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,150,42,0.3); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-contact p a { color: rgba(255,255,255,0.75); }
.footer-contact p a:hover { color: var(--gold-light); }
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-badges span { font-size: 11px; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 50px; display: flex; align-items: center; gap: 5px; }
.footer-badges i { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom i { color: var(--maroon-light); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .cards-8 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .cards-8 { grid-template-columns: repeat(2, 1fr); }
  .inquiry-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,8,3,0.98); flex-direction: column; justify-content: center; align-items: center; z-index: 999; }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 8px; text-align: center; }
  .nav ul li a { font-size: 20px; color: white; padding: 12px 30px; }
  .nav ul li a:hover { background: rgba(200,150,42,0.2); }
  .hamburger { display: flex; z-index: 1000; }
}

@media (max-width: 640px) {
  .topbar-left a span, .topbar-left a:last-child { display: none; }
  .topbar-left a:first-child { display: flex; }
  .qi-grid { grid-template-columns: repeat(2, 1fr); }
  .qi-item { border-right: none; border-bottom: 1px solid var(--sand-dark); }
  .slide-content { padding: 0 6%; }
  .slide-btns { gap: 12px; align-items: flex-start;margin-top: 51px; }
  .cards-6 { grid-template-columns: 1fr; }
  .cards-8 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-badge-float { left: 10px; }
  .about-img-secondary { right: -10px; }
  .inquiry-form-wrap { padding: 24px 18px; }
  .inquiry-form .form-row { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-stats { flex-direction: column; gap: 16px; align-items: center; }
  .section-pad { padding: 56px 0; }
}

@media (max-width: 400px) {
  .cards-8 { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .logo-main { font-size: 17px; }
  .logo-sub { font-size: 9px; }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* Loading pulse for images */
img { background: var(--sand); }


/* TABLE STYLE */
table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

th, td {
  padding:12px;
  border:1px solid #ddd;
  text-align:left;
}

th {
  background:#ff6600;
  color:#fff;
}

tr:nth-child(even) {
  background:#f9f9f9;
}

tr:hover {
  background:#f1f1f1;
}