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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050816;
  color: #f5f5f5;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: radial-gradient(circle at top left, #1b1c3a 0, #050816 55%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: #c9c9d8;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(5, 8, 22, 0.92), rgba(10, 26, 58, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  color: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.75rem;
  color: #b3b3c5;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
  color: #e2e2f2;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  transition: width 0.25s ease;
}

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

.lang-switcher {
  display: flex;
  gap: 0.25rem;
}

.lang-switcher button {
  border: none;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.lang-switcher button.active,
.lang-switcher button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 138, 0, 0.35), transparent 55%),
              radial-gradient(circle at bottom right, rgba(103, 58, 183, 0.4), transparent 55%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: center;
  gap: 3rem;
  padding: 4rem 0 4.5rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.hero-text p {
  color: #e3e3ff;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 12px 24px rgba(12, 170, 120, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(12, 170, 120, 0.65);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(5, 8, 22, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #d1d1eb;
}

.hero-info i {
  margin-right: 0.35rem;
}

/* Stats */
.hero-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1rem 1.3rem;
  border-radius: 1rem;
  background: rgba(12, 14, 38, 0.92);
  box-shadow: 0 18px 35px rgba(2, 6, 23, 0.75);
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: #ececff;
}

.gradient-1 { background-image: linear-gradient(135deg, #ff8a00, #e52e71); color: #fff; }
.gradient-2 { background-image: linear-gradient(135deg, #00c6ff, #0072ff); color: #fff; }
.gradient-3 { background-image: linear-gradient(135deg, #7f5dff, #21d4fd); color: #fff; }
.gradient-4 { background-image: linear-gradient(135deg, #f83600, #f9d423); color: #fff; }
.gradient-5 { background-image: linear-gradient(135deg, #00b09b, #96c93d); color: #fff; }
.gradient-6 { background-image: linear-gradient(135deg, #fc5c7d, #6a82fb); color: #fff; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.service-card {
  padding: 1.3rem 1.2rem 1.4rem;
  border-radius: 1.3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 0.6rem;
}

/* Gallery */
.section-dark .section-header p {
  color: #dadaf5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.45));
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Two column */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.text-block p + p {
  margin-top: 0.75rem;
}

.check-list {
  list-style: none;
  margin-top: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.check-list.small li {
  font-size: 0.85rem;
}

.check-list i {
  margin-top: 0.1rem;
  color: #4ade80;
}

.about-highlight {
  padding: 1.6rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
}

.about-highlight p + p {
  margin-top: 0.6rem;
}

/* Language section */
.languages-inner {
  text-align: center;
}

.lang-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.lang-flag {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.lang-flag span {
  font-size: 0.8rem;
}

.lang-flag:hover {
  background: rgba(55, 65, 81, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 1.4rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
}

.review-stars {
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.review-card p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.review-name {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Form */
.form-card {
  background: rgba(15, 23, 42, 0.95);
  padding: 1.5rem 1.4rem 1.8rem;
  border-radius: 1.4rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.65);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
}

.form-group label {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 0.55rem 0.7rem;
  color: #f9fafb;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 1);
}

/* Map */
.map-card {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
  min-height: 260px;
}

.map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.contact-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.contact-list i {
  margin-right: 0.4rem;
}

/* Footer */
.main-footer {
  padding: 1.7rem 0;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-note {
  color: #6b7280;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.65);
  z-index: 80;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.8);
}

/* Responsive */
@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.3rem 0;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
  }

  .hero-text h1 {
    font-size: 1.85rem;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    gap: 0.8rem;
  }

  .logo-sub {
    display: none;
  }
}
