/* Base Styles & Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
  /* Primary colors */
  --clay-terracotta: #E07A5F;
  --deep-teal: #3D5A80;
  --warm-sand: #F2CC8F;
  
  /* Secondary colors */
  --soft-lavender: #9D8DF1;
  --muted-jade: #4A6D7C;
  
  /* Background colors */
  --cream: #F8F3D4;
  --light-clay: #F3D9D2;
  --pale-blue: #E0FBFC;
  
  /* Accent colors */
  --bright-coral: #FF686B;
  --deep-purple: #6D597A;
  
  /* Neutrals */
  --off-white: #FAFAFA;
  --light-gray: #E5E5E5;
  --medium-gray: #909090;
  --dark-gray: #444444;
  
  /* Shadows and effects */
  --clay-shadow: 0 10px 20px rgba(224, 122, 95, 0.15);
  --depth-shadow: 0 8px 24px rgba(61, 90, 128, 0.12);
  --inner-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--off-white);
  overflow-x: hidden;
}

/* Claymorphism styles */
.clay-element {
  background-color: var(--light-clay);
  border-radius: 24px;
  box-shadow: var(--clay-shadow);
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clay-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(224, 122, 95, 0.25);
}

.clay-button {
  background-color: var(--deep-teal);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--clay-shadow);
  position: relative;
  overflow: hidden;
}

.clay-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(61, 90, 128, 0.2);
}

.clay-button:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(61, 90, 128, 0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--deep-teal);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--muted-jade);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--deep-teal);
}

/* Layout components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--clay-terracotta);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Header */
.site-header {
  background-color: var(--off-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 200px;
  height: auto;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clay-terracotta);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--deep-teal);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: var(--deep-teal);
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  margin-top: 2rem;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  color: white;
  font-size: 1.2rem;
  display: block;
  padding: 0.5rem 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background-color: var(--cream);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--deep-teal);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--muted-jade);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 2rem;
  box-shadow: var(--depth-shadow);
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 24px;
  background-color: white;
  box-shadow: var(--clay-shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--clay-terracotta);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--deep-teal);
  margin-bottom: 1rem;
}

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

.feature-description {
  color: var(--medium-gray);
}

/* Services Section */
.services {
  background-color: var(--light-clay);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--warm-sand);
  border-radius: 50%;
  opacity: 0.2;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-color: var(--soft-lavender);
  border-radius: 50%;
  opacity: 0.15;
}

.services-list {
  position: relative;
  z-index: 2;
}

.service-item {
  background-color: white;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--clay-shadow);
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--pale-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--deep-teal);
  font-size: 1.5rem;
}

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

/* About Section */
.about {
  padding: 5rem 0;
  position: relative;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin-bottom: 2rem;
  box-shadow: var(--depth-shadow);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form-section {
  background-color: var(--pale-blue);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--clay-shadow);
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--deep-teal);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 3px rgba(61, 90, 128, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  background-color: var(--deep-teal);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: var(--muted-jade);
}

/* Footer */
.footer {
  background-color: var(--deep-teal);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  margin-right: 0.75rem;
  color: var(--clay-terracotta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--off-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-text {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-button {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background-color: var(--deep-teal);
  color: white;
  border: none;
}

.accept-all:hover {
  background-color: var(--muted-jade);
}

.reject-all {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  border: none;
}

.reject-all:hover {
  background-color: var(--medium-gray);
  color: white;
}

.customize {
  background-color: transparent;
  color: var(--deep-teal);
  border: 1px solid var(--deep-teal);
}

.customize:hover {
  background-color: rgba(61, 90, 128, 0.1);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  display: none;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: white;
  border-radius: 24px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-settings-title {
  font-size: 1.5rem;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-gray);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-title {
  font-size: 1.2rem;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-gray);
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--deep-teal);
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-category-description {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.cookie-settings-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.save-preferences {
  background-color: var(--deep-teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences:hover {
  background-color: var(--muted-jade);
}

/* Biblioteca Digital Page */
.filter-section {
  margin-bottom: 2rem;
}

.filter-container {
  background-color: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--clay-shadow);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.filter-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
}

.filter-button {
  background-color: var(--deep-teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-button:hover {
  background-color: var(--muted-jade);
}

.library-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.library-item {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--clay-shadow);
  transition: transform 0.3s ease;
}

.library-item:hover {
  transform: translateY(-10px);
}

.library-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.library-item-content {
  padding: 1.5rem;
}

.library-item-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.library-item-category {
  display: inline-block;
  background-color: var(--light-clay);
  color: var(--deep-teal);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.library-item-description {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.library-item-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.pagination-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: white;
  color: var(--deep-teal);
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-item.active a {
  background-color: var(--deep-teal);
  color: white;
}

.pagination-item a:hover {
  background-color: var(--light-clay);
}

/* Contact Page */
.contact-info-section {
  margin-bottom: 3rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-card {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--clay-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--pale-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--deep-teal);
  font-size: 1.5rem;
}

.contact-info-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-info-text {
  color: var(--medium-gray);
}

.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--clay-shadow);
  margin-bottom: 3rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .library-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-image-container {
    flex: 1;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .about-image-container {
    flex: 1;
  }
  
  .about-text {
    flex: 1;
  }
}

/* Overlapping Layers Style */
.overlap-container {
  position: relative;
  margin: 4rem 0;
}

.overlap-layer {
  position: relative;
  z-index: 1;
  margin-bottom: -50px;
}

.overlap-layer:nth-child(2) {
  margin-left: 50px;
  z-index: 2;
}

.overlap-layer:nth-child(3) {
  margin-left: 100px;
  z-index: 3;
}

.overlap-card {
  background-color: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--clay-shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background-color: var(--pale-blue);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--clay-shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-jade);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .overlap-layer:nth-child(2) {
    margin-left: 100px;
  }
  
  .overlap-layer:nth-child(3) {
    margin-left: 200px;
  }
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Claymorphism Specific Styles */
.clay-card {
  background-color: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.05), 
              -8px -8px 16px rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: relative;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.clay-card:hover {
  transform: translateY(-10px);
}

.clay-input {
  background-color: var(--off-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.05),
              inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.clay-input:focus {
  outline: none;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1),
              inset -2px -2px 4px rgba(255, 255, 255, 0.9);
}

/* Thank You Page */
.thank-you-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 3rem 1rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--clay-terracotta);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--medium-gray);
}

.back-button {
  display: inline-block;
  background-color: var(--deep-teal);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: var(--muted-jade);
}

/* Additional Claymorphism Elements */
.clay-divider {
  height: 8px;
  background-color: var(--light-clay);
  border-radius: 4px;
  margin: 3rem 0;
  position: relative;
}

.clay-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 8px;
  background-color: var(--clay-terracotta);
  border-radius: 4px;
}

.clay-tag {
  display: inline-block;
  background-color: var(--pale-blue);
  color: var(--deep-teal);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05), 
              -2px -2px 4px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* IntlTelInput custom styling */
.iti {
  width: 100%;
}

.iti__flag-container {
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.iti__selected-flag {
  background-color: var(--off-white);
}

.iti__country-list {
  border-radius: 12px;
  box-shadow: var(--clay-shadow);
  border: 1px solid var(--light-gray);
}

/* UI Kit Overrides */
.uk-button {
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.uk-card {
  border-radius: 24px;
  box-shadow: var(--clay-shadow);
  overflow: hidden;
}

.uk-section {
  padding: 4rem 0;
}

.uk-container {
  padding: 0 1rem;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background-color: var(--off-white);
}

.uk-navbar-nav > li > a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--deep-teal);
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li > a:focus, 
.uk-navbar-nav > li.uk-active > a {
  color: var(--clay-terracotta);
}

.uk-tab > * > a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.uk-tab > .uk-active > a {
  border-color: var(--clay-terracotta);
}

.uk-modal-dialog {
  border-radius: 24px;
  box-shadow: var(--clay-shadow);
}

.uk-modal-header {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.uk-modal-footer {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.uk-form-label {
  font-weight: 500;
  color: var(--deep-teal);
}

.uk-input, .uk-select, .uk-textarea {
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
}

.uk-input:focus, .uk-select:focus, .uk-textarea:focus {
  border-color: var(--deep-teal);
}

.uk-badge {
  background-color: var(--clay-terracotta);
  font-family: 'Outfit', sans-serif;
}

.uk-alert {
  border-radius: 12px;
}

.uk-accordion-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.uk-pagination > * > * {
  font-family: 'Outfit', sans-serif;
}

.uk-pagination > .uk-active > * {
  background-color: var(--deep-teal);
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 3s ease-in-out infinite;
}