/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Pacifico&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --coral: #FF6B6B;
  --coral-dark: #E8475E;
  --orange: #FF8C42;
  --pink: #FF6B9D;
  --teal: #4ECDC4;
  --yellow: #FFE66D;
  --cream: #FFF9FB;
  --ink: #2D1520;
  --muted: #777;
  --border: #EFE5E8;
  --gradient-warm: linear-gradient(135deg, #FF6B6B, #FF8C42);
  --gradient-cool: linear-gradient(135deg, #FF6B6B, #E8475E);
  --shadow-soft: 0 2px 12px rgba(45, 21, 32, 0.06);
  --shadow-hover: 0 6px 24px rgba(45, 21, 32, 0.12);
  --shadow-card: 0 14px 50px rgba(232, 71, 94, 0.12), 0 2px 6px rgba(45, 21, 32, 0.05);
  --radius: 14px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

/* ===== BACKGROUND BLOBS ===== */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}
.blob-1 {
  width: 480px; height: 480px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(255,107,107,0.65), transparent 70%);
}
.blob-2 {
  width: 420px; height: 420px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(255,140,66,0.55), transparent 70%);
  animation-delay: -6s;
}
.blob-3 {
  width: 360px; height: 360px;
  top: 40%; left: 60%;
  background: radial-gradient(circle, rgba(255,230,109,0.45), transparent 70%);
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch-fixed {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  z-index: 100;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--coral-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  min-width: 44px;
}

.lang-btn.active {
  background: var(--coral-dark);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  background: rgba(232, 71, 94, 0.12);
}

/* ===== PAGE LAYOUT ===== */
.page {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.4rem 2rem;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.logo-link {
  display: inline-block;
  margin-bottom: 1.6rem;
}

.logo {
  width: min(380px, 80vw);
  margin: 0 auto;
  filter: drop-shadow(0 6px 20px rgba(232, 71, 94, 0.18));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--coral-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px dashed rgba(232, 71, 94, 0.4);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.6); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--coral-dark);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  color: #555;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* ===== QUICK CONTACT PILLS ===== */
.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #333;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 71, 94, 0.3);
}

.contact-pill.static {
  cursor: default;
}
.contact-pill.static:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
  border-color: var(--border);
}

.contact-pill i {
  color: var(--coral-dark);
  font-size: 1rem;
}

/* ===== CONTACT CARD ===== */
.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-warm);
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-header h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--coral-dark);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.card-header p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== FORM ===== */
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  background: #FFFAF8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #b9aeb1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral-dark);
  box-shadow: 0 0 0 4px rgba(232, 71, 94, 0.12);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: 'Poppins', sans-serif;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23E8475E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 11px;
  padding-right: 2.4rem;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  width: 100%;
  min-height: 48px;
}

.btn-primary {
  background: var(--gradient-cool);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 71, 94, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232, 71, 94, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.form-error {
  margin-top: 0.9rem;
  padding: 0.7rem 0.9rem;
  background: #FFF1F1;
  border: 1px solid rgba(232, 71, 94, 0.3);
  border-radius: 10px;
  color: var(--coral-dark);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}

/* Loading state on submit button */
.btn.is-loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}
.btn.is-loading i {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== SUCCESS STATE ===== */
.form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
}

.form-success h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: var(--coral-dark);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.form-success p {
  color: var(--muted);
}

@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== SOCIAL ROW ===== */
.social-row {
  text-align: center;
  margin: 2.5rem 0 1rem;
}

.social-row p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.social-icons {
  display: inline-flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  background: var(--coral-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer i {
  color: var(--coral);
  margin-right: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .page {
    padding: 2rem 1rem 1.5rem;
  }
  .hero {
    padding: 1rem 0 2rem;
  }
  .contact-card {
    padding: 2rem 1.3rem;
    border-radius: 20px;
  }
  .contact-form .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lang-switch-fixed {
    top: 0.8rem;
    right: 0.8rem;
  }
  .quick-contact {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-pill {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .logo {
    width: min(280px, 75vw);
  }
}
