@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --glass-border: rgba(2, 132, 199, 0.1);
  --primary: #0284c7; /* Vibrant Sky Blue */
  --primary-hover: #0369a1;
  --secondary: #0f766e; /* Deep Teal */
  --accent: #f59e0b; /* Amber */
  --gradient: linear-gradient(135deg, #0284c7, #0ea5e9);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-cool: linear-gradient(135deg, #0f766e, #14b8a6);
  --text: #0f172a;
  --text-muted: #475569;
  --text-dark: #94a3b8;
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 24px;
  --shadow: 0 10px 40px rgba(2, 132, 199, 0.08);
  --shadow-lg: 0 24px 60px rgba(2, 132, 199, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-fluid {
  width: 100%;
  padding: 0 3%;
  max-width: 1920px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 96, 100, 0.25);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 96, 100, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid #cbd5e1;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px);
}
.btn-sm {
  padding: 12px 28px;
  font-size: 0.85rem;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}
.badge-pill {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  border: 1px solid rgba(2, 132, 199, 0.15);
  margin-bottom: 24px;
}

/* ── Top Ticker ── */
.top-ticker {
  background: #070b14;
  color: var(--secondary);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  display: flex;
  white-space: nowrap;
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-text {
  padding-right: 20px;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Navbar ── */
.navbar {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(11, 17, 33, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar.scrolled {
  position: fixed;
  top: 0;
  background: rgba(11, 17, 33, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.nav-logo h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-weight: 500;
  color: #e2e8f0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-item-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  margin-top: 5px;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block !important;
  padding: 10px 20px !important;
  color: var(--text) !important;
  font-size: 0.85rem !important;
  text-transform: none !important;
}
.dropdown-menu a::after {
  display: none !important;
}
.dropdown-menu a:hover, .dropdown-menu a.active {
  background: rgba(2, 132, 199, 0.05);
  color: var(--primary) !important;
}
.nav-cta .btn {
  padding: 12px 28px;
  font-size: 0.9rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #0ea5e9, #2dd4bf);
  color: #0b1121;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.25);
  white-space: nowrap;
}
.nav-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 2px;
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}
.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slider .slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 6s ease-in-out;
}
.hero-slider .slide.active .slide-bg {
  transform: scale(1);
}
.hero-slider .slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.hero-slider .slide-content {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  padding-bottom: 20px;
}
.hero-slider .slide-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-slider .slide-content h1 {
    font-size: 2.8rem;
  }
}
.hero-slider .slide-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
.hero-slider .slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero-slider .slider-btn.prev-btn { left: 24px; }
.hero-slider .slider-btn.next-btn { right: 24px; }

/* ── Services ── */
.services-section {
  padding: 100px 0;
  background: var(--bg-surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: 0.4s;
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── About ── */
.about-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--bg-body),
    #e0e7ff 50%,
    var(--bg-body)
  );
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about-img-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}
.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-text > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.08);
}
.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}
.about-feature span {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-surface);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
}
.testimonial-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.testimonial-card blockquote {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.testimonial-author h4 {
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-author p {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* ── Appointment ── */
.appointment-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--bg-body),
    #fdf2f8 50%,
    var(--bg-body)
  );
}
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.appointment-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.appointment-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.info-item {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}
.info-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.appointment-form {
  padding: 40px;
  border-radius: var(--radius);
  background: #fff;
}

/* ── Forms ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: #fff;
}
.form-control::placeholder {
  color: #94a3b8;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.form-message {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* ── Contact ── */
.contact-section {
  padding: 100px 0;
  background: var(--bg-surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form-wrap {
  padding: 40px;
  border-radius: var(--radius);
  background: #fff;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ── Page Banners ── */
.page-banner {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #e0e7ff, #fdf2f8 50%, #ecfdf5);
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 70%);
  pointer-events: none;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
  pointer-events: none;
}
.banner-content {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-banner > div > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.breadcrumbs {
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.breadcrumbs a {
  color: var(--primary);
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs i {
  font-size: 0.6rem;
}

/* ── CTA Section ── */
.cta-section {
  padding: 80px 0;
}
.cta-card {
  background: var(--gradient);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* ── Floating WhatsApp ── */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #128c7e;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}
.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 500px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cta-actions .btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.cta-actions .btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ── Service Detail ── */
.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-detail-card {
  display: flex;
  align-items: start;
  gap: 32px;
  padding: 36px;
  border-radius: var(--radius);
  transition: 0.3s;
  background: #fff;
}
.service-detail-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}
.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}
.service-detail-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-short {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.service-full {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ── Process Steps ── */
.process-steps {
  margin: 32px 0;
}
.process-step {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(
    180deg,
    rgba(79, 70, 229, 0.2),
    rgba(6, 182, 212, 0.1)
  );
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text);
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Contact Info Grid ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-info-card {
  padding: 28px;
  text-align: center;
  border-radius: var(--radius);
  transition: 0.3s;
  background: #fff;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.contact-info-card .info-icon {
  margin: 0 auto 16px;
}
.contact-info-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text);
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Footer ── */
.footer {
  padding: 80px 0 0;
  background: #1e293b;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  color: #fff;
}
.footer-brand p {
  color: #94a3b8;
  margin-top: 14px;
  line-height: 1.7;
  font-size: 0.9rem;
}
.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.footer-links a {
  display: block;
  color: #94a3b8;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--secondary);
}
.footer-contact p {
  color: #94a3b8;
  margin-bottom: 14px;
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-contact i {
  color: var(--secondary);
  margin-top: 4px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-master {
    padding: 120px 0 60px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-avatars {
    justify-content: center;
  }
  .main-image {
    height: 450px;
  }
  .float-top-right {
    top: 20px;
    right: 20px;
  }
  .float-bottom-left {
    bottom: 20px;
    left: 20px;
  }
  .services-grid,
  .testimonials-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .hero-image {
    order: -1;
  }
  .hero-float-card {
    display: none;
  }
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .cta-actions {
    justify-content: center;
  }
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-card {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nav-logo h2 {
    font-size: 0.75rem !important;
  }
  .top-ticker {
    display: none;
  }
  .navbar {
    top: 0 !important;
    position: fixed;
    padding: 12px 0 !important;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(14, 165, 233, 0.96);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.96), rgba(45, 212, 191, 0.96));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 30px 40px;
    gap: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    overflow-y: auto;
    display: flex;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #f8fafc !important;
    text-transform: capitalize !important;
    letter-spacing: 0px !important;
    background: transparent !important;
    padding: 24px 0 !important;
    transition: 0.3s !important;
  }
  .nav-links a.active, .nav-links a:hover {
    color: #ffffff !important;
  }
  .nav-links > li > a::after {
    display: none !important;
  }
  
  /* Mobile Dropdown Styling */
  .nav-item-dropdown {
    display: block;
  }
  .nav-item-dropdown:hover .dropdown-menu {
    transform: none;
  }
  .dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 100%;
    padding: 0 0 20px 20px;
    margin-top: 0;
    margin-left: 10px;
    border-left: 2px solid rgba(14, 165, 233, 0.5);
    opacity: 1;
    visibility: visible;
    display: block;
    border-radius: 0;
  }
  .dropdown-menu a {
    padding: 12px 0 !important;
    font-size: 1.1rem !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    background: transparent !important;
  }
  .dropdown-menu a:hover, .dropdown-menu a.active {
    color: #2dd4bf !important;
    background: transparent !important;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-cta {
    display: none;
  }
  .services-grid,
  .testimonials-grid,
  .about-grid,
  .appointment-grid,
  .contact-grid,
  .footer-grid,
  .about-features {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .hero-actions {
    gap: 20px;
  }
  .glass-float-card {
    padding: 10px 14px;
    border-radius: 12px;
  }
  .glass-float-card .icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .glass-float-card h4 {
    font-size: 0.9rem;
  }
  .glass-float-card p {
    font-size: 0.75rem;
  }
  .main-image {
    height: 340px;
  }
  .float-top-right {
    top: -10px;
    right: 0px;
  }
  .float-bottom-left {
    bottom: -10px;
    left: 0px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-contact p {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-contact p i {
    margin-right: 10px !important;
  }
  .page-banner {
    padding: 130px 0 60px;
  }
  .page-banner h1 {
    font-size: 2rem;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 30px 24px;
  }
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .appointment-form {
    padding: 24px;
  }
  .contact-form-wrap {
    padding: 24px;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .appointment-info h2 {
    font-size: 1.8rem;
  }
  .service-detail-card {
    padding: 24px;
  }
  .service-detail-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-master {
    padding: 110px 0 60px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════════
   GLOBAL HEADER & FOOTER OVERRIDES
   ══════════════════════════════════════════ */


/* Premium Footer */
.footer {
  background: #05080f !important;
  border-top: 1px solid rgba(14, 165, 233, 0.15) !important;
  padding: 80px 0 30px !important;
  font-family: 'Outfit', sans-serif !important;
  color: #94a3b8 !important;
}
.footer-brand h3 {
  font-size: 2.2rem !important;
  background: linear-gradient(135deg, #0ea5e9, #2dd4bf) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 900 !important;
  margin-bottom: 5px !important;
}
.footer-brand p { color: #f8fafc !important; font-size: 1rem !important; }
.footer h4 { color: #fff !important; font-size: 1.2rem !important; font-weight: 700 !important; margin-bottom: 24px !important; }
.footer-links a { 
  display: block !important; 
  color: #94a3b8 !important; 
  margin-bottom: 12px !important; 
  transition: 0.3s !important; 
}
.footer-links a:hover { 
  color: #0ea5e9 !important; 
  transform: translateX(5px) !important; 
}
.footer-socials a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important; height: 40px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 50% !important;
  color: #2dd4bf !important;
  margin-right: 10px !important;
  transition: 0.3s !important;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, #0ea5e9, #2dd4bf) !important;
  color: #0b1121 !important;
  border-color: transparent !important;
  transform: translateY(-3px) !important;
}
.footer-contact p { color: #94a3b8 !important; margin-bottom: 12px !important; }
.footer-contact i { color: #2dd4bf !important; margin-right: 8px !important; }
.footer-seo { border-top-color: rgba(14, 165, 233, 0.1) !important; }
.footer-bottom { border-top: none !important; text-align: center !important; color: #94a3b8 !important; }

