:root {
  --primary: #006d77;
  --primary-soft: #e0f4f5;
  --accent: #ffb703;
  --dark: #1b1b1f;
  --muted: #6b7280;
  --bg: #f5f7fb;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0fbfc 0, #f5f7fb 40%, #ffffff 100%);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 100px;
    max-height: 50px;
  }
}

.brand-logo {
  width: 120px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0, #83c5be 40%, #006d77 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.22);
}

.brand-text-title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.brand-text-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.2s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #008891, #006d77);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(14, 116, 144, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #ffffff;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 32px 0 40px;
  background: linear-gradient(135deg, rgba(224, 251, 252, 0.65) 0%, rgba(240, 249, 255, 0.7) 100%), 
              url('/hero-section-bg-image.webp') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

@media (min-width: 900px) {
  .hero {
    padding: 48px 0 60px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border: none;
  font-size: 0.78rem;
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  animation: fadeInLeft 0.6s ease-out;
}

.hero-eyebrow i {
  color: #ffffff;
  animation: float 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  animation: fadeInLeft 0.8s ease-out;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary), #008891, var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 20px;
  animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInLeft 0.8s ease-out 0.4s backwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  font-size: 0.78rem;
  color: var(--dark);
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  border-color: var(--primary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  animation: fadeInLeft 0.8s ease-out 0.6s backwards;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta i {
  color: #22c55e;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #f0f9ff 40%, #e0fbfc 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  animation: fadeInRight 0.8s ease-out 0.4s backwards;
  border: 2px solid rgba(0, 109, 119, 0.1);
}

.hero-card-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.72rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 10px 11px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
}

.hero-stat-label {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-stat-value {
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-photo-stack {
  position: relative;
  margin-top: 6px;
  height: 150px;
}

.hero-photo-main,
.hero-photo-secondary {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-photo-main {
  width: 65%;
  height: 140px;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 109, 119, 0.1), rgba(0, 109, 119, 0.05)), 
              url("/Makkah-laundry-service-point-PressFold.png") center/cover no-repeat;
  background-size: cover;
  transition: transform 0.5s ease, background-size 0.5s ease;
}

.hero-photo-main:hover {
  transform: scale(1.05);
  background-size: 110%;
}

.hero-photo-secondary {
  width: 48%;
  height: 110px;
  right: 0;
  top: 0;
  background: url(/Makkah-laundry-service-point.webp) center/cover no-repeat;
  background-size: cover;
  transition: transform 0.5s ease, background-size 0.5s ease;
}

.hero-photo-secondary:hover {
  transform: scale(1.05);
  background-size: 110%;
}

/* Sections */
.section {
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .section {
    padding: 42px 0;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary), #008891);
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 109, 119, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 30%, #fef3c7 60%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 2px solid rgba(245, 158, 11, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out backwards;
}

.why-card:nth-child(1) {
  animation-delay: 0.1s;
}

.why-card:nth-child(2) {
  animation-delay: 0.2s;
}

.why-card:nth-child(3) {
  animation-delay: 0.3s;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.why-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card-icon-primary {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.why-card-icon-success {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.why-card-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.why-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.why-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.why-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.why-card-item:last-child {
  border-bottom: none;
}

.why-card-item i {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card-item span {
  flex: 1;
}

.why-card-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Services Section Specific Styling */
#services {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  padding: 48px 0 60px;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 109, 119, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

@media (min-width: 900px) {
  #services {
    padding: 70px 0 80px;
  }
}

/* How it Works Section */
#how-it-works {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 30%, #fef3c7 60%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

/* Coverage Section */
#coverage {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#coverage::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out backwards;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15), 0 32px 64px rgba(0, 109, 119, 0.12);
  border-color: rgba(0, 109, 119, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-soft), rgba(0, 109, 119, 0.15));
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.card-title {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}

.card-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.12));
  color: #15803d;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out backwards;
}

.step-card:nth-child(1) {
  animation-delay: 0.1s;
  border-color: rgba(59, 130, 246, 0.2);
}

.step-card:nth-child(2) {
  animation-delay: 0.2s;
  border-color: rgba(16, 185, 129, 0.2);
}

.step-card:nth-child(3) {
  animation-delay: 0.3s;
  border-color: rgba(245, 158, 11, 0.2);
}

.step-card:nth-child(4) {
  animation-delay: 0.4s;
  border-color: rgba(139, 92, 246, 0.2);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:nth-child(1)::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.step-card:nth-child(2)::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.step-card:nth-child(3)::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.step-card:nth-child(4)::before {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.step-card:nth-child(1) .step-number {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.step-card:nth-child(2) .step-number {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.step-card:nth-child(3) .step-number {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.step-card:nth-child(4) .step-number {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(360deg);
}

.step-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

/* Tags */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: var(--primary);
  font-weight: 600;
  border: 2px solid rgba(0, 109, 119, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.tag:nth-child(1) { animation-delay: 0.1s; }
.tag:nth-child(2) { animation-delay: 0.15s; }
.tag:nth-child(3) { animation-delay: 0.2s; }
.tag:nth-child(4) { animation-delay: 0.25s; }
.tag:nth-child(5) { animation-delay: 0.3s; }
.tag:nth-child(6) { animation-delay: 0.35s; }

.tag:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--primary), #008891);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 109, 119, 0.25);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  animation: fadeInLeft 0.8s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  font-size: 0.95rem;
  margin-bottom: 32px;
  align-items: stretch;
  grid-auto-rows: 1fr;
  width: 100%;
}

@media (min-width: 900px) {
  .contact-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .contact-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 160px;
  height: 100%;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-item:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #10b981;
  text-decoration: underline;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-item-content {
  width: 100%;
}

.contact-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.4;
  word-break: break-word;
  max-width: 100%;
}

.contact-description {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* WhatsApp Form */
.whatsapp-form-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  animation: fadeInLeft 0.8s ease-out;
  height: 100%;
}

.whatsapp-form-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.whatsapp-form-container p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a, #059669);
}

.form-submit i {
  font-size: 1.1rem;
}

.map-container {
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
  border: 2px solid rgba(16, 185, 129, 0.2);
  animation: fadeInRight 0.8s ease-out;
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

@media (max-width: 879px) {
  iframe {
    min-height: 400px;
  }
  
  .map-container {
    min-height: 400px;
  }
}

/* Footer */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 32px 0 24px;
  margin-top: 48px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #10b981;
  text-decoration: underline;
}

.footer-separator {
  color: rgba(148, 163, 184, 0.5);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-right {
    align-items: flex-end;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #008891);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 109, 119, 0.2);
  font-size: 1rem;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 109, 119, 0.35);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 480px) {
  .floating-whatsapp {
    right: 12px;
    gap: 10px;
  }
}

.fab-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.4rem;
}

.fab-button.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-button.call {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fab-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.fab-button span {
  display: none;
}

/* Desktop: Show text with icons */
@media (min-width: 768px) {
  .fab-button {
    width: auto;
    padding: 12px 20px;
    border-radius: 50px;
    gap: 10px;
    font-size: 1rem;
  }

  .fab-button span {
    display: inline;
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .fab-button i {
    font-size: 1.2rem;
  }
}

/* Mobile Menu */
.hamburger {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.8);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
}

.nav-links-mobile {
  display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 720px) {
  .nav-links {
    display: none !important;
  }

  /* Hide desktop WhatsApp button on mobile */
  .nav > .btn-primary {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-links-mobile {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 20px;
    font-size: 0.95rem;
  }

  .nav-links-mobile a {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
  }

  .nav-links-mobile a:not(.btn) {
    background: rgba(0, 109, 119, 0.05);
  }

  .nav-links-mobile a:not(.btn):hover {
    background: rgba(0, 109, 119, 0.1);
  }

  .nav-open .nav-links-mobile {
    display: flex;
  }

  /* Mobile WhatsApp Button Styling */
  .mobile-whatsapp-btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Ensure mobile menu never shows on desktop */
@media (min-width: 721px) {
  .hamburger {
    display: none !important;
  }
  
  .nav-links-mobile {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
  }

  /* Hide mobile WhatsApp button on desktop */
  .mobile-whatsapp-btn {
    display: none !important;
  }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  border-color: var(--primary);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-badge.premium {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pricing-card.featured .pricing-badge {
  background: white;
  color: var(--primary);
}

.pricing-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}

.pricing-card.featured .pricing-title {
  color: white;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
}

.pricing-card.featured .pricing-price .currency {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
  color: white;
}

.pricing-price .unit {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.pricing-card.featured .pricing-price .unit {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-description {
  color: #666;
  margin-bottom: 25px;
  font-size: 1rem;
}

.pricing-card.featured .pricing-description {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .pricing-features li {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--primary);
  font-size: 1rem;
}

.pricing-card.featured .pricing-features i {
  color: white;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  justify-content: center;
  width: 100%;
}

.pricing-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pricing-card.featured .pricing-btn {
  background: white;
  color: var(--primary);
}

.pricing-note {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  border-left: 4px solid var(--primary);
  padding: 25px 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}

.pricing-note p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  color: rgba(102, 126, 234, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: #FFD700;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.author-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}

.author-location {
  color: #999;
  font-size: 0.9rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
  transform: translateY(-4px);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.faq-question i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  padding-left: 45px;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  border-radius: 20px;
}

.faq-cta p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
}

/* Show More FAQ Button (Hidden by default, visible on mobile) */
.show-more-faq {
  display: none;
  text-align: center;
  margin-top: 30px;
}

/* Large Beautiful WhatsApp Button */
.btn-whatsapp-special {
  padding: 22px 50px !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  border-radius: 50px !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-whatsapp-special:hover::before {
  left: 100%;
}

.btn-whatsapp-special:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-special i {
  font-size: 1.6rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ========================================
   IMPROVED BOOKING FORM
   ======================================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.required {
  color: #f5576c;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  /* Hero section - remove fixed background on mobile for better performance */
  .hero {
    background-attachment: scroll;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .faq-answer p {
    padding-left: 0;
  }
  
  /* Hide extra testimonials on mobile (show only first 3) */
  .testimonial-card:nth-child(n+4) {
    display: none;
  }
  
  /* Make FAQ more compact on mobile */
  .faq-item {
    padding: 20px;
  }
  
  .faq-grid {
    gap: 15px;
  }
  
  /* Reduce FAQ text size on mobile */
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* Make FAQ CTA more compact on mobile */
  .faq-cta {
    margin-top: 40px;
    padding: 30px 20px;
  }
  
  .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  /* Reduce WhatsApp button size on mobile */
  .btn-whatsapp-special {
    padding: 14px 28px !important;
    font-size: 1rem !important;
    gap: 8px;
  }
  
  .btn-whatsapp-special i {
    font-size: 1.2rem !important;
  }
  
  /* Testimonials more compact */
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Show More Reviews button - visible only on mobile */
  .show-more-reviews {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
  
  /* Hide extra FAQ items on mobile (show only first 3) */
  .faq-item.hidden-mobile-faq {
    display: none;
  }
  
  /* Show hidden FAQ when visible */
  .faq-item.hidden-mobile-faq.visible {
    display: block;
  }
  
  /* Show More FAQ button - visible only on mobile */
  .show-more-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
}

/* Show More Reviews Button Styling */
.btn-show-more {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-show-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-show-more i {
  transition: transform 0.3s ease;
}

.btn-show-more.active i {
  transform: rotate(180deg);
}

/* Desktop: Hide the show more buttons */
@media (min-width: 769px) {
  .show-more-reviews {
    display: none !important;
  }
  
  .show-more-faq {
    display: none !important;
  }
  
  /* Show all FAQ items on desktop */
  .faq-item.hidden-mobile-faq {
    display: block !important;
  }
}

/* ========================================
   LANGUAGE SELECTOR
   ======================================== */
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.language-selector i {
  font-size: 1rem;
}

.lang-text {
  white-space: nowrap;
}

.mobile-languages {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin: 15px 0;
}

@media (max-width: 1024px) {
  .language-selector {
    display: none;
  }
}

@media (max-width: 720px) {
  .lang-text {
    display: none;
  }
}

