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

:root {
  --primary-color: #407F76;
  --secondary-color: #C69A35;
  --light-gray: #F4F4F4;
  --dark-gray: #333333;
  --white: #FFFFFF;
  --black: #000000;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gill Sans', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Canto', 'Tajawal', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
}

.col-2 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-3 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.section {
  padding: 5rem 0;
}

/* Section Headings */
.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  margin: 1.5rem auto 0;
}

.section h2.text-center::after {
  margin-left: 30%;
  margin-right: auto;
}

.section-intro {
  max-width: 550px;
  margin: 0 auto 3rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.section.bg-light {
  background: var(--light-gray);
}

.section:not(.bg-light) + .section:not(.bg-light) {
  border-top: 1px solid rgba(64, 127, 118, 0.1);
}

/* Header */
.header {
  background-color: var(--primary-color);
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 15px;
}

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

.logo:hover {
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--white);
  text-decoration: none;
}

.nav {
  display: flex;
}

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

.nav li {
  margin-left: 1.5rem;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.8;
}

/* Language Toggle Button */
.language-toggle {
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Tajawal', sans-serif;
}

.language-toggle:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Loading state for language switching */
body.loading {
  cursor: wait;
  pointer-events: none;
}

body.loading .language-toggle::after {
  content: '...';
  animation: dots 1s infinite;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.hamburger:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.hamburger i {
  font-size: 1.8rem;
}

/* Hero Section */
.hero {
  min-height: 550px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  color: var(--white);
  margin-top: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  max-width: 420px;
  padding: 0 60px 0 20px;
  position: relative;
  margin-right: 5%;
  margin-left: auto;
  text-align: right;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: right;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: right;
}

.hero .cta {
  margin-left: 0;
  margin-top: 1rem;
}

/* CTA Button with Arrow */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background-color: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(198, 154, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.cta:hover::before {
  width: 100%;
}

.cta span {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.cta svg {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 154, 53, 0.4);
  border-color: var(--secondary-color);
}

.cta:hover span {
  color: var(--secondary-color);
}

.cta:hover svg {
  fill: none;
  stroke: var(--secondary-color);
  transform: translateX(5px);
}

.cta svg path,
.cta svg polyline {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s;
}

.cta:active {
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

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

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

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

.btn-block {
  display: block;
  width: 100%;
}

/* Booking Section */
.booking {
  padding: 5rem 0;
  background-color: var(--white);
}

.booking .row {
  align-items: stretch;
}

.booking .col-2:first-child {
  background: #C69A35;
  padding: 3rem;
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(198, 154, 53, 0.4);
}

.booking .col-2:first-child h2 {
  color: var(--white);
}

.booking .col-2:first-child h2::after {
  background: rgba(255,255,255,0.5);
}

.booking .col-2:first-child p {
  color: rgba(255, 255, 255, 0.95);
}

.booking-form {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.about .row {
  align-items: stretch;
}

.about .col-2:last-child {
  background: #C69A35;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(198, 154, 53, 0.4);
}

.about-main-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.about .col-2:last-child .about-title::after {
  background: rgba(255,255,255,0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(198, 154, 53, 0.2);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.5;
  margin: 0;
}

/* Services Section */
.services-comprehensive {
  background: var(--white);
}

.services-header {
  text-align: center;
  cursor: pointer;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  user-select: none;
}

.services-header:hover {
  background: rgba(64, 127, 118, 0.05);
}

.services-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.services-header-content i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.services-comprehensive.collapsed .services-header-content i {
  transform: rotate(180deg);
}

.services-content {
  max-height: 3000px;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 1;
}

.services-comprehensive.collapsed .services-content {
  max-height: 0;
  opacity: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(64, 127, 118, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(64, 127, 118, 0.15);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #366a62);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary-color), #d4a843);
  transform: rotate(360deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card > p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-features i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
}

.gallery-container {
  position: relative;
}

.gallery-slide {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.gallery-content {
  padding: 1.5rem;
  background-color: var(--white);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  z-index: 10;
}

.gallery-nav button {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-nav button:hover {
  background-color: var(--white);
}

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

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.contact .row {
  align-items: stretch;
}

.contact .col-2:first-child {
  background: #C69A35;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(198, 154, 53, 0.4);
}

.contact .col-2:first-child h3,
.contact .col-2:first-child p {
  color: var(--white);
}

.contact .col-2:first-child .contact-item i {
  color: var(--white);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.map-container {
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Blog Section */
.blog {
  padding: 5rem 0;
}

.blog-header {
  background: linear-gradient(135deg, var(--primary-color), #2d6159);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 60px;
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.blog-header .section-intro {
  font-size: 1.2rem;
  max-width: 550px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.blog-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(64, 127, 118, 0.1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(64, 127, 118, 0.2);
}

.blog-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-img::after {
  opacity: 1;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--secondary-color);
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #999;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta i {
  color: var(--secondary-color);
}

.blog-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--secondary-color);
  gap: 0.8rem;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

.blog-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-single-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.blog-single-content {
  line-height: 1.8;
}

.blog-single-content p {
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5f58 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(198, 154, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section h2::after {
  background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-buttons .cta {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.cta-buttons .cta::before {
  background-color: var(--secondary-color);
}

.cta-buttons .cta:hover {
  border-color: var(--white);
}

.cta-buttons .cta:hover span {
  color: var(--white);
}

.cta-buttons .cta svg path,
.cta-buttons .cta svg polyline {
  stroke: var(--primary-color);
}

.cta-buttons .cta:hover svg path,
.cta-buttons .cta:hover svg polyline {
  stroke: var(--white);
}

/* Footer - Simplified */
.footer {
  background: linear-gradient(135deg, #2d5a54 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 2.5rem 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--secondary-color);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* Login Page */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light-gray);
}

.login-form {
  width: 100%;
  max-width: 400px;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo img {
  height: 60px;
}

.error-message {
  color: #d9534f;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Marquee Section - Client Logos */
.marquee-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #366a62 100%);
  padding: 4rem 0;
}

.marquee_header {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.marquee__logo {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background-color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.marquee__logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(198, 154, 53, 0.3);
  border: 2px solid var(--secondary-color);
}

/* Capacity Section */
.capacity-section {
  background: var(--light-gray);
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capacity-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.capacity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(198, 154, 53, 0.2);
}

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

.capacity-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.capacity-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(64, 127, 118, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: rgba(64, 127, 118, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  flex: 1;
}

.faq-question i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(244, 244, 244, 0.5);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Features Section */
.features .row {
  align-items: center;
}

.features-image-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-golden-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a843 100%);
  border-radius: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  box-shadow: 0 10px 40px rgba(198, 154, 53, 0.3);
  z-index: 1;
}

.features-main-image {
  position: relative;
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.features-main-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.features-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-accordion-item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.features-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(64, 127, 118, 0.15);
  transform: translateX(10px);
}

.features-accordion-title {
  padding: 1.2rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--white);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.features-accordion-item:hover .features-accordion-title {
  background: linear-gradient(90deg, rgba(198, 154, 53, 0.1) 0%, transparent 100%);
  border-left-width: 6px;
  padding-left: 1.8rem;
}

.features-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background-color: var(--light-gray);
  transition: all 0.4s ease;
  opacity: 0;
}

.features-accordion-item:hover .features-accordion-content {
  max-height: 200px;
  padding: 1.2rem 1.5rem;
  opacity: 1;
}

.features-accordion-content p {
  margin: 0;
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Weather Card */
.weather-card {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 280px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 10;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  animation: slideInLeft 0.8s ease-out;
}

.weather-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1.1rem;
}

.weather-header i {
  color: var(--secondary-color);
}

.weather-current {
  text-align: center;
  margin-bottom: 1.5rem;
}

.weather-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.weather-temp {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.3rem;
}

.weather-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-transform: capitalize;
}

.weather-details {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  border-top: 1px solid rgba(64, 127, 118, 0.2);
  border-bottom: 1px solid rgba(64, 127, 118, 0.2);
  margin-bottom: 1rem;
}

.weather-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.weather-detail-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.weather-detail-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.weather-forecast {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.forecast-item {
  min-width: 70px;
  text-align: center;
  padding: 0.5rem;
  background: rgba(64, 127, 118, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.forecast-item:hover {
  background: rgba(198, 154, 53, 0.1);
  transform: translateY(-2px);
}

.forecast-day {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.forecast-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.forecast-temp {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

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

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

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

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate(-50px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #366a62;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* Tablet and below */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align: center;
  }

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

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

/* Mobile */
@media (max-width: 480px) {
  .hero-content {
    padding: 0 15px;
  }

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

/* Testimonials Section */
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(64, 127, 118, 0.05) 0%, rgba(198, 154, 53, 0.05) 100%);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.testimonial-author p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Homepage CTA Enhancement Styles */

/* WhatsApp CTA Button - Using Brand Golden */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(198, 154, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.cta-whatsapp:hover::before {
  width: 100%;
}

.cta-whatsapp span,
.cta-whatsapp i {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 154, 53, 0.45);
}

.cta-whatsapp:hover span,
.cta-whatsapp:hover i {
  color: var(--secondary-color);
}

.cta-whatsapp i {
  font-size: 1.3rem;
}

/* WhatsApp on Golden Background - Use Teal */
.section-inline-cta .cta-whatsapp,
.faq-section .cta-whatsapp {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(64, 127, 118, 0.3);
}

.section-inline-cta .cta-whatsapp:hover span,
.section-inline-cta .cta-whatsapp:hover i,
.faq-section .cta-whatsapp:hover span,
.faq-section .cta-whatsapp:hover i {
  color: var(--primary-color);
}

/* Phone CTA */
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(198, 154, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.cta-phone:hover::before {
  width: 100%;
}

.cta-phone span,
.cta-phone i {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 154, 53, 0.45);
}

.cta-phone:hover span,
.cta-phone:hover i {
  color: var(--secondary-color);
}

/* CTA Whitespace Sections - User-First Appeal */
.cta-whitespace-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.cta-whitespace-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Mobile CTA Minimization */
@media (max-width: 768px) {
  .cta-whitespace-section {
    padding: 2rem 1rem;
  }

  .cta-whitespace-content {
    padding: 1.5rem 1rem;
  }

  .cta-headline {
    font-size: 1.5rem !important;
  }

  .cta-subtext {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  .section-inline-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .cta-whatsapp,
  .cta-phone,
  .cta {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .cta-button-group {
    gap: 1rem;
  }
}

.cta-headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--dark-gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* CTA Button Group */
.cta-button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inline CTA within sections */
.section-inline-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(64, 127, 118, 0.15);
  text-align: center;
}

.section-inline-cta p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Capacity Section CTA Enhancement */
.capacity-section .section-inline-cta {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section CTA */
.about .section-inline-cta {
  grid-column: 1 / -1;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Testimonial Section CTA Enhancement */
.testimonials .section-inline-cta {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a54 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: none;
}

.testimonials .section-inline-cta .cta-headline {
  color: var(--white);
}

.testimonials .section-inline-cta .cta-subtext {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

/* FAQ Section CTA */
.faq-section .section-inline-cta {
  background: var(--secondary-color);
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-top: 3rem;
  border: none;
}

.faq-section .section-inline-cta .cta-headline {
  color: var(--white);
}

.faq-section .section-inline-cta .cta-subtext {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

/* Service Link CTA */
.service-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-link-cta:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 127, 118, 0.3);
}

.service-link-cta i {
  font-size: 1rem;
}
