/* ═══════════════════════════════════════════════
   Pebbles Travel — style.css
   Primary: #F99B28  Cream: #F5F0E8  Dark: #2A2A2A
═══════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange:       #F99B28;
  --orange-dark:  #e08a1a;
  --cream:        #F5F0E8;
  --dark-section: #2A2A2A;
  --footer-bg:    #1A1A1A;
  --white:        #ffffff;
  --gray:         #666;
  --light-gray:   #f0f0f0;
  --font:         'Poppins', sans-serif;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,.14);
  --transition:   .25s ease;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #222; background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
textarea { resize: vertical; }

/* ── Container ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
  border: 2px solid var(--orange); transition: var(--transition);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #222; border-color: #ddd; }
.btn-secondary:hover { background: #f5f5f5; border-color: #ccc; }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid var(--orange); color: var(--orange);
  padding: 13px 32px; border-radius: 8px; font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-outline-dark {
  display: inline-flex; align-items: center;
  border: 2px solid var(--white); color: var(--white);
  padding: 13px 32px; border-radius: 8px; font-weight: 600;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--white); color: #222; }
.btn-cta-dark {
  display: inline-flex; align-items: center;
  background: #1a1a1a; color: var(--white);
  padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px;
  transition: var(--transition);
}
.btn-cta-dark:hover { background: #333; transform: translateY(-1px); }
.btn-promo {
  display: inline-flex; align-items: center;
  border: 2px solid var(--white); color: var(--white);
  padding: 12px 28px; border-radius: 8px; font-weight: 600;
  transition: var(--transition);
}
.btn-promo:hover { background: var(--white); color: var(--orange); }

/* ── Section Helpers ── */
.section { padding: 88px 0; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--orange);
  text-transform: uppercase; margin-bottom: 12px;
}
.section-hdr { margin-bottom: 52px; }
.section-hdr h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.section-hdr.centered { text-align: center; }
.deco-line { width: 60px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 20px; }
.deco-line-center { margin-left: auto; margin-right: auto; }
.section-sub { color: var(--gray); font-size: 15px; max-width: 560px; margin-top: 4px; }
.section-cta-wrap { text-align: center; margin-top: 48px; }

/* ── Top Bar ── */
.top-bar { background: var(--cream); border-bottom: 1px solid rgba(0,0,0,.07); }
.tb-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 24px; }
.tb-contacts { display: flex; gap: 24px; }
.tb-contacts a {
  font-size: 13px; color: var(--orange); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.tb-contacts a:hover { color: var(--orange-dark); }
.tb-hours { font-size: 12px; color: var(--gray); }

/* ── Navbar ── */
.navbar {
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 22px; display: flex; align-items: center; }
.logo-text { font-size: 18px; font-weight: 800; color: #111; }
.logo-accent { color: var(--orange); }
.nav-links { display: flex; gap: 4px; }
.nav-links li a {
  padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500;
  color: #444; transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--orange); background: rgba(249,155,40,.08); }
.nav-social { display: flex; gap: 8px; }
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--orange); color: var(--white);
  border-radius: 6px; font-size: 14px; transition: var(--transition);
  text-decoration: none;
}
.nav-social-icon:hover { background: var(--orange-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #222; border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid #eee; padding: 16px 24px; gap: 8px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: #222; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }

/* ── Hero ── */
.hero { background: var(--white); padding: 80px 0 60px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--orange); text-transform: uppercase; margin-bottom: 16px; }
.hero-h1 { font-size: clamp(34px, 4vw, 52px); font-weight: 900; line-height: 1.18; margin-bottom: 20px; color: #111; }
.h1-orange { color: var(--orange); }
.hero-sub { color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  padding: 0 24px 24px 0;
}
.hero-img-wrap::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: calc(100% - 24px); height: calc(100% - 24px);
  background: var(--orange); border-radius: 16px; z-index: 0; opacity: 0.18;
}
.hero-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 16px; display: block;
  position: relative; z-index: 1;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}

/* ── Tour Cards ── */
.tours-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.tour-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
}
.tour-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.tc-img-link { display: block; }
.tc-img-wrap { height: 220px; overflow: hidden; }
.tc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tour-card:hover .tc-img-wrap img { transform: scale(1.05); }
.tc-body { padding: 20px 22px 22px; }
.tc-date { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.tc-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.tc-body h3 a { color: #111; transition: var(--transition); }
.tc-body h3 a:hover { color: var(--orange); }
.tc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.tc-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; color: #555; margin-bottom: 14px; align-items: center; }
.tc-price-label { font-size: 15px; font-weight: 700; color: var(--orange); margin-right: auto; }
.tc-meta-item { display: inline-flex; align-items: center; gap: 5px; background: var(--cream); padding: 3px 9px; border-radius: 20px; color: var(--gray); }
.tc-footer-link { border-top: 1px solid #f0f0f0; padding-top: 14px; }
.learn-more-link { font-size: 13px; font-weight: 600; color: var(--orange); transition: var(--transition); }
.learn-more-link:hover { color: var(--orange-dark); gap: 6px; }

/* ── Destinations Section ── */
.destinations-section { background: var(--cream); }

/* ── About Features ── */
.about-features-section { background: var(--cream); }
.af-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.af-photo img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.af-content h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.af-intro { color: var(--gray); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.af-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.af-card {
  background: var(--white); padding: 20px; border-radius: var(--radius);
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow);
}
.af-icon { font-size: 26px; flex-shrink: 0; color: var(--orange); }
.af-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.af-card p { font-size: 12.5px; color: var(--gray); line-height: 1.5; }
.af-highlight { color: var(--orange); }

/* ── Steps ── */
.steps-section { background: var(--white); overflow: hidden; }
.steps-2col { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.steps-left { background: var(--white); display: flex; align-items: center; }
.container-steps { padding: 80px 60px 80px max(40px, calc(50vw - 660px)); }
.container-steps h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.steps-sub { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 32px; }
.steps-list { display: flex; flex-direction: column; gap: 28px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-icon-box {
  width: 52px; height: 52px; background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--orange); flex-shrink: 0;
}
.step-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.steps-photo { position: relative; overflow: hidden; }
.steps-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA Orange Banner ── */
.cta-orange-banner { background: var(--orange); padding: 80px 0; }
.cta-centered { text-align: center; }
.cta-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: rgba(255,255,255,.8); text-transform: uppercase; margin-bottom: 14px; }
.cta-orange-banner h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.cta-phone-line { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.cta-phone-line a { color: var(--white); text-decoration: underline; }
.cta-sub { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 32px; }

/* ── Gallery Strip ── */
.gallery-section { line-height: 0; overflow: hidden; }
.gallery-strip { display: flex; height: 280px; }
.gallery-strip img { flex: 1; min-width: 0; height: 100%; object-fit: cover; filter: brightness(.92); transition: var(--transition); }
.gallery-strip img:hover { flex: 1.5; filter: brightness(1); }

/* ── Contact Strip ── */
.contact-strip { background: var(--cream); padding: 22px 0; border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
.contact-strip p { font-size: 14px; color: var(--gray); text-align: center; }
.contact-strip a { color: var(--orange); font-weight: 600; }

/* ── Testimonials ── */
.testimonials-section { background: var(--cream); }
.testimonials-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 16px; }
.testimonials-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 16px; }
.t-card {
  background: var(--white); padding: 32px 28px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.t-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--orange); }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.t-text { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.t-date { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--orange); text-transform: uppercase; }

/* ── Blog ── */
.blog-section { background: var(--cream); }
.blog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.blog-header-left h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.consult-box {
  background: var(--orange); color: var(--white); padding: 20px 24px;
  border-radius: var(--radius); display: flex; gap: 14px; align-items: center;
  min-width: 240px;
}
.consult-icon { font-size: 28px; color: var(--orange); }
.consult-box strong { font-size: 14px; display: block; margin-bottom: 4px; }
.consult-box p { font-size: 13px; opacity: .9; }
.consult-box a { color: var(--white); text-decoration: underline; }
.blog-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.blog-articles { display: flex; flex-direction: column; gap: 24px; }
.blog-article { padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,.1); }
.blog-article:last-child { border-bottom: none; }
.blog-date { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.blog-article h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.blog-article h4 a { color: #111; transition: var(--transition); }
.blog-article h4 a:hover { color: var(--orange); }
.blog-article p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.blog-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); max-height: 340px; }

/* ── Promo Banner ── */
.promo-banner { background: var(--orange); padding: 52px 0; }
.promo-inner { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 32px; align-items: center; }
.promo-left h3 { font-size: 22px; font-weight: 800; color: var(--white); }
.promo-mid p { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.6; }
.promo-right { text-align: right; }

/* ── Contact Dark Section ── */
.contact-dark-section { background: var(--dark-section); padding: 88px 0; }
.contact-dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-dark-left .section-tag { color: rgba(249,155,40,.9); }
.contact-dark-h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.contact-dark-left .deco-line { margin-bottom: 24px; }
.contact-dark-lead { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.contact-dark-desc { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; margin-bottom: 32px; }
.contact-info-card {
  background: #3A3A3A; border-radius: var(--radius); padding: 32px;
}
.contact-info-card h3 { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin: 20px 0 8px; }
.contact-info-card h3:first-child { margin-top: 0; }
.contact-info-card p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.6; }

/* ── Footer ── */
.footer { background: var(--footer-bg); padding: 64px 0 0; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-logo-accent { color: var(--orange); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
.footer-tagline { color: var(--orange); font-weight: 600; font-style: italic; font-size: 13px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-icon {
  width: 34px; height: 34px; background: #2a2a2a; color: var(--white);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition); font-weight: 700;
}
.footer-social-icon:hover { background: var(--orange); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: .5px; margin-bottom: 12px; }
.footer-deco-line { width: 36px; height: 2px; background: var(--orange); border-radius: 2px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-insta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.footer-insta-grid a { aspect-ratio: 1; overflow: hidden; border-radius: 6px; }
.footer-insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.footer-insta-grid a:hover img { transform: scale(1.08); opacity: .85; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--orange); }

/* ── Page Hero (inner pages) ── */
.page-hero { background: var(--cream); padding: 60px 0 48px; border-bottom: 1px solid rgba(0,0,0,.07); }
.page-hero h1 { font-size: 42px; font-weight: 900; margin: 10px 0 12px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: var(--gray); font-size: 16px; max-width: 520px; }
.breadcrumb { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.breadcrumb a { color: var(--orange); }

/* ── Tours Page Filter ── */
.tours-page-section { background: var(--white); }
.tours-filter { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 20px; border-radius: 24px; font-size: 13px; font-weight: 600;
  border: 2px solid #ddd; background: transparent; color: #666;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── CTA Mini Strip ── */
.cta-mini-strip { background: var(--cream); padding: 40px 0; border-top: 1px solid rgba(0,0,0,.06); }
.cta-mini-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-mini-inner h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.cta-mini-inner p { font-size: 14px; color: var(--gray); }

/* ── Tour Detail ── */
.tour-detail-hero { background-size: cover; background-position: center; min-height: 420px; position: relative; display: flex; align-items: flex-end; }
.tdh-overlay { background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%); width: 100%; padding: 48px 0; }
.tdh-bc { margin-bottom: 14px; }
.tdh-bc, .tdh-bc a { color: rgba(255,255,255,.75); font-size: 13px; }
.tdh-bc a:hover { color: var(--orange); }
.tdh-title { font-size: 40px; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.tdh-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tdh-tag { background: rgba(255,255,255,.15); backdrop-filter: blur(4px); color: var(--white); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.tour-detail-section { background: var(--white); }
.td-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: flex-start; }
.td-block { margin-bottom: 40px; }
.td-block-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.td-overview { color: var(--gray); font-size: 15px; line-height: 1.8; margin-top: 16px; }
.td-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.td-hi { display: flex; gap: 12px; align-items: flex-start; }
.td-check { width: 22px; height: 22px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.td-hi span { font-size: 14.5px; color: #333; line-height: 1.5; }
.td-inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.td-inc-label { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.td-inc-yes { color: #2e7d32; }
.td-inc-no { color: #c62828; }
.td-inc-list { display: flex; flex-direction: column; gap: 8px; }
.td-inc-list li { font-size: 13.5px; color: var(--gray); padding-left: 14px; position: relative; }
.td-inc-list li::before { content: '•'; position: absolute; left: 0; color: var(--orange); }
.td-sidebar { position: sticky; top: 90px; }
.td-booking-card { background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 32px rgba(0,0,0,.12); padding: 28px; }
.td-price-area { background: var(--cream); border-radius: 8px; padding: 16px 20px; text-align: center; margin-bottom: 24px; }
.td-price { font-size: 32px; font-weight: 900; color: var(--orange); }
.td-per { font-size: 13px; color: var(--gray); margin-left: 6px; }
.td-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.td-row { display: flex; gap: 12px; align-items: center; font-size: 18px; color: var(--orange); }
.td-lbl { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.td-val { font-size: 14px; font-weight: 600; color: #222; }
.td-back { display: block; text-align: center; font-size: 13px; color: var(--gray); margin-top: 8px; transition: var(--transition); }
.td-back:hover { color: var(--orange); }
.related-section { background: var(--cream); }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; }
.team-img { height: 220px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card h3 { font-size: 16px; font-weight: 700; margin: 16px 16px 6px; }
.team-role { font-size: 12px; color: var(--orange); font-weight: 600; margin: 0 16px 8px; }
.team-bio { font-size: 13px; color: var(--gray); margin: 0 16px 16px; line-height: 1.5; }

/* ── Contact Page ── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.contact-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; font-size: 15px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--orange); flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--gray); line-height: 1.5; }
.contact-item a { color: var(--orange); }
.ci-sub { font-size: 12px; color: #999; }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #444; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #ddd;
  border-radius: 8px; font-family: var(--font); font-size: 14px; color: #222;
  transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,155,40,.12);
}
.form-group textarea { min-height: 110px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tours-3col { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .af-grid { gap: 40px; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .steps-2col { grid-template-columns: 1fr; }
  .steps-photo { height: 320px; }
  .container-steps { padding: 48px 24px; }
  .contact-dark-grid, .af-grid { grid-template-columns: 1fr; }
  .af-photo { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-2col { grid-template-columns: 1fr; }
  .blog-photo { display: none; }
  .promo-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .promo-right { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .td-grid { grid-template-columns: 1fr; }
  .td-sidebar { position: static; }
  .cta-mini-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .tours-3col, .testimonials-2col, .testimonials-3col { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .af-cards-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .gallery-strip { height: 180px; }
  .tb-hours { display: none; }
  .td-inc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-insta-col { display: none; }
  .section { padding: 56px 0; }
  .page-hero h1 { font-size: 28px; }
  .tdh-title { font-size: 26px; }
}
