/* Base Variables */
:root {
  /* Base Colors */
  --color-primary: #f7d6e0;
  --color-primary-dark: #e5b8c5;
  --color-secondary: #b2d8d8;
  --color-secondary-dark: #92baba;
  --color-tertiary: #ffeead;
  --color-tertiary-dark: #e6d5a0;
  --color-accent: #ff847c;
  --color-accent-dark: #e66b64;
  --color-black: #333333;
  --color-dark-gray: #555555;
  --color-medium-gray: #888888;
  --color-light-gray: #dddddd;
  --color-white: #ffffff;
  --color-off-white: #f9f9f9;
  --color-error: #ff6b6b;
  --color-success: #6bc77f;

  /* Gradients */
  --gradient-primary: linear-gradient(
    to right,
    var(--color-primary),
    var(--color-secondary)
  );
  --gradient-overlay: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3)
  );
  --gradient-card: linear-gradient(
    to bottom,
    var(--color-white),
    var(--color-off-white)
  );

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-heading: "Archivo Black", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Z-index */
  --z-behind: -1;
  --z-normal: 0;
  --z-elevated: 10;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal: 300;
  --z-tooltip: 400;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

section:nth-of-type(1) {
  padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-xl);
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  transition: width var(--transition-medium);
}

h2:hover::after {
  width: 100%;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

/* Buttons */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-md);
  outline: none;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  color: #fff;
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn:active,
button:active,
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-black);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--color-accent);
  box-shadow: none;
  padding: 0.5rem 0;
  position: relative;
  overflow: hidden;
}

.btn-tertiary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.btn-tertiary:hover {
  background-color: transparent;
  box-shadow: none;
  transform: translateY(0);
}

.btn-tertiary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Grid system */
.content-columns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.column {
  padding: 0 1rem;
  width: 100%;
}

.column.is-one-third {
  width: 33.333%;
}

.column.is-two-thirds {
  width: 66.667%;
}

.column.is-half {
  width: 50%;
}

.column.is-full {
  width: 100%;
}

@media (max-width: 768px) {
  .column.is-one-third,
  .column.is-two-thirds,
  .column.is-half {
    width: 100%;
  }
}

/* Header styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: var(--space-md);
}

.menu a {
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  padding: 0.5rem;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.menu a:hover {
  color: var(--color-accent);
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: var(--z-elevated);
  background-color: transparent;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: fit-content;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-medium);
    z-index: var(--z-drawer);
  }

  .menu.active {
    right: 0;
  }

  .menu li {
    margin: var(--space-md) 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 200px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-overlay);
  z-index: var(--z-behind);
}

.hero .container {
  position: relative;
  z-index: var(--z-elevated);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

/* About Section */
.about-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.about-section h2 {
  text-align: center;
}

.about-section .image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-section .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  mix-blend-mode: multiply;
  opacity: 0.2;
  transition: opacity var(--transition-medium);
}

.about-section .image-container:hover::before {
  opacity: 0;
}

.about-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-section .image-container:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-off-white);
}

.services-section h2 {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: var(--space-lg);
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

/* Statistics Section */
.statistics-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-tertiary);
  background-image: url("./image/stats-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: var(--z-behind);
}

.statistics-section .container {
  position: relative;
  z-index: var(--z-normal);
}

.statistics-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.statistic-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.statistic-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.statistic-item p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Research Section */
.research-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.research-section h2 {
  text-align: center;
}

.research-section .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-lg);
}

.research-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.research-section .image-container:hover img {
  transform: scale(1.05);
}

/* Awards Section */
.awards-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-off-white);
  position: relative;
}

.awards-section h2 {
  text-align: center;
}

.awards-slider {
  display: flex;
  overflow-x: hidden;
  margin-bottom: var(--space-lg);
  scroll-behavior: smooth;
}

.award-item {
  flex: 0 0 calc(33.333% - var(--space-lg));
  margin-right: var(--space-lg);
  text-align: center;
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-item:last-child {
  margin-right: 0;
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.award-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.award-item:hover .award-image img {
  transform: scale(1.1);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.prev-btn,
.next-btn {
  background-color: var(--color-white);
  color: var(--color-black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .award-item {
    flex: 0 0 calc(50% - var(--space-lg));
  }
}

@media (max-width: 576px) {
  .award-item {
    flex: 0 0 100%;
  }
}

/* FAQ Section */
.faq-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.faq-section h2 {
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  background-color: var(--color-off-white);
  padding: var(--space-lg);
  cursor: pointer;
  position: relative;
  font-weight: var(--font-weight-bold);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium),
    padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: var(--space-lg);
  max-height: 500px;
}

/* Resources Section */
.resources-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-off-white);
}

.resources-section h2 {
  text-align: center;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.resource-item {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-item h3 {
  margin-bottom: var(--space-md);
  color: var(--color-black);
  font-size: 1.4rem;
}

.resource-item ul {
  list-style: none;
  padding: 0;
}

.resource-item li {
  margin-bottom: var(--space-sm);
}

.resource-item a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

.resource-item a::after {
  content: "→";
  margin-left: var(--space-xs);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.resource-item a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Team Section */
.team-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.team-section h2 {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.team-grid .card {
  align-items: center;
}

.team-grid .card-image {
  height: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-grid .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.team-grid .card-content h3 {
  margin-bottom: var(--space-xs);
}

.team-grid .card-content .title {
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

/* Why Us Section */
.why-us-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-off-white);
}

.why-us-section h2 {
  text-align: center;
}

.why-us-section .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.why-us-section .image-container:hover img {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-secondary);
  position: relative;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--color-black);
}

.testimonials-slider {
  overflow-x: hidden;
  margin-bottom: var(--space-lg);
  display: flex;
  scroll-behavior: smooth;
}

.testimonial-item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-right: var(--space-lg);
}

.testimonial-item:last-child {
  margin-right: 0;
}

.testimonial-image {
  width: 500px;
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.testimonial-item:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 var(--space-lg);
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-tertiary);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-text::before {
  top: -20px;
  left: 0;
}

.testimonial-text::after {
  bottom: -40px;
  right: 0;
}

.testimonial-author {
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .testimonial-image {
    width: 100%;
    height: 200px;
  }
}

/* Contact Section */
.contact-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.contact-section h2 {
  text-align: center;
}

.contact-form {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-bold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 132, 124, 0.2);
  outline: none;
}

.contact-info {
  padding: var(--space-lg);
  background-color: var(--color-tertiary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: var(--space-md);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer styles */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-column h3 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-column a::before {
  content: "→";
  opacity: 0;
  margin-right: var(--space-sm);
  transform: translateX(-5px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  position: absolute;
  left: -15px;
}

.footer-column a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer-column a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-links li {
  margin-bottom: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
}

.social-links a:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.social-links a:hover:before {
  opacity: 1;
}

.social-links a[href*="facebook"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z"/></svg>');
}

.social-links a[href*="twitter"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"/></svg>');
}

.social-links a[href*="instagram"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z"/></svg>');
}

.social-links a[href*="pinterest"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 0C5.373 0 0 5.372 0 12c0 5.084 3.163 9.426 7.627 11.174-.105-.949-.2-2.405.042-3.441.218-.937 1.407-5.965 1.407-5.965s-.359-.719-.359-1.782c0-1.668.967-2.914 2.171-2.914 1.023 0 1.518.769 1.518 1.69 0 1.029-.655 2.568-.994 3.995-.283 1.194.599 2.169 1.777 2.169 2.133 0 3.772-2.249 3.772-5.495 0-2.873-2.064-4.882-5.012-4.882-3.414 0-5.418 2.561-5.418 5.207 0 1.031.397 2.138.893 2.738.098.119.112.224.083.345l-.333 1.36c-.053.22-.174.267-.402.161-1.499-.698-2.436-2.889-2.436-4.649 0-3.785 2.75-7.262 7.929-7.262 4.163 0 7.398 2.967 7.398 6.931 0 4.136-2.607 7.464-6.227 7.464-1.216 0-2.359-.631-2.75-1.378l-.748 2.853c-.271 1.043-1.002 2.35-1.492 3.146C9.57 23.812 10.763 24 12 24c6.627 0 12-5.373 12-12 0-6.628-5.373-12-12-12z"/></svg>');
}

.copyright {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-white);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--border-radius-lg);
  overflow: auto;
  padding: var(--space-lg);
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-black);
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--color-accent);
}

.modal-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success page styles */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: var(--space-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--color-success);
  margin-bottom: var(--space-lg);
}

.success-message {
  max-width: 600px;
}

.success-message h1 {
  margin-bottom: var(--space-md);
}

/* Privacy and Terms pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: var(--space-lg);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-content ul,
.page-content ol {
  margin-bottom: var(--space-lg);
}

.page-content li {
  margin-bottom: var(--space-sm);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-left {
  animation: slideInFromLeft 1s ease-out;
}

.animate-slide-right {
  animation: slideInFromRight 1s ease-out;
}

.animate-slide-up {
  animation: slideInFromBottom 1s ease-out;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

.text-success {
  color: var(--color-success);
}

.text-error {
  color: var(--color-error);
}

.read-more {
  display: inline-block;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
  margin-top: var(--space-sm);
}

.read-more::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-medium);
}

.read-more:hover {
  color: var(--color-accent-dark);
  text-decoration: none;
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

.luxury-articles-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.luxury-articles-header {
  text-align: center;
  margin-bottom: 70px;
}

.luxury-articles-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.luxury-articles-subtitle {
  font-size: 1.2rem;
  color: #8b7355;
  font-style: italic;
  font-weight: 300;
}

.luxury-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.luxury-articles-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 4px solid #8b7355;
}

.luxury-articles-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.luxury-articles-card-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #d4c5b0 0%, #8b7355 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.luxury-articles-card-content {
  padding: 35px;
}

.luxury-articles-card-title {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.luxury-articles-card-excerpt {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.luxury-articles-card-link {
  display: inline-block;
  color: #8b7355;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #8b7355;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.luxury-articles-card-link:hover {
  color: #6b5845;
  border-color: #6b5845;
}

.luxury-articles-full-section {
  margin-top: 80px;
}

.luxury-articles-full-article {
  background: white;
  max-width: 900px;
  margin: 100px auto 80px;
  padding: 60px;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 8px solid #8b7355;
}

.luxury-articles-full-title {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.luxury-articles-full-meta {
  color: #8b7355;
  font-size: 0.95rem;
  margin-bottom: 35px;
  font-style: italic;
}

.luxury-articles-full-content {
  font-size: 1.1rem;
  color: #444;
  line-height: 2;
}

.luxury-articles-full-content h3 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin: 35px 0 20px;
  font-weight: 400;
}

.luxury-articles-full-content p {
  margin-bottom: 25px;
}

.luxury-articles-back-link {
  display: inline-block;
  margin-top: 30px;
  color: #8b7355;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.luxury-articles-back-link:hover {
  color: #6b5845;
}

@media (max-width: 768px) {
  .luxury-articles-title {
    font-size: 2.5rem;
  }

  .luxury-articles-grid {
    grid-template-columns: 1fr;
  }

  .luxury-articles-full-article {
    padding: 40px 30px;
  }

  .luxury-articles-full-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .luxury-articles-section {
    padding: 50px 15px;
  }

  .luxury-articles-title {
    font-size: 2rem;
  }

  .luxury-articles-card-content {
    padding: 25px;
  }

  .luxury-articles-full-article {
    padding: 30px 20px;
  }
}
