/* PhoneCom Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #0f172a;
}

/* ============================================================
   BASE & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Prevent horizontal scroll on mobile */
main, header, footer, section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.dark .glass-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(51, 65, 85, 0.6);
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 8px; }
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.dark ::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON ANIMATION
   ============================================================ */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -5px rgba(34, 197, 94, 0.6);
  }
}

.wa-float-btn {
  width: 52px;
  height: 52px;
  animation: pulse-subtle 3s infinite ease-in-out;
}

@media (min-width: 640px) {
  .wa-float-btn {
    width: 56px;
    height: 56px;
  }
}

/* ============================================================
   GRADIENT UTILITIES
   ============================================================ */
.bg-gradient-brand {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #06b6d4 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   MOBILE TOUCH TARGETS
   ============================================================ */
button, a, input, textarea, select {
  touch-action: manipulation;
}

/* Minimum tap target size on mobile */
@media (max-width: 640px) {
  .faq-question {
    min-height: 52px;
  }
}

/* ============================================================
   MODAL RESPONSIVE
   ============================================================ */
#bookingModal {
  -webkit-overflow-scrolling: touch;
}

/* ============================================================
   MOBILE MENU SMOOTH TRANSITION
   ============================================================ */
#mobileMenu {
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

/* ============================================================
   IMAGE RESPONSIVE DEFAULTS
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
}
