/* 
  Defne Taksi - Custom Styles
  Primary: #0D3B2E (Deep Laurel Green)
  Accent: #C9A227 (Luxe Gold)
  Background: #F8F4ED (Warm Cream)
  Text: #1F2937 (Soft Dark)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --color-primary: #0D3B2E;
  --color-accent: #C9A227;
  --color-bg: #F8F4ED;
  --color-text: #1F2937;
}

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

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Selection */
::selection {
  background: var(--color-accent);
  color: white;
}

/* Navbar Transition */
#navbar {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.scrolled {
  background: rgba(13, 59, 46, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

/* Star Animation */
@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.2; transform: scale(0.8); }
}
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle infinite ease-in-out;
}

/* Laurel Float Animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Scroll Fade-in Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Card Hover Lifts */
.service-card {
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(13, 59, 46, 0.15);
  border-color: var(--color-accent);
}
.service-card:hover .icon-wrapper {
  background-color: var(--color-accent);
  color: white;
}
.service-card .icon-wrapper {
  transition: all 0.4s ease;
}

/* Floating WhatsApp */
.floating-wa {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Elegant Modals */
.modal-overlay {
  background: rgba(13, 59, 46, 0.8);
  backdrop-filter: blur(5px);
}
