/* ===================== Variables ===================== */
:root {
  --primary: #00b4a6;
  --primary-dark: #009689;
  --secondary: #2b3a55;
  --accent: #ff7a5c;
  --light-bg: #f4fbfa;
  --white: #ffffff;
  --text-dark: #1e2a3a;
  --text-light: #6b7c93;
  --border: #e4edf0;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 60, 55, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 60, 55, 0.15);
  --transition: all 0.35s ease;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.25;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 180, 166, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 180, 166, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===================== Page Banner (inner pages) ===================== */
.page-banner {
  position: relative;
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary), #1b2740);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 180, 166, 0.25),
      transparent 55%
    ),
    radial-gradient(circle at 80% 80%, rgba(255, 122, 92, 0.2), transparent 55%);
}
.page-banner-inner {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #cfe3f0;
  font-weight: 500;
  font-size: 0.95rem;
}
.page-banner .breadcrumb a {
  color: #b9d6e0;
}
.page-banner .breadcrumb a:hover {
  color: var(--primary);
}
.page-banner .breadcrumb span {
  color: var(--primary);
}

/* ===================== Top Bar ===================== */
.topbar {
  background: var(--secondary);
  color: #cfe8e5;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-item i {
  color: var(--primary);
}
.topbar-item a {
  color: #cfe8e5;
}
.topbar-item a:hover {
  color: var(--white);
}
.topbar-address {
  margin-left: auto;
}

/* ===================== Header ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary);
  font-family: var(--font-heading);
}
.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
}
.logo-img {
  height: 60px;
  width: auto;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--primary-dark);
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}
.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 12px;
  margin: -12px;
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 998;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 90px 0 60px;
  background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(10px);
}
.shape1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #a8ede6, transparent 70%);
  top: -80px;
  right: -60px;
}
.shape2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #ffd6c9, transparent 70%);
  bottom: -60px;
  left: -40px;
}
.shape3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #b8f0ea, transparent 70%);
  top: 40%;
  left: 45%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: #e3f9f6;
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}
.hero-text h1 .highlight {
  color: var(--primary);
  position: relative;
}
.hero-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 2.2rem;
  color: var(--primary-dark);
}
.stat p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3.5s ease-in-out infinite;
}
.floating-card i {
  font-size: 1.4rem;
  color: var(--primary);
}
.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
}
.floating-card span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.card1 {
  top: 10%;
  left: -40px;
  animation-delay: 0s;
}
.card2 {
  bottom: 12%;
  right: -30px;
  animation-delay: 1.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ===================== Section Head ===================== */
.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}
.section-tag {
  display: inline-block;
  color: var(--primary-dark);
  background: #e3f9f6;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--text-light);
}

/* ===================== About ===================== */
.about {
  padding: 90px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}
.about-text .section-tag {
  margin-bottom: 12px;
}
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 22px;
}
.about-list {
  margin-bottom: 30px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 500;
}
.about-list i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===================== Services ===================== */
.services {
  padding: 90px 0;
  background: var(--light-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 26px 28px 32px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid transparent;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.btn-sm-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 180, 166, 0.28);
}
.btn-sm-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 180, 166, 0.4);
}
.btn-sm-enquire {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}
.btn-sm-enquire:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ===================== Gallery ===================== */
.gallery {
  padding: 90px 0;
  background: var(--light-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 4/3.2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item.gallery-video-item {
  cursor: default;
}
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* ===================== Team ===================== */
.team-section {
  padding: 90px 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 2.2rem;
}
.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.team-role {
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.ba-section {
  background: var(--white);
}
.ba-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.ba-item {
  aspect-ratio: 3/4;
}
.ba-item img {
  object-fit: cover;
  object-position: top;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 20, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 88vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* ===================== Why Us ===================== */
.why {
  padding: 90px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.why-card i {
  font-size: 2.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ===================== Testimonials ===================== */
.testimonials {
  padding: 90px 0;
  background: var(--light-bg);
}
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  text-align: center;
}
.testimonial-quote {
  font-size: 1.6rem;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 14px;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  color: #ffb400;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testimonial-stars i {
  margin-right: 3px;
}
.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonial-author span {
  color: var(--text-light);
  font-size: 0.85rem;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 2;
}
.testimonial-arrow:hover {
  background: var(--primary);
  color: var(--white);
}
.testimonial-prev {
  left: -22px;
}
.testimonial-next {
  right: -22px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9dee5;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.testimonial-dot.active {
  background: var(--primary);
  width: 26px;
  border-radius: 6px;
}
@media (max-width: 640px) {
  .testimonial-arrow {
    display: none;
  }
  .testimonial-card {
    padding: 32px 22px;
  }
}

/* ===================== CTA Banner ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
  text-align: center;
}
.cta-inner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-inner p {
  color: #e3f9f6;
  margin-bottom: 26px;
}

/* ===================== Contact ===================== */
.contact {
  padding: 90px 0;
  background: var(--light-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-item i {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}
.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-item a:hover {
  color: var(--primary-dark);
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.show {
  display: block;
}
.form-status-success {
  background: #e6f7ed;
  color: #1a7f3c;
  border: 1px solid #b6e6c9;
}
.form-status-error {
  background: #fdecea;
  color: #b3261e;
  border: 1px solid #f5c2be;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e0e4ea;
  border-radius: 10px;
  background: var(--light-bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: var(--transition);
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  margin-top: 50px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================== Footer ===================== */
.footer {
  background: var(--secondary);
  color: #b9c6da;
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.92rem;
  color: #9fb0c7;
}
.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.footer-links a,
.footer-links p {
  display: block;
  margin-bottom: 12px;
  color: #9fb0c7;
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-links p i {
  color: var(--primary);
  margin-right: 8px;
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: #8797ae;
}

/* ===================== Floating buttons ===================== */
.call-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 180, 166, 0.4);
  z-index: 998;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 166, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 180, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 166, 0);
  }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===================== Reveal Animation ===================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .hero-inner,
  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-img {
    order: -1;
  }
  .hero-img {
    order: -1;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-address {
    display: none;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }
  .nav.active {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hero-text h1 {
    font-size: 2.1rem;
  }
  .hero-stats {
    gap: 24px;
  }
  .floating-card {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .section-head h2 {
    font-size: 1.8rem;
  }
  .contact-form {
    padding: 26px;
  }
}
