:root {
  /* Colors */
  --background: oklch(1 0 0);
  --foreground: oklch(0.22 0.02 220);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.02 220);
  --primary: oklch(0.74 0.12 190);
  --primary-foreground: oklch(0.99 0 0);
  --primary-soft: oklch(0.96 0.03 190);
  --secondary: oklch(0.97 0.005 220);
  --secondary-foreground: oklch(0.25 0.02 220);
  --border: oklch(0.92 0.01 220);
  --whatsapp: oklch(0.72 0.18 145);
  --whatsapp-foreground: oklch(0.99 0 0);

  /* Typography */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Shadows */
  --shadow-soft: 0 10px 30px -12px color-mix(in oklab, var(--primary) 18%, transparent);
  --shadow-card: 0 8px 24px -12px oklch(0 0 0 / 0.12);
  --shadow-lift: 0 22px 50px -20px oklch(0 0 0 / 0.18);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, color-mix(in oklab, var(--primary) 70%, white) 100%);
  --gradient-hero: linear-gradient(180deg, oklch(0 0 0 / 0.05) 0%, oklch(0 0 0 / 0.55) 100%);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: 6rem 0;
}

@media (min-width: 640px) {
  .section { padding: 8rem 0; }
}

.bg-background { background-color: var(--background); }
.bg-secondary { background-color: var(--secondary); }
.bg-primary-soft { background-color: var(--primary-soft); }
.bg-card { background-color: var(--card); }

.text-primary { color: var(--primary); }
.text-foreground-80 { color: rgba(56, 56, 56, 0.8); }
.font-serif { font-family: var(--font-serif); }
.italic { font-style: italic; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

.shadow-card { box-shadow: var(--shadow-card); }
.shadow-lift { box-shadow: var(--shadow-lift); }

.grid-2-col {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .grid-2-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.items-center { align-items: center; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: all 0.3s;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.navbar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) { .navbar-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .navbar-container { padding: 0 2rem; } }

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.logo-link:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.25;
  color: white;
  transition: color 0.3s;
}

.navbar.scrolled .logo-text { color: var(--foreground); }

.logo-subtext {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  font-family: var(--font-sans);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

.nav-link:hover { color: var(--primary); }

.navbar.scrolled .nav-link {
  color: rgba(56, 56, 56, 0.8);
}

.navbar.scrolled .nav-link:hover { color: var(--primary); }

.btn-outline-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid white;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s;
}

.btn-outline-nav:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  transform: translateY(-0.125rem);
}

.navbar.scrolled .btn-outline-nav {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar.scrolled .btn-outline-nav:hover {
  color: var(--primary-foreground);
}

.mobile-menu-btn {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

.mobile-nav {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  animation: fade-up 0.3s ease-out;
}

.mobile-nav-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  padding: 0.75rem 0.5rem;
  border-radius: 0.375rem;
  color: rgba(56, 56, 56, 0.8);
  font-weight: 500;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-soft);
}

.mobile-nav-btn {
  margin-top: 0.5rem;
  text-align: center;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: inline-flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--whatsapp);
  color: var(--whatsapp-foreground);
  box-shadow: var(--shadow-lift);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transition: transform 0.3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.fab-icon {
  height: 1.75rem;
  width: 1.75rem;
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--whatsapp) 60%, transparent); }
  70%  { box-shadow: 0 0 0 18px color-mix(in oklab, var(--whatsapp) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--whatsapp) 0%, transparent); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-lift);
  transition: all 0.3s;
}

.btn-primary-large:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-soft);
}

.btn-outline-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-outline-large:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.cta-btn .btn-icon {
  height: 1.5rem;
  width: 1.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.45), rgba(0,0,0,0.2));
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background-image: var(--gradient-hero);
}

.hero-content {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content { padding-top: 10rem; padding-bottom: 10rem; }
}

.hero-text {
  max-width: 42rem;
  color: white;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  color: var(--primary);
  width: 0.875rem;
  height: 0.875rem;
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 3rem;
  line-height: 1.05;
}

@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  line-height: 1.625;
}

@media (min-width: 640px) { .hero-description { font-size: 1.25rem; } }

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 28rem;
  color: white;
}

.hero-stats dt {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--primary);
}

.hero-stats dd {
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

/* Typography elements for sections */
.section-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  line-height: 1.25;
}

@media (min-width: 640px) { .section-title { font-size: 3rem; } }

.section-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(115, 115, 115, 1); /* muted foreground */
  line-height: 1.625;
}

.section-description.centered {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

/* About Section */
.about-image-wrapper {
  position: relative;
}

.image-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.award-card {
  display: none;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 20rem;
  border: 1px solid var(--border);
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .award-card { display: flex; }
}

.award-icon-wrapper {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  background-color: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.award-icon-wrapper i {
  width: 1.375rem;
  height: 1.375rem;
}

.award-year {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1;
}

.award-text {
  font-size: 0.75rem;
  color: rgba(115, 115, 115, 1);
  margin-top: 0.25rem;
}

.pillars-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pillars-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.pillar-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  background-color: var(--card);
  transition: all 0.3s;
}

.pillar-card:hover {
  border-color: var(--primary);
  transform: translateY(-0.25rem);
}

.pillar-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon i {
  width: 1.25rem;
  height: 1.25rem;
}

.pillar-title {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.pillar-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(115, 115, 115, 1);
}

/* Services */
.services-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.service-card {
  position: relative;
  border-radius: 1rem;
  background-color: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-0.25rem);
}

.service-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

.service-icon i {
  width: 1.625rem;
  height: 1.625rem;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.service-title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.service-desc {
  margin-top: 0.75rem;
  color: rgba(115, 115, 115, 1);
  line-height: 1.625;
}

.service-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Amenities Carousel */
.amenities-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .amenities-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.amenities-header > div {
  max-width: 42rem;
}

.amenities-header p {
  max-width: 28rem;
  margin-top: 0;
}

.carousel-container {
  position: relative;
}

.carousel-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background-color: rgba(245, 245, 245, 1);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1), transparent);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

@media (min-width: 640px) {
  .carousel-caption { padding: 2rem; }
}

.carousel-caption-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .carousel-caption-title { font-size: 1.875rem; }
}

.carousel-caption-desc {
  margin-top: 0.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.carousel-btn i {
  width: 1.375rem;
  height: 1.375rem;
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.prev-btn { left: 0.75rem; }
.next-btn { right: 0.75rem; }

.carousel-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot:hover {
  background-color: rgba(var(--primary), 0.5);
}

.carousel-dot.active {
  width: 2rem;
  background-color: var(--primary);
}

/* Trust Section */
.trust-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.trust-card {
  border-radius: 0.75rem;
  background-color: var(--background);
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-icon {
  color: var(--primary);
  margin-top: 0.125rem;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.25;
}

.trust-desc {
  font-size: 0.875rem;
  color: rgba(115, 115, 115, 1);
  margin-top: 0.25rem;
}

.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(56, 56, 56, 0.9);
  cursor: pointer;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s;
}

.video-container:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon-wrapper {
  height: 5rem;
  width: 5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.video-container:hover .play-icon-wrapper {
  transform: scale(1.1);
}

.play-icon-wrapper i {
  width: 2.75rem;
  height: 2.75rem;
}

.video-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.video-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact CTA */
.cta-title {
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .cta-title { font-size: 3.75rem; }
}

.cta-btn {
  margin-top: 2.5rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.contact-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.contact-icon {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 0.5rem;
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(115, 115, 115, 1);
}

.contact-value {
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
}

.footer-grid {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon-small {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background-image: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.logo-text-small {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.25;
}

.logo-subtext-small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: var(--font-sans);
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(56, 56, 56, 0.7);
  line-height: 1.625;
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  font-size: 0.875rem;
  color: rgba(56, 56, 56, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i,
.footer-contact-item svg {
  color: var(--primary);

  width: 32px !important;
  height: 32px !important;

  min-width: 32px;

  flex-shrink: 0;

  margin-top: 4px;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background-color: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(56, 56, 56, 0.7);
  transition: all 0.3s;
}

.social-link i {
  width: 1.125rem;
  height: 1.125rem;
}

.social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(229, 231, 235, 0.7);
  margin-top: 2rem;
}

.footer-bottom-content {
  padding: 1.5rem 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  text-align: center;
  flex-wrap: nowrap;

  font-size: 0.875rem;
  color: rgba(56, 56, 56, 0.6);
}

.footer-bottom-content p {
  margin: 0;
  white-space: nowrap;
}