/* ===========================
   ROOT & RESET
=========================== */
:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff3333;
  --red-tint: #fff0f0;
  --white: #ffffff;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gray: #555555;
  --light-gray: #f7f7f7;
  --border: #e8e8e8;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 30px rgba(204,0,0,0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }

.red { color: var(--red); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::after { transform: translateX(0); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(204,0,0,0.4);
}

.btn-pulse {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(204,0,0,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(204,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
}

/* ===========================
   SECTION COMMON
=========================== */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

.reveal-up { transition-delay: var(--delay, 0s); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 80px; height: 80px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.logo-img{
  mix-blend-mode: multiply;
  filter: contrast(1.2);
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.4s;
}

.logo-text span { color: var(--red); }

.navbar.scrolled .logo-text { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .nav-link { color: var(--black); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span { background: var(--black); }

.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); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-slider { width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  animation: none;
}

.slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(180,0,0,0.38) 50%,
    rgba(0,0,0,0.60) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

.slide.active .slide-content > * {
  animation: fadeSlideUp 0.8s ease both;
}

.slide.active .slide-tag { animation-delay: 0.2s; }
.slide.active .slide-title { animation-delay: 0.4s; }
.slide.active .slide-sub  { animation-delay: 0.6s; }
.slide.active .btn        { animation-delay: 0.8s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.slide-title em {
  font-style: italic;
  color: #ff6b6b;
}

.slide-sub {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

.slider-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}

/* ===========================
   ABOUT SECTION
=========================== */
.about { background: var(--white); overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  padding: 24px 24px 60px 0;
}

.img-main {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-main:hover img { transform: scale(1.04); }

.img-secondary {
  position: absolute;
  bottom: 0; right: -30px;
  width: 220px;
  z-index: 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}

.img-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.img-badge {
  position: absolute;
  top: -10px; left: 30px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  z-index: 4;
  box-shadow: var(--shadow-red);
}

.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* Red accent shape behind images */
.about-images::before {
  content: '';
  position: absolute;
  top: 24px; left: -16px;
  width: 75%; height: 75%;
  background: var(--red-tint);
  border: 3px solid rgba(204,0,0,0.15);
  border-radius: 4px;
  z-index: 1;
}

.about-content { padding-right: 16px; }

.about-content .section-title { text-align: left; }

.about-desc {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.9;
  text-align: justify;
}

.about-list {
  margin-bottom: 36px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}

.check {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-row {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  display: inline-block;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flip-card {
  height: 380px;
  perspective: 1200px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
}

.flip-card:hover .flip-inner { transform: rotateY(180deg); }

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
}

.flip-front {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}

.flip-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(180,0,0,0.88) 0%, rgba(0,0,0,0.4) 100%);
}

.flip-front-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.flip-front-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.flip-front-content p {
  font-size: 0.82rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
  font-style: italic;
}

.flip-back {
  background: var(--white);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 0 0 3px var(--red) inset;
}

.flip-back-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.flip-back h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}

.flip-back p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.flip-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: var(--transition);
}

.flip-link:hover { color: var(--red-dark); }

/* ===========================
   MARQUEE SECTION
=========================== */
.marquee-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-header {
  text-align: center;
  margin-bottom: 40px;
}

.marquee-header .section-title { font-size: 1.8rem; }

.marquee-track-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track-wrapper::before,
.marquee-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 18s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 6px;
  filter: grayscale(1);
  transition: var(--transition);
  background: var(--light-gray);
}

.marquee-item:hover {
  filter: grayscale(0);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.logo-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

/* ===========================
   TESTIMONIALS SECTION
=========================== */
.testimonials {
  background: var(--red-tint);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  font-family: var(--font-head);
  font-size: 30rem;
  font-weight: 900;
  color: rgba(204,0,0,0.05);
  top: -80px; right: -40px;
  line-height: 1;
  pointer-events: none;
}

.testi-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testi-slider {
  position: relative;
  min-height: 380px;
}

.testi-card {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 48px 52px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(60px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  border-top: 4px solid var(--red);
}

.testi-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.quote-icon {
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-author img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
}

.testi-author strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.testi-author span {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
}

.testi-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--red);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  box-shadow: var(--shadow);
}

.testi-arrow:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.testi-arrow.tprev { left: -70px; }
.testi-arrow.tnext { right: -70px; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 400px;
}

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

.contact-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: var(--red-tint);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 22px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--red);
}

.info-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(204,0,0,0.12);
}

.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

.form-group.error input,
.form-group.error textarea { border-color: #e53935; }

.form-error {
  font-size: 0.8rem;
  color: #e53935;
  display: none;
}

.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  padding: 14px 20px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  font-weight: 600;
  border-left: 4px solid #2e7d32;
  font-size: 0.95rem;
}

/* ===========================
   WORLD MAP SECTION
=========================== */
.worldmap-section {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.worldmap-section .section-tag { color: #ff6b6b; }
.worldmap-section .section-tag::before { background: #ff6b6b; }
.worldmap-section .section-title { color: var(--white); }
.worldmap-section .section-desc { color: rgba(255,255,255,0.65); }

.map-container {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(204,0,0,0.2);
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
}

.continent {
  fill: rgba(204,0,0,0.18);
  stroke: rgba(204,0,0,0.45);
  stroke-width: 1.5;
  transition: fill 0.3s;
}

.continent:hover { fill: rgba(204,0,0,0.32); }

/* Pin styles */
.pin-pulse {
  fill: none;
  stroke: rgba(204,0,0,0.4);
  stroke-width: 1.5;
  animation: pingPulse 2s ease-out infinite;
}

.pin-pulse-2 {
  fill: none;
  stroke: rgba(204,0,0,0.6);
  stroke-width: 2;
  animation: pingPulse 2s ease-out 0.5s infinite;
}

@keyframes pingPulse {
  0%   { transform-origin: center; transform: scale(0.5); opacity: 1; }
  100% { transform-origin: center; transform: scale(1.8); opacity: 0; }
}

.pin-dot {
  fill: var(--red);
  filter: drop-shadow(0 0 6px rgba(255,0,0,0.8));
}

.pin-icon {
  fill: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.pin-label {
  fill: rgba(255,255,255,0.9);
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-anchor: middle;
}

.map-line {
  stroke: rgba(204,0,0,0.3);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: dashMove 6s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -60; }
}

.pin-group { cursor: pointer; }

.map-tooltip {
  position: absolute;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 10;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 80px 0 60px;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 18px 0 24px;
}

.footer-logo .logo-text { color: var(--white); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(204,0,0,0.2);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.5);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(204,0,0,0.5);
}

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

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  position: relative;
  padding-left: 14px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 20px;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-info li span { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}
.red-heart {
  color: rgb(187, 21, 21);
  font-size: 14px; 
}

.created-by .red { font-weight: 700; font-size: 7px; color: #e8f5e9; }
.created-by .red:hover {
  color: #c42d19;
  border-bottom: 1px solid #c42d19;
  font-size: 14px;
}

/* ===========================
   BACK TO TOP
=========================== */
/* .back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  display: flex; align-items: center; justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
} */

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-bg-shape { display: none; }
  .testi-arrow.tprev { left: -10px; }
  .testi-arrow.tnext { right: -10px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 260px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 32px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; }

  .nav-link {
    display: block;
    padding: 14px 0;
    color: var(--black) !important;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .hamburger { display: flex; }

  .slide-title { font-size: 2.2rem; }
  .slide-sub { font-size: 0.95rem; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.5rem; }

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

  .testi-card { padding: 32px 24px; }
  .testi-dots { margin-top: 420px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .img-secondary { right: 0; width: 160px; }
  .stats-row { gap: 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .map-container { padding: 16px; }
}

/* World Map Style */
/* The outer section */
.map-container {
    background-color: #fcfcfc; /* Ensures pure white background */
    padding: 60px 20px;       /* Adds professional spacing top and bottom */
    text-align: center;       /* Centers the Heading (H2) */
    width: 100%;
    overflow: hidden;         /* Prevents horizontal scroll on mobile */
}

/* The wrapper specifically for the image */
.map-wrapper {
    display: flex;
    justify-content: center;  /* Centers the map horizontally */
    align-items: center;      /* Centers the map vertically if needed */
    max-width: 1200px;        /* Prevents map from becoming too huge */
    margin: 0 auto;           /* Centers the container itself */
}

.world-map {
    width: 100%; 
    height: 500px; 
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
  
}

/* Floating WhatsApp */
  /* Container for the buttons */
.floating-contact {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  z-index: 9999; 
}

/* Base style for buttons */
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Individual Colors */
.whatsapp {
  background-color: #25D366;
}

/* Hover Effect */
.floating-btn:hover {
  transform: scale(1.1);
}

/* Mobile responsive (optional: make them smaller on phones) */
@media (max-width: 480px) {
  .floating-contact {
    bottom: 30px; 
    right: 15px;  
  }
  
  .floating-btn {
    width: 50px; 
    height: 50px;
    font-size: 22px;
  }
}