/* Smart-Service - Premium Custom Stylesheet */

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

:root {
  --primary: #1e3f20;       /* Deep Forest Green */
  --primary-light: #2d5e30;
  --secondary: #e5a93b;     /* Warm Gold / Egg Yolk */
  --accent: #d96b43;        /* Soft Coral / Duck bill */
  --background: #f7f9f6;    /* Off-white organic background */
  --card-bg: #ffffff;
  --text-dark: #1c2e24;     /* Deep charcoal green */
  --text-muted: #5a7065;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
}

/* Glassmorphism Classes */
.glass-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Gradient text utility */
.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--secondary) 0%, #c48b26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Soft glow drop-shadows */
.shadow-premium {
  box-shadow: 0 15px 35px rgba(30, 63, 32, 0.06);
}

.shadow-premium-lg {
  box-shadow: 0 25px 50px rgba(30, 63, 32, 0.1);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

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

.animate-pulse-slow {
  animation: pulse-slow 8s ease-in-out infinite;
}

/* Custom Interactive Tabs */
.tab-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Timeline Custom Styles */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  top: 0px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 3px solid #fff;
  z-index: 1;
}

.timeline-item-left::after {
  left: -8px;
}

/* Form Styling */
.form-input {
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(45, 94, 48, 0.15);
}

/* Interactive Image Hover Grid */
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Accordion Transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

/* Policy Modal Backdrop */
.modal-backdrop {
  background-color: rgba(28, 46, 36, 0.6);
  backdrop-filter: blur(4px);
}
