: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;
}

.footer {
  background-color: var(--foreground);
  color: var(--card);
}

.footer-cta {
  background: linear-gradient(135deg, hsla(174, 62%, 40%, 0.1) 0%, var(--secondary) 100%);
  padding: 4rem 0;
}

.cta-box {
  background-color: var(--primary);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-box {
    padding: 4rem 3rem;
  }
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-description {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/*.footer-logo {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 0.5rem;*/
/*  margin-bottom: 1rem;*/
/*  font-family: var(--font-display);*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*}*/

.footer-description {
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
}

.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsla(0, 0%, 100%, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-logo img {
    max-height: 100px;
    width: 45%;
    margin-left: -21px;
    margin-top: -22px;
}

.social-links ul {
    padding: 0px !important;
}

.madeby {
    font-size: 0.875rem;
    margin-top: -18px;
    color: inherit;
}

.footer-contact ul {
    padding: 0px !important;
}

.footer-links ul {
    padding: 0px !important;
}