/* ============================================================
   SEAMLESS – Shared Stylesheet
   Fonts: Playfair Display (serif) + DM Sans (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --bg:        #f7f5f0;
  --card:      #ffffff;
  --fg:        #1a1410;
  --muted:     #7a6f64;
  --border:    #e3ddd4;
  --secondary: #f0ece4;
  --accent:    #b5401a;
  --accent-lt: rgba(181,64,26,.1);
  --radius:    14px;
  --nav-h:     88px;
  --shadow:    0 4px 32px rgba(26,20,16,.08);
  --shadow-lg: 0 16px 64px rgba(26,20,16,.14);
  --trans:     .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ── Helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 999px;
  font-size: .9rem; font-weight: 500; transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg); color: #fff;
}
.btn-primary:hover { background: #2d2217; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  border: 1.5px solid var(--border); color: var(--fg);
}
.btn-outline:hover { border-color: var(--fg); background: var(--secondary); }
.btn-accent {
  background: var(--accent); color: #fff;
}
.btn-accent:hover { background: #9a3415; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(181,64,26,.3); }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(247,245,240,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 52px; width: auto; }
.navbar__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: -.02em;
}
.navbar__logo-text span { color: var(--accent); }
.navbar__links {
  display: flex; align-items: center; gap: 2rem;
}
.navbar__links a {
  font-size: .9rem; color: var(--muted); transition: color var(--trans);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--fg); }
.navbar__dropdown { position: relative; }
.navbar__dropdown-btn {
  display: flex; align-items: center; gap: .3rem;
  font-size: .9rem; color: var(--muted); transition: color var(--trans);
}
.navbar__dropdown-btn:hover { color: var(--fg); }
.navbar__dropdown-btn svg { width:14px; height:14px; transition: transform var(--trans); }
.navbar__dropdown:hover .navbar__dropdown-btn svg { transform: rotate(180deg); }
.navbar__dropdown-menu {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translateX(-50%);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .5rem; min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity var(--trans), visibility var(--trans);
}
.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
}
.navbar__dropdown-menu a {
  display: block; padding: .75rem 1rem;
  border-radius: 8px; transition: background var(--trans);
}
.navbar__dropdown-menu a:hover { background: var(--secondary); }
.navbar__dropdown-menu .dd-label { font-size: .9rem; font-weight: 500; color: var(--fg); }
.navbar__dropdown-menu .dd-desc { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.navbar__cta { display: none; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: var(--trans); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1.5rem; z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu .mm-section-title {
  display: block; padding: .7rem .5rem;
  font-size: 1rem; border-radius: 8px;
}
.mobile-menu a:hover { background: var(--secondary); }
.mobile-menu .mm-section-title {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); padding-top: 1rem;
}
.mobile-menu .mobile-cta { margin-top: 1rem; }
.mobile-menu .mobile-cta .btn { width: 100%; justify-content: center; }

@media (min-width: 1024px) {
  .navbar__cta { display: block; }
}
@media (max-width: 1023px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
}
.hero--split { }
.hero__inner { }
.hero__inner--split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero__label {
  font-size: .8rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__desc { font-size: 1.1rem; color: var(--muted); max-width: 46ch; line-height: 1.7; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero__image {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--secondary);
}
.hero__image img { width:100%; height:100%; object-fit: cover; }
.hero__image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-lt), transparent);
  z-index: 1; border-radius: 20px;
}
.hero__centered { max-width: 760px; margin: 0 auto; text-align: center; }
.hero__centered .hero__desc { margin: 0 auto; }
.hero__centered .hero__ctas { justify-content: center; }

/* ── Marquee ── */
.marquee-section {
  padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--secondary); overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.marquee-track { display: flex; gap: 0; }
.marquee-items {
  display: flex; gap: 1rem; align-items: center;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap; flex-shrink: 0;
  cursor: default;          /* removes text cursor */
  user-select: none; 
}
.marquee-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 1.25rem; background: var(--card);
  border: 1px solid var(--border); border-radius: 999px;
}
.marquee-item .flag { font-size: 1.6rem; }
.marquee-item .name { font-size: .85rem; font-weight: 500; }
.marquee-achievement {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
}
.marquee-achievement svg { width:16px; height:16px; color: var(--accent); flex-shrink: 0; }
.marquee-achievement span { font-size: .85rem; font-weight: 500; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections ── */
.section { padding: 6rem 0; }
.section--alt { background: var(--secondary); }
.section__label {
  font-size: .78rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.section__title { margin-bottom: 1.25rem; }
.section__desc { font-size: 1.05rem; color: var(--muted); max-width: 56ch; }
.section__header { margin-bottom: 4rem; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }

/* ── Stats ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat { text-align: center; }
.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500; line-height: 1;
}
.stat__label {
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: .6rem;
}

/* ── Brand Cards ── */
.brand-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.brand-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4; display: block;
  border: 1px solid var(--border); transition: var(--trans);
}
.brand-card:hover { border-color: rgba(26,20,16,.2); box-shadow: var(--shadow-lg); }
.brand-card__img {
  width:100%; height:100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.brand-card:hover .brand-card__img { transform: scale(1.05); }
.brand-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.75) 0%, rgba(26,20,16,.2) 50%, transparent 100%);
}
.brand-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; color: #fff;
}
.brand-card__header {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.brand-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 500; color: #fff;
}
.brand-card__desc { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .3rem; }
.brand-card__arrow { opacity: .6; transition: var(--trans); }
.brand-card:hover .brand-card__arrow { opacity: 1; transform: translate(2px,-2px); }
.brand-card__highlight {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Placeholder brand card (no image) */
.brand-card--placeholder { background: var(--secondary); }
.brand-card--placeholder .brand-card__overlay { background: linear-gradient(to top, rgba(26,20,16,.6), rgba(26,20,16,.1)); }
.brand-card--1 { background: linear-gradient(135deg, #1a4a8a, #2d6bc4); }
.brand-card--2 { background: linear-gradient(135deg, #1a5a3a, #2d8c5e); }
.brand-card--3 { background: linear-gradient(135deg, #4a1a8a, #7d3ac4); }
.brand-card__icon { font-size: 4rem; text-align: center; padding-top: 3rem; }

/* ── Why Choose Us ── */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.split-image {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--secondary);
}
.split-image img { width:100%; height:100%; object-fit: cover; }
.split-float {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; max-width: 240px;
  box-shadow: var(--shadow-lg);
}
.split-float__stars { display: flex; gap: .25rem; margin-bottom: .75rem; }
.split-float__stars svg { width:14px; height:14px; fill: var(--accent); color: var(--accent); }
.split-float__text { font-size: .82rem; color: var(--muted); }
.split-float__author { font-size: .75rem; font-weight: 600; margin-top: 1rem; color: var(--fg); }
.features-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin: 2.5rem 0;
}
.feature-item { display: flex; align-items: flex-start; gap: .65rem; }
.feature-item__check {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--accent-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: .15rem;
}
.feature-item__check svg { width:10px; height:10px; color: var(--accent); }
.feature-item__text { font-size: .88rem; color: var(--muted); }

/* ── Service Cards ── */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.service-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem;
  transition: var(--trans);
}
.service-card:hover { border-color: rgba(181,64,26,.25); box-shadow: var(--shadow); }
.service-card__num {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--secondary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500;
  transition: background var(--trans);
}
.service-card:hover .service-card__num { background: var(--accent-lt); }
.service-card__title { font-size: 1.1rem; font-weight: 500; margin-bottom: .4rem; }
.service-card__desc { font-size: .88rem; color: var(--muted); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem;
  display: flex; flex-direction: column;
}
.testimonial-card__quote { font-size: 1.8rem; color: rgba(181,64,26,.2); line-height: 1; margin-bottom: .75rem; }
.testimonial-card__stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.testimonial-card__stars svg { width:14px; height:14px; fill: var(--accent); color: var(--accent); }
.testimonial-card__text { font-size: .9rem; color: var(--muted); flex: 1; line-height: 1.7; }
.testimonial-card__footer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.testimonial-card__name { font-weight: 600; font-size: .9rem; }
.testimonial-card__role { font-size: .8rem; color: var(--muted); margin-top: .15rem; }

/* ── CTA Banner ── */
.cta-banner {
  position: relative; border-radius: 24px; overflow: hidden;
  background: var(--fg); color: #fff;
  text-align: center; padding: 5rem 2rem;
}
.cta-banner__bg {
  position: absolute; inset: 0; opacity: .15;
}
.cta-banner__bg img { width:100%; height:100%; object-fit: cover; }
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title { color: #fff; margin-bottom: 1.25rem; }
.cta-banner__desc { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 46ch; margin: 0 auto 2.5rem; }
.cta-banner .btn-accent { background: #fff; color: var(--fg); }
.cta-banner .btn-accent:hover { background: var(--secondary); }

/* ── Footer ── */
.footer {
  background: var(--fg); color: rgba(255,255,255,.55);
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 2fr;
  gap: 3rem;
}
.footer__brand-logo { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer__brand-logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: #fff; margin-bottom: 1.25rem;
}
.footer__brand-logo-text span { color: var(--accent); }
.footer__brand-desc { font-size: .87rem; line-height: 1.7; max-width: 30ch; }
.footer__socials { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; }
.footer__socials-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__social {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 600; color: #fff;
  transition: background var(--trans);
}
.footer__social:hover { background: rgba(255,255,255,.2); }
.footer__col-title {
  font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 1rem; }
.footer__link { font-size: .87rem; transition: color var(--trans); }
.footer__link:hover { color: #fff; }
.footer__link-sub { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: .15rem; }
.footer__contact { display: flex; flex-direction: column; gap: 1.25rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: .85rem; }
.footer__contact-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer__contact-icon svg { width:14px; height:14px; color: var(--accent); }
.footer__contact-text { font-size: .85rem; line-height: 1.6; }
.footer__contact-text a { color: inherit; transition: color var(--trans); }
.footer__contact-text a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 0; margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { transition: color var(--trans); }
.footer__bottom-links a:hover { color: #fff; }

/* ── Page inner sections ── */
.page-content { padding: 0 0 6rem; }

/* Service detail */
.service-detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-detail-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem; transition: var(--trans);
}
.service-detail-card:hover { box-shadow: var(--shadow); border-color: rgba(181,64,26,.2); }
.service-detail-card__icon {
  width: 52px; height: 52px; background: var(--secondary);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background var(--trans);
}
.service-detail-card:hover .service-detail-card__icon { background: var(--accent-lt); }
.service-detail-card__icon svg { width:22px; height:22px; color: var(--fg); }
.service-detail-card__title { font-size: 1.1rem; margin-bottom: .6rem; }
.service-detail-card__desc { font-size: .87rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.7; }
.service-detail-card__features { display: flex; flex-direction: column; gap: .5rem; }
.service-detail-card__feature {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--muted);
}
.service-detail-card__feature::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}

/* Countries grid */
.countries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.country-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem 1rem; text-align: center;
  transition: var(--trans);
  cursor: default;          /* removes text cursor */
  user-select: none;    

}
.country-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.country-card__flag { font-size: 2.5rem; margin-bottom: .5rem; }
.country-card__name { font-weight: 600; font-size: .9rem; }
.country-card__visas { font-size: .73rem; color: var(--muted); margin-top: .3rem; line-height: 1.4; }

/* About timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item__dot {
  position: absolute; left: -2rem; top: .35rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--border); border: 3px solid var(--bg);
  transition: background var(--trans);
}
.timeline-item--highlight .timeline-item__dot { background: var(--accent); }
.timeline-item__year {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .25rem;
}
.timeline-item__event { font-size: .9rem; color: var(--muted); }
.timeline-item--highlight .timeline-item__event { color: var(--fg); font-weight: 500; }

/* Values grid */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem;
}
.value-card__icon {
  width: 48px; height: 48px; background: var(--accent-lt);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.value-card__icon svg { width:20px; height:20px; color: var(--accent); }
.value-card__title { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card__desc { font-size: .87rem; color: var(--muted); line-height: 1.7; }

/* Contact page */
.contact-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start;
}
.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--secondary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width:20px; height:20px; color: var(--fg); }
.contact-info-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .4rem;
}
.contact-info-value { font-size: .9rem; line-height: 1.7; }
.contact-info-value a { transition: color var(--trans); }
.contact-info-value a:hover { color: var(--accent); }
.hours-card {
  background: var(--secondary); border-radius: 16px; padding: 1.5rem; margin-top: 2rem;
}
.hours-card__title {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1rem;
}
.hours-card__title svg { width:18px; height:18px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: .87rem; padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border: none; }
.hours-label { color: var(--muted); }
.hours-value { font-weight: 500; }

/* ── Form Styles ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: .83rem; font-weight: 500; color: var(--muted); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--secondary); color: var(--fg);
  font-size: .9rem; transition: border-color var(--trans), background var(--trans);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent); background: var(--card);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit { margin-top: 1.5rem; }

/* ── Fade-in animations ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.fade-left.visible  { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-right.visible { opacity: 1; transform: none; }

/* stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── Success message ── */
.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 64px; height: 64px; background: var(--accent-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success__icon svg { width:28px; height:28px; color: var(--accent); }
.form-success__title { margin-bottom: .75rem; }
.form-success__desc { color: var(--muted); font-size: .95rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner--split { grid-template-columns: 1fr; }
  .hero__image { max-width: 600px; margin: 0 auto; aspect-ratio: 16/9; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { display: none; }
  .brand-cards { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding-top: calc(var(--nav-h) + 3rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .split-float { display: none; }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .btn { justify-content: center; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card__img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top; /* 👈 THIS FIXES IT */
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-card__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.team-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
}

@media(max-width:768px){
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2rem;
  min-height: 320px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;
  color: #fff;

  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
}

/* DARK OVERLAY FOR READABILITY */
.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.brand-card__body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.brand-card__title {
  font-size: 1.3rem;
  font-weight: 600;
}

.brand-card__desc {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.3rem;
}

.brand-card__highlight {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.brand-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand-card__arrow {
  opacity: 0.8;
}

/* OPTIONAL: subtle zoom effect */
.brand-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.brand-card * {
  transition: color 0.3s ease, stroke 0.3s ease;
}

.brand-card:hover .brand-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(181,64,26,0.75) /* reddish tint */
  );
}

.footer__brand-logo-text img {
  height: 80px;   /* control size */
  width: auto;
  display: block;
}

.footer__brand-logo-text {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  margin-top: 0.8rem;
}

.navbar__logo img {
  height: 65px;
  width: auto;
  display: block;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.footer__brand-logo-text img {
  transition: transform 0.3s ease;
}

.footer__brand-logo-text img:hover {
  transform: scale(1.05);
}