/* =============================================
   DOGTRAININGCOST — Main Stylesheet
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

/* Follow banner uses boarding photo as background */
#follow-banner {
  background-image: url('images/card-boarding.jpg');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a2332;
  background: #fff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --teal: #2dcbaa;
  --teal-dark: #22a98e;
  --navy: #1a2332;
  --navy-light: #243147;
  --cream: #f5f4ef;
  --white: #ffffff;
  --gray-text: #555e6d;
  --border-teal: 4px solid var(--teal);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 35, 50, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 7vw;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.top-bar-item a {
  transition: color 0.3s;
}

.top-bar-item a:hover {
  color: var(--teal);
}

.header-main {
  width: 100%;
  padding: 0 7vw;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header.scrolled {
  background: rgba(26, 35, 50, 0.98);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 64px;
  /* Larger logo as requested */
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.logo:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .btn-header-cta {
    display: none;
  }
}

/* Nav links wrapper */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Social Sidebar (right of nav) */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social a {
  width: 30px;
  height: 30px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.nav-social a:hover {
  background: var(--teal-dark);
  transform: scale(1.1);
}

.nav-social a svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* Header Flags */
.header-flags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 15px;
}

.flag-icon {
  width: 90px;
  height: 50px;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  display: flex;
}

.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flag-icon:hover {
  transform: scale(1.15);
}

.btn-header-cta {
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  border: 2px solid var(--teal);
  margin-left: 20px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: transparent;
  color: var(--teal);
  box-shadow: 0 4px 12px rgba(45, 203, 170, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1050;
  flex-direction: column;
  padding: 90px 36px 40px;
  gap: 0;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--teal);
}

.mobile-nav .mobile-social {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.mobile-nav .mobile-social a {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
  padding: 0;
}

.mobile-nav .mobile-social a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1030;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-backdrop.visible {
  opacity: 1;
}

/* Close btn */
.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.mobile-nav .close-btn:hover {
  color: var(--teal);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-img-german-shephard.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 18, 30, 0.72) 0%,
      rgba(10, 18, 30, 0.38) 60%,
      rgba(10, 18, 30, 0.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 7vw;
  max-width: 700px;
  background: rgba(10, 18, 30, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: heroEntry 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.hero-content p::first-line {
  font-weight: 700;
  color: #fff;
}

/* Hero Highlights */
.hero-highlights {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.highlight-item svg {
  width: 18px;
  height: 18px;
  fill: var(--teal);
}

.highlight-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 4px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Vertical social sidebar on hero */
.hero-social {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero-social a {
  width: 38px;
  height: 40px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hero-social a:hover {
  background: var(--teal-dark);
}

.hero-social a svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-divider {
  width: 46px;
  height: 3px;
  background: var(--teal);
  margin: 14px 0 22px;
  border-radius: 2px;
}

.section-divider.center {
  margin: 14px auto 22px;
}

/* ============================================
   WELCOME / ABOUT PREVIEW
   ============================================ */
#welcome {
  background: var(--white);
  padding: 88px 7vw 80px;
}

.welcome-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-text .section-title {
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 6px;
}

.welcome-text .centered-header {
  text-align: center;
  /* only the heading block centered */
}

/* Center the heading block */
.welcome-heading-block {
  text-align: center;
  margin-bottom: 32px;
  grid-column: 1 / -1;
}

.welcome-heading-block .section-title {
  font-size: clamp(24px, 2.6vw, 32px);
}

.welcome-heading-block .section-label {
  display: block;
  margin-bottom: 8px;
}

.welcome-body p {
  color: var(--gray-text);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  height: 380px;
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid var(--teal);
  border-radius: 8px;
  z-index: 0;
}

.welcome-image img {
  position: relative;
  z-index: 1;
}

/* ============================================
   TRAINER / ABOUT FULL
   ============================================ */
#about {
  background: var(--cream);
  padding: 80px 7vw;
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.about-text .section-title {
  font-size: clamp(22px, 2.6vw, 32px);
  margin-bottom: 4px;
}

.about-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray-text);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-text .btn-outline {
  margin-top: 8px;
}

/* ============================================
   THREE IMAGE CARDS  (services preview)
   ============================================ */
#image-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
}

.img-card {
  position: relative;
  overflow: hidden;
}

.img-card>a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-card:hover img {
  transform: scale(1.07);
}

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.15) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 28px;
  transition: background 0.3s;
}

.img-card:hover .img-card-overlay {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.30) 60%);
}

.img-card-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.img-card-divider {
  width: 34px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

/* ============================================
   REAL RESULTS SECTION
   ============================================ */
#results {
  background: var(--cream);
  padding: 80px 7vw;
}

.results-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left: teal-bordered box */
.results-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-image {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.results-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
}

.results-image::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px solid var(--teal);
  border-radius: 16px;
  z-index: -1;
}

/* Right: text */
.results-text .section-label {
  margin-bottom: 6px;
}

.results-text .section-title {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 6px;
}

.results-text p {
  color: var(--gray-text);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.results-text .btn-primary {
  margin-top: 8px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  background: var(--white);
  padding: 84px 7vw;
}

.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.services-header .section-title {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 10px;
}

.services-header p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.75;
}

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

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
  border-top-color: var(--teal);
}

.service-card-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card a {
  display: block;
  overflow: hidden;
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 24px 24px 28px;
}

.service-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--gray-text);
  font-size: 13.5px;
  line-height: 1.75;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why {
  background: var(--navy);
  padding: 80px 7vw;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header .section-label {
  color: var(--teal);
}

.why-header .section-title {
  font-size: clamp(24px, 2.8vw, 34px);
  color: #fff;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}

.why-card:hover {
  background: rgba(45, 203, 170, 0.1);
  border-color: var(--teal);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.75;
}

/* ============================================
   PHOTO GALLERY STRIP
   ============================================ */
#gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 210px;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ============================================
   FOLLOW BANNER
   ============================================ */
#follow-banner {
  position: relative;
  height: 110px;
  background: url('images/gallery-4.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#follow-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 36, 0.72);
}

.follow-content {
  position: relative;
  z-index: 1;
}

.follow-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.follow-content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta {
  background: var(--teal);
  padding: 68px 7vw;
  text-align: center;
}

#cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

#cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

#cta .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

#cta .btn-white:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  background: var(--navy);
  padding: 100px 7vw;
  color: #fff;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 18px auto 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal);
}

.faq-item summary {
  padding: 24px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 32px 28px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--white);
  padding: 84px 7vw;
}

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

.contact-info .section-title {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--gray-text);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.contact-item-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 14px;
  color: var(--gray-text);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #dce0e8;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea {
  height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--navy);
  padding: 48px 7vw 28px;
}

.footer-top {
  max-width: 1140px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--teal);
  transform: scale(1.1);
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

.footer-cities {
  display: flex;
  flex-direction: column;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  background: var(--teal);
  /* Always teal as requested */
}

/* ============================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

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

  /* Nav */
  .nav-links,
  .nav-social,
  .header-flags,
  .top-bar {
    display: none;
  }

  .header-main {
    padding: 0 5vw;
    height: 75px;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero-content {
    margin: 0 5vw;
    padding: 32px 24px;
    max-width: none;
    text-align: center;
  }

  .hero-highlights {
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
  }

  .hero-social {
    display: none;
  }

  /* Welcome */
  #welcome {
    padding: 72px 5vw 60px;
  }

  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .welcome-image::before {
    display: none;
  }

  /* About */
  #about {
    padding: 60px 5vw;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image img {
    height: 320px;
  }

  /* Image Cards */
  #image-cards {
    grid-template-columns: 1fr;
    height: auto;
  }

  .img-card {
    height: 220px;
  }

  /* Results */
  #results {
    padding: 60px 5vw;
  }

  .results-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-box {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Services */
  #services {
    padding: 64px 5vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  #why {
    padding: 60px 5vw;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Gallery */
  #gallery {
    grid-template-columns: repeat(3, 1fr);
    height: 280px;
  }

  /* FAQ */
  #faq {
    padding: 72px 5vw;
  }

  /* Contact */
  #contact {
    padding: 64px 5vw;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    margin: 14px auto 0;
  }

  .footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--teal);
    margin: 8px auto 0;
  }

  .footer-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
  }

  .footer-cities li {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  #header {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 50px;
  }

  #gallery {
    grid-template-columns: repeat(2, 1fr);
    height: 300px;
  }
}