/* ===== TN STAUNCH — MAIN STYLES (Times New Roman) ===== */
:root {
  --navy: #0a1628;
  --deep: #0d1f3c;
  --gold: #c9a84c;
  --gold2: #f0d080;
  --cream: #f8f4ec;
  --white: #ffffff;
  --slate: #5a6a8a;
  --red: #c0392b;
  --font: 'Times New Roman', Times, serif;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo span {
  color: var(--white); font-size: 0.75rem; display: block;
  letter-spacing: 3px; font-family: var(--font); font-weight: 300;
  text-transform: uppercase; margin-top: -4px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 1rem; letter-spacing: 0.5px; transition: color 0.3s;
  font-family: var(--font); font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 24px; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem; font-family: var(--font);
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ===== HERO + SLIDER ===== */
#hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.slider-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a3050 50%, #0d2040 100%);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.7);
}
/* Fallback gradient slides for when no custom images are uploaded */
.slide-default-1 .slide-img { background: linear-gradient(135deg, #0a1628, #1a3a6a); }
.slide-default-2 .slide-img { background: linear-gradient(135deg, #1a0a28, #3a1a6a); }
.slide-default-3 .slide-img { background: linear-gradient(135deg, #0a2818, #1a6a3a); }

.hero-content {
  position: relative; z-index: 10;
  padding: 0 8%; max-width: 750px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 16px; border-radius: 30px;
  color: var(--gold); font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both; font-family: var(--font);
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); line-height: 1.1;
  font-weight: 900; margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.7); font-size: 1.1rem; font-family: var(--font);
  line-height: 1.7; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 32px; border-radius: 4px;
  font-weight: 700; font-size: 1rem; font-family: var(--font);
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: all 0.3s; letter-spacing: 0.5px;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 15px 32px; border-radius: 4px;
  font-weight: 500; text-decoration: none; font-size: 1rem; font-family: var(--font);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.slider-dots {
  position: absolute; bottom: 40px; left: 8%;
  display: flex; gap: 10px; z-index: 20;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.slider-nav {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 20;
}
.s-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 1rem;
}
.s-btn:hover { background: var(--gold); color: var(--navy); }
.hero-stats {
  position: absolute; bottom: 40px; right: 8%;
  display: flex; gap: 2.5rem; z-index: 20;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font); font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font); }

/* ===== SECTION COMMON ===== */
section { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  color: var(--gold); font-size: 0.95rem; font-family: var(--font);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); font-weight: 900; line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 20px auto 0; border-radius: 2px;
}

/* ===== SERVICES ===== */
#services { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; color: var(--gold);
}
.service-card h3 {
  font-family: var(--font);
  color: var(--white); font-size: 1.25rem;
  margin-bottom: 12px; font-weight: 700;
}
.service-card p {
  color: rgba(255,255,255,0.5); font-size: 0.95rem; font-family: var(--font);
  line-height: 1.6; margin-bottom: 20px;
}
.service-link {
  color: var(--gold); font-size: 0.9rem; font-family: var(--font);
  font-weight: 600; display: inline-flex;
  align-items: center; gap: 6px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }
.service-card.featured { background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05)); border-color: rgba(201,168,76,0.4); }

/* ===== PROCESS ===== */
#process { background: var(--cream); }
.process-intro {
  max-width: 650px; margin: 0 auto 60px;
  text-align: center; color: var(--slate); font-family: var(--font);
  font-size: 1.05rem; line-height: 1.7;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--white);
  border-radius: 12px; padding: 32px 24px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.step-num {
  font-family: var(--font); font-size: 4rem; font-weight: 900;
  color: rgba(201,168,76,0.12); position: absolute;
  top: 10px; right: 20px; line-height: 1;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--navy); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font);
  font-size: 1.1rem; color: var(--navy);
  margin-bottom: 10px; font-weight: 700;
}
.process-step p { color: var(--slate); font-size: 1.05rem; font-family: var(--font); line-height: 1.75; }

/* ===== BOOKING ===== */
#booking { background: var(--navy); position: relative; overflow: hidden; }
#booking::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.booking-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start; position: relative; z-index: 1;
}
.booking-info h2 {
  font-family: var(--font);
  color: var(--white); font-size: 2.5rem;
  font-weight: 900; line-height: 1.2; margin-bottom: 20px;
}
.booking-info h2 em { color: var(--gold); font-style: italic; }
.booking-info p { color: rgba(255,255,255,0.6); font-family: var(--font); line-height: 1.8; margin-bottom: 32px; }
.booking-feature { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.bf-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; font-size: 0.9rem;
}
.bf-text h5 { color: var(--white); font-size: 1rem; font-family: var(--font); margin-bottom: 4px; }
.bf-text p { color: rgba(255,255,255,0.5); font-size: 0.96rem; font-family: var(--font); line-height: 1.5; }
.booking-form {
  background: var(--white); border-radius: 16px;
  padding: 48px; box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.booking-form h3 {
  font-family: var(--font);
  font-size: 1.6rem; color: var(--navy);
  margin-bottom: 8px; font-weight: 700;
}
.booking-form .form-subtitle { color: var(--slate); font-size: 1rem; font-family: var(--font); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700; font-family: var(--font);
  color: var(--navy); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #e8e0d5; border-radius: 8px;
  font-family: var(--font); font-size: 1rem;
  color: var(--navy); background: #fafaf8;
  transition: all 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 8px;
  font-family: var(--font); font-size: 1.05rem;
  font-weight: 700; cursor: pointer;
  letter-spacing: 0.5px; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(39,174,96,0.1); border: 2px solid #27ae60;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #27ae60;
  margin: 0 auto 20px;
}
.form-success h4 { font-family: var(--font); font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.form-success p { color: var(--slate); font-family: var(--font); }

/* ===== WHY CHOOSE US ===== */
#why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.why-content .tag { color: var(--gold); font-size: 0.85rem; font-family: var(--font); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.why-content h2 {
  font-family: var(--font);
  font-size: 2.5rem; color: var(--navy);
  font-weight: 900; line-height: 1.2; margin-bottom: 20px;
}
.why-content p { color: var(--slate); font-family: var(--font); line-height: 1.8; margin-bottom: 32px; }
.why-points { list-style: none; }
.why-points li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px; color: var(--slate); font-family: var(--font);
}
.why-points li i { color: var(--gold); margin-top: 3px; }
.why-visual { position: relative; }
.why-card-main {
  background: var(--navy); border-radius: 16px;
  padding: 40px; color: var(--white); position: relative;
  overflow: hidden;
}
.why-card-main::after {
  content: ''; position: absolute;
  top: -50px; right: -50px; width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.why-card-main h3 { font-family: var(--font); font-size: 1.4rem; margin-bottom: 8px; }
.why-card-main p { color: rgba(255,255,255,0.6); font-size: 1rem; font-family: var(--font); }
.why-stat-row { display: flex; gap: 20px; margin-top: 28px; }
.why-stat { flex: 1; }
.why-stat-n { font-family: var(--font); font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.why-stat-l { font-size: 0.82rem; font-family: var(--font); color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.why-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); color: var(--navy);
  padding: 18px 22px; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem; font-family: var(--font);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
  text-align: center;
}
.why-badge span { display: block; font-family: var(--font); font-size: 2rem; font-weight: 900; line-height: 1; }

/* ===== FOOTER ===== */
footer {
  background: #060f1e; padding: 70px 8% 30px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand .logo-f {
  font-family: var(--font);
  color: var(--gold); font-size: 1.6rem; font-weight: 900;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 1rem; font-family: var(--font); line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s; text-decoration: none;
}
.social-links a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 { color: var(--white); font-family: var(--font); font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 1rem; font-family: var(--font); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 1rem; font-family: var(--font); }
.contact-item i { color: var(--gold); margin-top: 2px; width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.92rem; font-family: var(--font);
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--navy); color: var(--white);
  padding: 16px 24px; border-radius: 10px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 9999; display: none;
  font-family: var(--font); font-size: 1rem;
  animation: slideIn 0.3s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid   { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-grid       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  section { padding: 70px 6%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px; }
  .hero-stats { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== FONT SIZE INCREASES (global readability) ===== */
body { font-size: 18px; }
p, li, label, .contact-item { font-size: 1.08rem; line-height: 1.85; }
input, select, textarea { font-size: 1.05rem; }
.service-card p, .process-step p, .why-content p, .booking-info p { font-size: 1.08rem; line-height: 1.9; }
.footer-brand p { font-size: 1.02rem; }
.footer-col ul li a { font-size: 1rem; }
.footer-col h4 { font-size: 1.05rem !important; }
.contact-item { font-size: 1rem; }
.section-tag { font-size: 0.95rem; }
.hero-subtitle { font-size: 1.2rem; }
.process-intro { font-size: 1.1rem; }
.why-points li { font-size: 1.08rem; }
.why-card-main p { font-size: 1rem !important; }
.bf-text p { font-size: 0.98rem !important; }
.bf-text h5 { font-size: 1.05rem !important; }
.service-card h3 { font-size: 1.2rem; }
.process-step h4 { font-size: 1.15rem !important; }
.nav-links a { font-size: 1rem !important; }
.booking-form .form-subtitle { font-size: 1rem !important; }
.stat-label { font-size: 0.85rem !important; }
.form-group label { font-size: 0.9rem !important; }
.vg-card p { font-size: 1.02rem !important; }
.vg-card h3 { font-size: 1.22rem !important; }
.rv-text { font-size: 1.05rem !important; }
.rv-name { font-size: 1.02rem !important; }
.review-form-header h3 { font-size: 1.45rem !important; }
.review-form-header p { font-size: 1rem !important; }
.rf-group label { font-size: 0.9rem !important; }

/* ===== VISA GUIDE SECTION ===== */
#visa-guide { background: var(--cream); }
.visa-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.vg-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  transition: all 0.3s;
}
.vg-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); }
.vg-num {
  font-family: var(--font);
  font-size: 5rem; font-weight: 900;
  color: rgba(201,168,76,0.1);
  position: absolute; top: 8px; right: 18px;
  line-height: 1;
}
.vg-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  margin-bottom: 18px;
}
.vg-card h3 {
  font-family: var(--font);
  font-size: 1.2rem; color: var(--navy);
  font-weight: 800; margin-bottom: 12px;
}
.vg-card p {
  color: var(--slate); font-family: var(--font);
  font-size: 1rem; line-height: 1.75;
}
.vg-note {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--navy);
  border-radius: 14px; padding: 24px 32px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font); font-size: 1.05rem; line-height: 1.7;
}
.vg-note i { color: var(--gold); font-size: 1.5rem; flex-shrink: 0; }
.vg-note strong { color: var(--gold); }

/* ===== REVIEWS SECTION ===== */
#reviews { background: var(--navy); }
#reviews .section-title { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  min-height: 80px;
}
.reviews-loading {
  grid-column: 1/-1; text-align: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--font); font-size: 1rem; padding: 30px 0;
}
.reviews-empty {
  grid-column: 1/-1; text-align: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--font); font-size: 1rem; padding: 20px 0;
}
.rv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px; padding: 28px 24px;
  transition: all 0.3s;
}
.rv-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.rv-stars { color: var(--gold); font-size: 1.15rem; margin-bottom: 12px; letter-spacing: 2px; }
.rv-text {
  color: rgba(255,255,255,0.75);
  font-family: var(--font); font-size: 1rem;
  line-height: 1.75; margin-bottom: 18px;
  font-style: italic;
}
.rv-author {
  display: flex; align-items: center; gap: 12px;
}
.rv-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 900; font-family: var(--font);
  font-size: 1rem; flex-shrink: 0;
}
.rv-name { color: var(--white); font-family: var(--font); font-size: 1rem; font-weight: 700; }
.rv-date { color: rgba(255,255,255,0.35); font-family: var(--font); font-size: 0.82rem; margin-top: 2px; }

/* Review write form */
.review-form-wrap {
  background: var(--white);
  border-radius: 16px; padding: 44px 48px;
  max-width: 780px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.review-form-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f0ede7;
}
.review-form-header i { color: var(--gold); font-size: 1.6rem; margin-top: 4px; }
.review-form-header h3 {
  font-family: var(--font); font-size: 1.4rem;
  color: var(--navy); font-weight: 800; margin-bottom: 4px;
}
.review-form-header p { color: var(--slate); font-family: var(--font); font-size: 0.97rem; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rf-group { margin-bottom: 20px; }
.rf-group label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--navy); font-family: var(--font);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.rf-group input,
.rf-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #e8e0d5; border-radius: 8px;
  font-family: var(--font); font-size: 1rem;
  color: var(--navy); background: #fafaf8;
  transition: all 0.3s; outline: none; resize: vertical;
}
.rf-group input:focus,
.rf-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.star-picker { display: flex; gap: 6px; margin-top: 4px; }
.star {
  font-size: 2rem; color: #ddd; cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}
.star.active, .star:hover { color: var(--gold); transform: scale(1.15); }

/* ===== RESPONSIVE — new sections ===== */
@media (max-width: 1024px) {
  .visa-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-form-wrap { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .visa-guide-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rf-row { grid-template-columns: 1fr; }
  .vg-note { flex-direction: column; text-align: center; }
  .vg-note .btn-primary { margin-left: 0; }
}
