/* =====================================================
   TRANSWORLD CAREER CONSULTANTS — style.css
   Full Responsive: Mobile / Tablet / Desktop
   ===================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0a1628;
  --navy2:     #0d2044;
  --gold:      #f5a623;
  --white:     #ffffff;
  --green:     #25d366;
  --blue:      #1877f2;
  --red:       #e53935;
  --purple:    #7c3aed;
  --star:      #f5a623;
  --light-bg:  #f7f9fc;
  --border:    #e2e8f0;
  --text-dark: #0a1628;
  --text-mid:  #444;
  --text-soft: #888;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ---------- SHARED SECTION ---------- */
.section { padding: 60px 20px; }

.section-sup {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  color: var(--text-mid);
  font-size: 13.5px;
  max-width: 500px;
  margin: 0 auto 36px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img{
    width:170px;
    height:auto;
    display:block;
}
/*.logo-title {*/
/*  color: var(--white);*/
/*  font-weight: 800;*/
/*  font-size: clamp(12px, 2vw, 16px);*/
/*  letter-spacing: 0.5px;*/
/*  line-height: 1.2;*/
/*}*/

.logo-sub {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: #ff0000; }

.nav-book-btn {
  background: #ff0000;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-book-btn:hover { opacity: 0.85; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
@media(max-width:768px){

    .nav-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .logo{
        flex:1;
    }

    .logo img{
        width:165px;
    }

    .hamburger{
        margin-left:auto;
    }

}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #000;
  border-radius: 4px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================
   AVATAR STRIP
   ===================================================== */
.avatar-strip {
  background: var(--navy);
  border-top: 1px solid #1e3055;
  padding: 8px 16px;
  overflow: hidden;
}

.avatar-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.avatar-scroll::-webkit-scrollbar { display: none; }

.avatar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5c, #0a2040);
  border: 2px solid #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.avatar-label {
  color: #8fa8c8;
  font-size: 8px;
  margin-top: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    background:url('images/bg-desk.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 50px 20px;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.07), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.hero-small {
  color: #a0b4cc;
  font-size: 14px;
  margin-bottom: 8px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-title span { color: var(--gold); }

.hero-desc {
  color: #b0c4d8;
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { opacity: 0.85; }

.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-green:hover { opacity: 0.85; }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon { font-size: 20px; }
.trust-label { font-size: 11.5px; font-weight: 700; color: var(--white); }
.trust-sub { font-size: 10px; color: #f5a623; }

.hero-right {
  flex: 0 0 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.hero-person {
  width: 260px;
  height: 320px;
  background: linear-gradient(160deg, #1e3a5c, #0a1628);
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-emoji {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 16px;
}

.badge-1000 {
  position: absolute;
  right: -10px;
  top: 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 10.5px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
}
.badge-1000 span { font-size: 20px; font-weight: 900; display: block; line-height: 1; }

/* =====================================================
   GOOGLE BUSINESS
   ===================================================== */
.google-biz { background: var(--light-bg); }

.gbiz-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gbiz-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 180px;
}

.gbiz-photo {
  background: linear-gradient(135deg, #1e3a5c, #0a1628);
  display: flex;
  align-items: flex-start;
  position: relative;
  height: 130px;
  border-right: 2px solid var(--white);
}
.gbiz-photo:last-child { border-right: none; }

.photo-badge {
  position: absolute;
  bottom: 0px;
  left: 8px;
  background: black;
  color: var(--white);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
}

.map-photo {
  background: #e8f0f8;
  font-size: 14px;
}

.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.map-label {
  font-size: 10px;
  font-weight: 700;
  color: #1a73e8;
  text-align: center;
  line-height: 1.3;
}
.map-city { font-size: 9px; color: #555; }

.gbiz-info { padding: 20px 24px; }
.gbiz-name { font-size: 18px; font-weight: 800; margin-bottom: 6px; }

.gbiz-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.stars { color: var(--star); font-size: 15px; letter-spacing: 1px; }
.rating-num { font-size: 14px; font-weight: 700; }
.review-count { color: var(--text-soft); font-size: 13px; }
.gbiz-type { color: var(--text-mid); font-size: 13px; margin-bottom: 4px; }
.open-status { color: #1e8a3c; font-size: 13px; font-weight: 600; }

.gbiz-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.gbiz-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: #333;
  transition: background 0.2s;
}
.gbiz-btn:hover { background: #f0f4f8; }

/* Rating Section */
.rating-section {
  max-width: 760px;
  margin: 20px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.rating-big { text-align: center; min-width: 90px; }
.rating-big-num { font-size: 52px; font-weight: 900; color: var(--text-dark); line-height: 1; }
.rating-big-stars { color: var(--star); font-size: 20px; margin: 6px 0 4px; }
.rating-big-count { color: var(--text-soft); font-size: 12px; }

.rating-bars { flex: 1; min-width: 180px; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.bar-label { font-size: 12px; color: var(--text-soft); width: 12px; text-align: right; }
.bar-star { color: var(--star); font-size: 12px; }
.bar-track { flex: 1; height: 8px; background: #e8edf2; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--star); border-radius: 4px; }
.bar-pct { font-size: 11px; color: var(--text-soft); width: 28px; }

.review-cta { text-align: center; min-width: 180px; }
.review-cta p { font-size: 13px; font-weight: 700; margin-bottom: 12px; line-height: 1.5; }
.review-cta p span { font-weight: 400; font-size: 12px; }

.btn-google-review {
  background: #ea4335;
  color: var(--white);
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 8px;
  transition: opacity 0.2s;
}
.btn-google-review:hover { opacity: 0.85; }
.review-thanks { color: #ea4335; font-size: 12px; }

/* =====================================================
   SOCIAL CARDS (FB + INSTA)
   ===================================================== */
.facebook-section { background: var(--white); }
.insta-section { background: var(--light-bg); }

.social-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.social-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.fb-logo {
  background: linear-gradient(135deg, #0a1628, #1e3a5c);
}

.insta-logo-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}

.insta-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1628, #1e3a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.social-info { flex: 1; min-width: 180px; }
.social-name { font-size: 15px; font-weight: 800; margin-bottom: 2px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.verified { color: #1877f2; font-size: 14px; }
.social-handle { color: var(--text-soft); font-size: 12px; margin-bottom: 4px; }
.social-stats { color: var(--text-mid); font-size: 12.5px; margin-bottom: 6px; }
.social-desc { color: var(--text-mid); font-size: 13px; line-height: 1.6; }
.social-loc { color: var(--text-soft); font-size: 12px; margin-top: 4px; }

.insta-stats-row { display: flex; gap: 18px; margin-bottom: 8px; }
.insta-stat { display: flex; flex-direction: column; }
.s-num { font-size: 14px; font-weight: 700; }
.s-lbl { font-size: 11px; color: var(--text-soft); }

.social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}

.btn-social {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  justify-content: center;
}
.btn-fb { background: var(--blue); color: var(--white); }
.btn-insta { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366); color: var(--white); }
.btn-social:hover { opacity: 0.85; }
.btn-social-outline {
  background: #f0f4f8;
  color: #333;
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  justify-content: center;
}
.btn-social-outline:hover { background: #e2e8f0; }

/* =====================================================
   CATEGORIES
   ===================================================== */
.categories-section { background: var(--white); padding: 40px 20px; }

.categories-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  min-width: 80px;
}
.cat-item:hover { transform: translateY(-5px); }

.cat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.cat-item:hover .cat-icon { border-color: var(--gold); }
.cat-label { font-size: 11.5px; font-weight: 600; color: #333; text-align: center; max-width: 80px; line-height: 1.3; }

/* =====================================================
   OTHER IMPORTANT LINKS
   ===================================================== */
.links-section { background: var(--light-bg); }

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.link-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }

.link-green { border-top-color: var(--green); }
.link-red   { border-top-color: var(--red); }
.link-blue  { border-top-color: var(--blue); }
.link-purple{ border-top-color: var(--purple); }

.link-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 4px;
}

.link-green .link-card-icon  { background: #dcfce7; }
.link-red   .link-card-icon  { background: #fce8e8; }
.link-blue  .link-card-icon  { background: #dbeafe; }
.link-purple .link-card-icon { background: #ede9fe; }

.link-card-title { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.link-card-sub   { font-size: 12px; color: var(--text-soft); margin-bottom: 6px; }

.link-card-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.link-card-btn:hover { opacity: 0.85; }
.lbtn-green  { background: var(--green); }
.lbtn-red    { background: var(--red); }
.lbtn-blue   { background: var(--blue); }
.lbtn-purple { background: var(--purple); }

/* =====================================================
   OUR SERVICES
   ===================================================== */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 6px;
}

.service-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.service-desc { font-size: 11.5px; color: var(--text-mid); line-height: 1.6; flex: 1; }
.service-link { font-size: 12px; font-weight: 700; color: var(--blue); margin-top: 4px; transition: color 0.2s; }
.service-link:hover { color: var(--navy); }

/* =====================================================
   STATS BANNER
   ===================================================== */
.stats-banner {
  background: var(--navy);
  padding: 36px 20px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon { font-size: 32px; }
.stat-num { font-size: clamp(22px, 4vw, 32px); font-weight: 900; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 13px; color: #8fa8c8; margin-top: 2px; }

/* =====================================================
   SUCCESS STORIES / REVIEWS SLIDER
   ===================================================== */
.success-section { background: var(--light-bg); }

.reviews-slider {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.review-card {
  min-width: calc(33.333% - 14px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5c, #0a1628);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.reviewer-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.reviewer-tag  { font-size: 11.5px; color: var(--text-soft); margin-bottom: 3px; }
.review-stars  { color: var(--star); font-size: 13px; }

.quote-mark {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 40px;
  color: #e8edf2;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d8e4;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.dot.active { background: var(--gold); transform: scale(1.2); }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section { background: var(--white); }

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-form-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-sub {
  color: #8fa8c8;
  font-size: 13px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid #1e3a5c;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: #6a8aaa; }
.form-input:focus { border-color: var(--gold); }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #6a8aaa;
}
.form-select option { background: var(--navy); color: var(--white); }

.btn-book-full {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
}
.btn-book-full:hover { opacity: 0.85; }

.contact-info-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-info-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.contact-details { margin-bottom: 20px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-detail span { font-size: 18px; }

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  padding: 20px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  color: #6a8aaa;
  font-size: 12px;
}

/* =====================================================
   UTILITY
   ===================================================== */
.desktop-only { display: inline-flex; }

/* =====================================================
   RESPONSIVE — TABLET (max 900px)
   ===================================================== */
/* Mobile Menu Background Same */
@media (max-width: 768px){

  .nav-links{
      background: var( --navy); /* same dark background */
  }

  /* Normal Menu Text */
  .nav-links li a{
      color: #fff;
      transition: 0.3s;
  }

  /* Active Menu Color */
  .nav-links li a.active{
      color: #ffd700; /* Yellow */
  }

  /* Hover Effect */
  .nav-links li a:hover{
      color: #ffd700; /* Same as active */
  }

}
@media (max-width: 900px) {

  /* Nav */
  .desktop-only { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 14px;
    border-top: 1px solid #1e3055;
    z-index: 999;
  }
  .nav-links.open { display: flex; }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: left;
    padding: 40px 20px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0px 0px 24px 0px; width:85%; }
  .hero-btns { justify-content: left; }
  .hero-trust { justify-content: center; }
  .hero-right { flex: none; width: 100%; justify-content: center; }
  .badge-1000 { right: 10px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Links */
  .links-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .review-card { min-width: calc(50% - 10px); }

  /* Rating */
  .rating-section { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
}

/* =====================================================
   RESPONSIVE — MOBILE (max 600px)
   ===================================================== */
@media (max-width: 600px) {

  .section { padding: 40px 16px; }

  /* Hero */
  .hero { padding: 32px 16px; }
  .hero-title { font-size: 26px; }
  .hero-person { width: 200px; height: 240px; }
  .hero-emoji { font-size: 68px; }
  .badge-1000 { width: 72px; height: 72px; font-size: 9px; right: 0; }
  .badge-1000 span { font-size: 17px; }

  /* Trust items */
  .hero-trust { gap: 12px; }
  .trust-icon { font-size: 16px; }

  /* Google biz */
  .gbiz-photos { grid-template-columns: 1fr 1fr; height: 140px; }
  .gbiz-photos .gbiz-photo:last-child { display: none; }
  .gbiz-actions { gap: 8px; }
  .gbiz-btn { padding: 7px 10px; font-size: 11px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Links */
  .links-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .link-card { padding: 18px 12px; }
  .link-card-btn { font-size: 12px; padding: 8px 12px; }

  /* Social card */
  .social-card { flex-direction: column; align-items: flex-start; }
  .social-btns { flex-direction: row; flex-wrap: wrap; min-width: 0; width: 100%; }
  .btn-social, .btn-social-outline { flex: 1; font-size: 12px; padding: 9px 12px; }

  /* Stats */
  .stats-inner { gap: 18px; }
  .stat-item { gap: 8px; }

  /* Reviews */
  .review-card { min-width: 100%; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 22px 16px; }
  .contact-info-box { padding: 20px 16px; }

  /* Rating */
  .rating-big-num { font-size: 40px; }

  /* Categories */
  .categories-grid { gap: 10px; }
  .cat-icon { width: 58px; height: 58px; font-size: 22px; }
  .cat-label { font-size: 10.5px; }

  /* Section label */
  .section-label { font-size: 16px; }

  /* Footer */
  .footer-copy { font-size: 11px; }
}

/* =====================================================
   RESPONSIVE — VERY SMALL (max 360px)
   ===================================================== */
@media (max-width: 360px) {
  .hero-title { font-size: 22px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .links-grid { grid-template-columns: 1fr 1fr; }
  .btn-gold, .btn-green { font-size: 12px; padding: 10px 14px; }
}

.gbiz-type > a > b {
    color: black !important;
}
.success-section{
    padding:60px 20px;
    background:#fff;
}

.section-sup{
    text-align:center;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#1a73e8;
    margin-bottom:10px;
}

.section-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    margin-bottom:35px;
    color:#111;
}

/* Google Reviews Box */
.google-review-wrapper{
    position:relative;
    border-radius:28px;
    overflow:hidden;
}

/* Elfsight Custom Styling */
.google-review-wrapper .eapps-widget{
    border-radius:28px !important;
}

/* Hide Branding Optional */
.google-review-wrapper a[href*="elfsight.com"]{
    display:none !important;
}

/* Mobile */
@media(max-width:768px){

    .success-section{
        padding:45px 15px;
    }

    .section-title{
        font-size:28px;
    }

}