/* ============================================================
   InternationalPetAtl — Shared Stylesheet
   Color palette matched to IPRATL logo:
     "Sky & Honey" — Deep Blue #1f5a8a  |  Sky #5b9fd4  |  Honey Gold #d4a800
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1f5a8a;   /* deep sky-blue — primary brand (bg + heading text) */
  --navy-dark:  #164568;   /* darkest blue — top bar, footer, deep gradients */
  --navy-mid:   #2f6fa6;   /* mid blue */
  --sky:        #5b9fd4;   /* bright sky-blue accent */
  --sky-mid:    #7cb8e2;
  --sky-light:  #aad5ee;
  --sky-tint:   #dff0f9;   /* pale sky tint */
  --gold:       #d4a800;   /* honey gold */
  --gold-dark:  #a88500;   /* honey gold — hover */
  --gold-hi:    #e8be00;   /* bright honey accent */
  --gold-light: #fbf1c9;   /* pale honey tint */
  --blue:       #2b6ea8;   /* link blue */
  --blue-light: #dff0f9;
  --white:      #ffffff;
  --off-white:  #e9f3fb;   /* sky-tinted off-white — alt sections */
  --gray-100:   #e8f1f8;   /* sky-tinted light gray */
  --gray-300:   #cdd8e3;
  --gray-500:   #6f8090;
  --gray-700:   #3d4a5c;
  --text:       #2c3540;
  --font-head:  'Lora', Georgia, serif;
  --font-body:  'Source Sans 3', 'Helvetica Neue', sans-serif;
  --radius:     4px;
  --shadow:     0 2px 16px rgba(31,90,138,0.12);
  --shadow-lg:  0 8px 40px rgba(31,90,138,0.16);
  --max-w:      1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

/* ── UTILS ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(212,168,0,0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--gold); }
.top-bar .btn { padding: 6px 18px; font-size: 12px; }

/* ── MAIN NAV ── */
nav {
  background: var(--navy);
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-brand:hover { color: var(--gold); }
.tel-ico {
  width: 13px;
  height: 13px;
  fill: currentColor;
  vertical-align: -1px;
  margin-right: 6px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links .btn-primary {
  color: var(--navy-dark);
  padding: 8px 18px;
  font-size: 12px;
  margin-left: 8px;
}
.nav-links .btn-primary:hover { color: var(--white); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

/* ── HERO — split-panel photo carousel ── */
.hero {
  display: flex;
  min-height: 540px;
}
.hero-panel {
  flex: 0 0 44%;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 52%, var(--navy-dark) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(30px, 4vw, 68px);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.hero-eyebrow .plane { color: var(--gold-hi); }
.hero-panel h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 16px;
}
.hero-panel h1 em { color: var(--gold-hi); font-style: normal; }
.hero-panel p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  max-width: 430px;
  margin-bottom: 30px;
}
.hero-panel .btn { align-self: flex-start; }
.hero-dots {
  display: flex;
  gap: 9px;
  margin-top: 36px;
}
.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }
.hero-dot.is-active {
  background: var(--gold-hi);
  transform: scale(1.18);
}
.hero-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-arrow:hover { background: var(--white); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
@media (max-width: 860px) {
  .hero { flex-direction: column; min-height: 0; }
  .hero-panel { flex: none; padding: 46px 26px 38px; }
  .hero-panel p { max-width: none; }
  .hero-carousel { flex: none; height: 300px; }
}

/* ── TRUSTED BY ── */
.trusted {
  background: var(--gray-100);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-300);
}
.trusted-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}
.trusted-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted-logos span {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-500);
  opacity: 0.65;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-gold { background: var(--gold); color: var(--navy-dark); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-navy .section-label { color: rgba(212,168,0,0.85); }

h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-navy h2 { color: var(--white); }
h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-navy h3 { color: var(--white); }

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gold-light) 100%);
  border-radius: 8px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px dashed var(--gray-300);
  text-align: center;
  flex-direction: column;
  gap: 10px;
}
.img-placeholder svg { opacity: 0.35; }

/* Gold accent rule */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}

/* ── SERVICES GRID ── */
.services-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 40px 0;
}
.service-highlight {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.service-highlight h3 { margin-bottom: 8px; }
.service-highlight p { color: var(--gray-500); font-size: 15px; }

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.2s;
}
.service-item:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-light);
}
.service-item::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 32px; font-size: 17px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 20px;
  margin-top: 18px;
}
.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ── DESTINATIONS ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.destination-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
.destination-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.destination-card .flag { font-size: 30px; margin-bottom: 8px; }
.destination-card strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
.destination-card span { font-size: 12px; color: var(--gray-500); }

/* ── WORLD MAP SECTION ── */
.world-section {
  text-align: center;
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.world-section h2 { color: var(--white); margin-bottom: 16px; }
.world-section p { color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto 32px; }
.world-map-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,0,0.2);
  border-radius: 8px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,168,0,0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto 36px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--gold-light);
  border: 1px solid rgba(212,168,0,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-detail strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 2px; }
.contact-detail a, .contact-detail p { color: var(--navy); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 60px 0 55px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.62);
  padding: 56px 0 28px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.9; }
.footer-col address a { color: rgba(255,255,255,0.58); }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,168,0,0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); margin-left: 20px; }
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .services-highlights { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px;
    gap: 4px;
    border-top: 2px solid var(--gold);
  }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HERO BACKGROUND (inner pages) ── */
.page-hero {
  background-image:
    linear-gradient(150deg, rgba(22,69,104,0.92) 0%, rgba(31,90,138,0.86) 100%),
    url('https://images.unsplash.com/photo-1436891678271-9c672565d8f6?w=1600&q=85&fit=crop&h=600');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── SECTION IMAGES ── */
.section-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.section-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(212,168,0,0.18);
  pointer-events: none;
}
.section-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.section-img-wrap:hover .section-img {
  transform: scale(1.02);
}

/* ── WORLD MAP IMAGE ── */
.world-map-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto 36px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  border: 1px solid rgba(212,168,0,0.2);
}
.world-map-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

/* ── ABOUT PAGE — team/service image ── */
.about-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}
.about-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── TESTIMONIALS PAGE — hero pet photo strip ── */
.testimonials-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0 0;
}
.testimonials-photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) {
  .section-img { height: 280px; }
  .world-map-img { height: 220px; }
  .testimonials-photo-strip { grid-template-columns: 1fr; }
  .testimonials-photo-strip img { height: 160px; }
}
