/* Theo Hospitality — Premium Medical & Travel Tourism */

:root {
  --navy: #0c2d4a;
  --navy-deep: #061a2e;
  --green: #1a8f5c;
  --green-bright: #22b36d;
  --teal: #0d9aaa;
  --cyan: #3ecfd4;
  --soft-blue: #e8f4fc;
  --sky: #b8e4f5;
  --white: #ffffff;
  --cream: #f8fbfd;
  --text: #1a2f42;
  --text-muted: #5a7289;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow: 0 20px 60px rgba(12, 45, 74, 0.12);
  --shadow-lg: 0 30px 80px rgba(12, 45, 74, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 88px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Layout */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 26, 46, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity 0.3s ease, text-shadow 0.35s ease;
}

.nav-brand:hover {
  opacity: 0.92;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

.nav-brand-logo {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
  max-height: calc(var(--nav-h) - 12px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 0.35rem 0;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, text-shadow 0.35s ease, transform 0.35s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.9));
  box-shadow: 0 0 12px rgba(62, 207, 212, 0.6);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-carousel-track {
  height: 100%;
  display: flex;
  will-change: transform;
  transform: translate3d(-100%, 0, 0);
  transition: transform 1s var(--ease);
}

.hero-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  display: block;
  background: var(--navy-deep);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  }
  

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--sky);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-bright);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  font-size: clamp(1.65rem, 5vw, 3.75rem);
  white-space: nowrap;
  overflow: visible;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero-title .hero-char {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px);
  animation: heroCharReveal 0.65s var(--ease) forwards;
}

.hero-title.hero-title-ready {
  animation: heroTitleGlow 4s ease-in-out 1.2s infinite alternate;
}

@keyframes heroCharReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroTitleGlow {
  from { text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35); }
  to {
    text-shadow:
      0 4px 40px rgba(0, 0, 0, 0.35),
      0 0 48px rgba(62, 207, 212, 0.2);
  }
}

.hero-sub.hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  animation: heroDescReveal 1.1s var(--ease) 0.85s forwards,
    heroDescFloat 6s ease-in-out 2.2s infinite;
}

@keyframes heroDescReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroDescFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.9s var(--ease) 0.65s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--teal));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(34, 179, 109, 0.45), 0 0 0 0 rgba(62, 207, 212, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(34, 179, 109, 0.5), 0 0 24px rgba(62, 207, 212, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: var(--white);
}

.btn-dark {
  background: linear-gradient(135deg, var(--navy), #134a6e);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.82rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
}

.btn-email {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
}

/* Scroll indicator */
.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  margin: 1.2rem auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease) 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 2s ease infinite;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(6, 26, 46, 0.35);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-nav-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(6, 26, 46, 0.55);
}

.hero-nav-btn--prev {
  left: clamp(0.75rem, 2.5vw, 2rem);
}

.hero-nav-btn--next {
  right: clamp(0.75rem, 2.5vw, 2rem);
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Services cards (homepage) */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--soft-blue) 50%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 26, 46, 0.92) 0%,
    rgba(12, 45, 74, 0.4) 50%,
    rgba(12, 45, 74, 0.15) 100%
  );
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
  font-size: 1.4rem;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
  gap: 0.65rem;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 252, 0.9));
  border-radius: var(--radius);
  border: 1px solid rgba(13, 154, 170, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.about-visual-accent strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}

.about-visual-accent span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--soft-blue);
  border-radius: var(--radius);
  border: 1px solid rgba(13, 154, 170, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--green-bright));
  color: var(--white);
  border-radius: 12px;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Trust strip */
.trust-strip {
  padding: 3rem 0;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Page header (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0a4d5c 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(62, 207, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-top: 1rem;
  position: relative;
}

/* Package grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid rgba(13, 154, 170, 0.08);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.package-card:hover .package-card-image img {
  transform: scale(1.06);
}

.package-card-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

.package-card-body {
  padding: 1.75rem;
}

.package-card-body h3 {
  margin-bottom: 0.5rem;
}

.package-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.package-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Enquiry form */
.enquiry-section {
  padding: 3rem 0 5rem;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.enquiry-info {
  padding: 2.5rem;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.enquiry-info h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.enquiry-info p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
}

.enquiry-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.enquiry-info-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
}

.enquiry-form-wrap {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 154, 170, 0.1);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid #d4e8f2;
  border-radius: 12px;
  background: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 154, 170, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(34, 179, 109, 0.12);
  border: 1px solid var(--green-bright);
  border-radius: 12px;
  color: var(--green);
  font-weight: 500;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating actions */
.fab-group {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  animation: fabFloat 4s ease-in-out infinite;
}

.fab:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.fab:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.fab-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.fab-email { background: linear-gradient(135deg, var(--navy), var(--teal)); }

.fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Navbar — white text on hero & inner pages */
.navbar--hero .nav-brand,
.navbar--hero .nav-links a {
  color: var(--white);
}

.navbar--hero .nav-toggle span {
  background: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {

  .services-grid {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-inline: auto;
  }
  
  .service-card {
  min-height: 360px;
  }
  
  .about-grid {
  grid-template-columns: 1fr;
  gap: 2.5rem;
  }
  
  .about-visual {
  max-height: 400px;
  aspect-ratio: 16/10;
  }
  
  .enquiry-grid {
  grid-template-columns: 1fr;
  }
  
  .footer-grid {
  grid-template-columns: 1fr 1fr;
  }
  
  .trust-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  
  }
  
@media (max-width: 900px) {
  :root {
    --nav-h: 76px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-brand-logo {
    width: clamp(128px, 34vw, 180px);
  }

  .nav-mobile {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--nav-h));
    min-height: calc(100vh - var(--nav-h));
    background: rgba(6, 26, 46, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    padding: 2rem;
    gap: 0.25rem;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px);
    transition: transform 0.4s var(--ease);
  }

  .nav-mobile.open {
    display: flex;
    transform: translateY(0);
  }
    

  .nav-mobile a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.3s ease, padding-left 0.3s ease;
  }

  .nav-mobile a:hover {
    color: var(--cyan);
    padding-left: 0.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    white-space: normal;
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    line-height: 1.22;
  }

  .hero-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fab-group {
    bottom: 1rem;
    right: 1rem;
  }

  .fab {
    width: 50px;
    height: 50px;
  }
}
  
