:root {
  --primary: hsl(174, 62%, 40%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-hover: hsl(174, 62%, 35%);
  
  --background: hsl(180, 20%, 99%);
  --foreground: hsl(200, 25%, 15%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 25%, 15%);
  
  --secondary: hsl(180, 30%, 96%);
  --secondary-foreground: hsl(200, 25%, 25%);
  
  --muted: hsl(180, 15%, 94%);
  --muted-foreground: hsl(200, 10%, 45%);
  
  --accent: hsl(174, 50%, 92%);
  --accent-foreground: hsl(174, 62%, 30%);
  
  --border: hsl(180, 20%, 90%);
  
  --radius: 0.75rem;
  --shadow: 0 4px 20px hsla(200, 25%, 15%, 0.08);
  --shadow-hover: 0 8px 30px hsla(174, 62%, 40%, 0.15);
  
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none !important;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-hover);
}

.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 10px 30px hsla(174, 62%, 40%, 0.3);
}

.btn-hero:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 15px 40px hsla(174, 62%, 40%, 0.4);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--card);
  padding: 1rem 2rem;
  font-size: 1rem;
  border: 2px solid hsla(0, 0%, 100%, 0.5);
}

.btn-hero-outline:hover {
  background-color: var(--card);
  color: var(--foreground);
}

.btn-white {
  background-color: var(--card);
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-white:hover {
  background-color: hsla(0, 0%, 100%, 0.9);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  border: 2px solid var(--primary-foreground);
}

.btn-outline-white:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  animation-play-state: running;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
  background: #fff;
}

.navbar.scrolled {
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: hsla(200, 25%, 15%, 0.8);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-right {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: hsla(200, 25%, 15%, 0.8);
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

/* ===== Hero Slider ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(200, 25%, 15%, 0.9), hsla(200, 25%, 15%, 0.6), hsla(200, 25%, 15%, 0.2));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--card);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.75rem;
  background-color: hsla(0, 0%, 100%, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  color: var(--card);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: hsla(0, 0%, 100%, 0.4);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background-color: hsla(0, 0%, 100%, 0.7);
}

/* ===== About Section ===== */
.about {
  padding: 5rem 0 6rem;
  background-color: var(--secondary);
}

@media (min-width: 1024px) {
  .about {
    padding: 8rem 0 10rem;
  }
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.navbar .logo {
    max-height: 65px;
}
.nav-links ul{
    margin-bottom: 0px !important;
    padding: 0px !important;
    display: flex;
}