:root {
  /* Color palette - Analogous scheme */
  --primary-color: #3a7bd5;
  --primary-dark: #2c5da3;
  --primary-light: #5e9ae8;
  --secondary-color: #00b8d4;
  --secondary-dark: #0089a1;
  --secondary-light: #56d7eb;
  --accent-color: #7c4dff;
  --accent-dark: #5a35c5;
  --accent-light: #9b7dff;
  
  /* Neutral colors */
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #e9ecef;
  --border-color: #e0e0e0;
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* 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);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ====== Base Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.5rem;
}

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

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

a:hover {
  color: var(--primary-dark);
}

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

/* ====== Layout ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.section-header h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: var(--spacing-sm) auto 0;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ====== Utilities ====== */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ====== Components ====== */

/* Buttons */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Cards */
.card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--bg-dark);
}

.accordion-header h3 {
  margin-bottom: 0;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.accordion-item.active .toggle-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: var(--spacing-md);
  display: none;
  background-color: var(--bg-color);
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content img {
  margin: var(--spacing-md) auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Tabs */
.tabs-header {
  display: flex;
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--border-color);
}

.tab-toggle {
  padding: var(--spacing-sm) var(--spacing-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tab-toggle:hover {
  color: var(--primary-color);
}

.tab-toggle.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Form Elements */
.form-group {
  margin-bottom: var(--spacing-md);
}

label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}

/* ====== Header ====== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) 0;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

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

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.logo h1:hover {
  color: var(--primary-dark);
}

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

.nav-menu {
  display: flex;
  list-style: none;
}

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

.nav-menu li a {
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-color);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 6px 0;
  transition: all var(--transition-normal);
}

/* ====== Hero Section ====== */
.hero {
  position: relative;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.hero-content h2 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  color: white;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ====== Hotels Section ====== */
.hotels {
  background-color: var(--bg-light);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.location {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.hotel-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin: var(--spacing-md) 0;
}

.hotel-features span {
  background-color: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--primary-color);
  border: 1px solid var(--primary-light);
}

/* ====== Features Section ====== */
.features {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.features .section-header h2,
.features .section-header p {
  color: white;
}

.features .section-header h2:after {
  background: white;
}

.features-accordion {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.features .accordion-item {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
}

.features .accordion-header {
  background-color: rgba(255, 255, 255, 0.95);
}

.features .accordion-header h3 {
  color: var(--primary-color);
}

.features .accordion-content {
  color: var(--text-color);
}

/* ====== Mission Section ====== */
.mission {
  background-color: var(--bg-light);
}

.mission-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.mission-text {
  flex: 1;
}

.mission-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

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

/* ====== Clientele Section ====== */
.clientele {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.clientele .section-header h2,
.clientele .section-header p {
  color: white;
}

.clientele .section-header h2:after {
  background: white;
}

.testimonials {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  margin: 0 var(--spacing-sm);
  text-align: center;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
}

.quote::before {
  top: -10px;
  left: -10px;
}

.quote::after {
  bottom: -30px;
  right: -10px;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--spacing-sm);
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0;
  color: var(--primary-color);
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  margin: 0 var(--spacing-xs);
  box-shadow: none;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ====== Sustainability Section ====== */
.sustainability {
  background-color: var(--bg-light);
}

.sustainability-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.sustainability-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sustainability-text {
  flex: 1;
}

.sustainability-text h3 {
  color: var(--primary-color);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

/* ====== Portfolio Section ====== */
.portfolio {
  background-color: var(--bg-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.portfolio-item {
  text-align: center;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.image-container {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-sm);
}

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

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

.portfolio-item h3 {
  color: var(--primary-color);
  margin: var(--spacing-sm) 0;
}

.portfolio-item p {
  color: var(--text-light);
}

/* ====== Team Section ====== */
.team {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.team .section-header h2,
.team .section-header p {
  color: white;
}

.team .section-header h2:after {
  background: white;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.team .card {
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.team .card-image {
  height: 350px;
}

.position {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

/* ====== Events Section ====== */
.events {
  background-color: var(--bg-light);
}

.events-calendar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.event {
  display: flex;
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-md);
  background-color: var(--primary-color);
  color: white;
  min-width: 100px;
  text-align: center;
}

.month {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.2rem;
}

.day {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-details {
  padding: var(--spacing-md);
  flex: 1;
}

.event-details h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.event-details .location {
  margin-bottom: var(--spacing-sm);
}

/* ====== Resources Section ====== */
.resources {
  background-color: var(--bg-color);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.resource-item {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.resource-item p {
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.resource-item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

.resource-item a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ====== Insights Section ====== */
.insights {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.insights .section-header h2,
.insights .section-header p {
  color: white;
}

.insights .section-header h2:after {
  background: white;
}

.insights-tabs {
  position: relative;
  z-index: 1;
}

.insights .tabs-header {
  justify-content: center;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.insights .tab-toggle {
  color: white;
}

.insights .tab-toggle:hover,
.insights .tab-toggle.active {
  color: white;
  border-bottom-color: white;
}

.insight-article {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.insight-article img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.insight-article h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.insight-article p {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

/* ====== Contact Section ====== */
.contact {
  background-color: var(--bg-light);
}

.contact-container {
  display: flex;
  gap: var(--spacing-lg);
}

.contact-info, 
.contact-form {
  flex: 1;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
}

.contact-info h3 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h4 {
  color: white;
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.info-item p {
  margin-bottom: 0;
}

.contact-form {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--spacing-md);
}

/* ====== Careers Section ====== */
.careers {
  background-color: var(--bg-color);
}

.careers-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.careers-text {
  flex: 1;
}

.careers-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.job-listings {
  list-style: none;
  margin-top: var(--spacing-md);
}

.job-listings li {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

.job-title {
  flex: 2;
  font-weight: 600;
  color: var(--primary-color);
}

.job-location {
  flex: 1;
  color: var(--text-light);
}

.job-listings .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ====== Footer ====== */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-logo h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-xs);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.footer-column h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.footer-column h3:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  margin-top: var(--spacing-xs);
}

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

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-social h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: background-color var(--transition-fast);
  text-align: center;
  font-size: 0.9rem;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* ====== Success Page ====== */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--bg-light);
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-content h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-content p {
  margin-bottom: var(--spacing-lg);
}

/* ====== Privacy & Terms Pages ====== */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-color);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.privacy-content h3,
.terms-content h3 {
  color: var(--primary-color);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

/* ====== Parallax Effect ====== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* ====== Responsive Styles ====== */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .mission-content,
  .sustainability-content,
  .careers-content,
  .contact-container {
    flex-direction: column;
  }

  .mission-image,
  .sustainability-image,
  .careers-image {
    margin-top: var(--spacing-md);
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .parallax-section {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-lg) 0;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    background-color: white;
    width: 100%;
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: var(--spacing-sm) 0;
  }

  .burger-menu {
    display: block;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -6px);
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hotel-grid,
  .portfolio-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    margin-top: var(--spacing-sm);
    justify-content: center;
  }

  .event {
    flex-direction: column;
  }

  .event-date {
    padding: var(--spacing-sm);
    flex-direction: row;
    justify-content: center;
  }

  .month, .day {
    margin: 0 var(--spacing-xs);
  }
}

@media (max-width: 576px) {
  .section-header {
    margin-bottom: var(--spacing-md);
  }

  .card-image {
    height: 200px;
  }

  .team .card-image {
    height: 250px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.appear {
  opacity: 1;
}

.slide-up {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-up.appear {
  transform: translateY(0);
  opacity: 1;
}

.slide-right {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-right.appear {
  transform: translateX(0);
  opacity: 1;
}

.slide-left {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-left.appear {
  transform: translateX(0);
  opacity: 1;
}