/* 
  سباك الكويت - Stylesheet
  Professional plumbing services in Kuwait
*/

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
  --primary-blue: #0284c7; /* sky-600 */
  --primary-dark: #0c4a6e; /* sky-900 */
  --accent-cyan: #06b6d4; /* cyan-500 */
  --accent-gold: #eab308; /* yellow-500 */
  --bg-light: #f8fafc; /* slate-50 */
  --text-dark: #0f172a; /* slate-900 */
  --text-gray: #475569; /* slate-600 */
}

html {
  scroll-behavior: smooth;
  font-family: 'Tajawal', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Glow & Custom Effects */
.nav-link-active {
  color: var(--primary-blue) !important;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-blue);
}

/* Floating Action Buttons Container */
.floating-ctas {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Animations */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
  }
}

.animate-pulse-subtle {
  animation: pulse-subtle 3s infinite ease-in-out;
}

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

.animate-float-badge {
  animation: float-badge 4s infinite ease-in-out;
}

/* Grid Patterns & Shadows */
.clean-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  border-color: rgba(2, 132, 199, 0.3);
}

/* Skip link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
