/* HuluLangat.com - Global Styles */
:root {
  /* New Brand Colors - Based on Logo */
  --primary: #B8860B;      /* Bronze/Dark Goldenrod - Main brand color */
  --secondary: #F5F5DC;    /* Beige/Cream - Warm neutral background */
  --accent: #8B4513;       /* Saddle Brown - Rich accent color */

  /* Supporting Colors */
  --black: #2C1810;        /* Warm dark brown instead of pure black */
  --gray: #8B7355;         /* Warm gray that complements bronze */
  --bg: #FEFCF7;           /* Warm white background */
  --white: #fff;

  /* Legacy support (will be phased out) */
  --yellow: var(--primary);
}

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

body {
  font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--bg);
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Header Flex - For consistent header layout */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

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

.nav a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--black);
}

.nav .cta {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav .cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 800px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-section {
  display: flex;
  flex-direction: column;
}

.dropdown-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--yellow);
}

.dropdown-section a {
  color: var(--gray);
  text-decoration: none;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-radius: 6px;
  padding-left: 0.5rem;
}

.dropdown-section a:hover {
  color: var(--black);
  background: var(--bg);
  padding-left: 1rem;
}

.dropdown-footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.view-all-btn {
  background: var(--yellow);
  color: var(--black);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.view-all-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 217, 77, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Main Content */
.main {
  min-height: calc(100vh - 140px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
  border-bottom: 3px solid var(--primary);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
  opacity: 0.9;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--black);
  opacity: 0.8;
  line-height: 1.6;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  color: var(--black);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Experience Cards Grid - GetYourGuide Style */
#experiences-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

.experience-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: none !important;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  position: relative;
}

.experience-card .card-image {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-card .card-content {
  padding: 1.5rem;
}

.experience-card .card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.experience-card .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black);
  line-height: 1.3;
}

.experience-card .card-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.experience-card .card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.experience-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.experience-card .card-tag {
  background: #f1f5f9;
  color: var(--gray);
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.experience-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experience-card .card-price {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 700;
}

.experience-card .card-price-old {
  color: var(--gray);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.experience-card .card-cta {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.card h3 {
  color: var(--black);
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

/* Flight Widget */
.flight-widget-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp Forms */
.whatsapp-form {
  background: #25d366;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.whatsapp-form h3 {
  color: white;
  margin-bottom: 1rem;
}

.whatsapp-form .btn {
  background: white;
  color: #25d366;
  font-weight: 700;
}

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

.section-alt {
  background: var(--white);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 1rem;
}

/* Footer Enhancements */
.footer a:hover {
  color: var(--yellow) !important;
  transform: translateX(2px);
  transition: all 0.3s ease;
}

.footer h4 {
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.footer h5 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Rental & Transfer Page Styles */
.services-selection {
  padding: 4rem 0;
  background: var(--bg);
}

.services-selection h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--black);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card.active {
  border-color: var(--yellow);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

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

.service-card p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray);
}

.service-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.service-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
}

.car-rental-section,
.airport-transfer-section {
  padding: 4rem 0;
}

.car-rental-section h2,
.airport-transfer-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: var(--black);
}

.car-rental-section p,
.airport-transfer-section p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.rental-widget-container {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transfer-booking-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
}

.pricing-info {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.pricing-info h3 {
  margin-bottom: 1rem;
  color: var(--black);
  text-align: center;
}

.rate-grid {
  display: grid;
  gap: 0.75rem;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
}

.rate-item .route {
  color: var(--gray);
  font-weight: 500;
}

.rate-item .price {
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
}

.book-transfer-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.book-transfer-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
}

/* Villa Page Styles */
.terrapong-villa-section {
  padding: 4rem 0;
  background: var(--bg);
}

.villa-header {
  text-align: center;
  margin-bottom: 3rem;
}

.villa-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.villa-tagline {
  font-size: 1.2rem;
  color: var(--gray);
  font-style: italic;
}

.villa-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.villa-description {
  flex: 2;
}

.villa-gallery {
  flex: 1;
}

.villa-description h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.villa-description > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.villa-amenities {
  margin: 2.5rem 0;
}

.villa-amenities h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.amenity {
  color: var(--gray);
  font-size: 0.95rem;
}

.villa-experience {
  margin: 2.5rem 0;
}

.villa-experience h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.experience-list {
  list-style: none;
  padding: 0;
}

.experience-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--gray);
  line-height: 1.6;
}

.experience-list li:last-child {
  border-bottom: none;
}

.villa-booking {
  margin-top: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.booking-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.price-note {
  font-size: 0.9rem;
  color: var(--gray);
}

.villa-book-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.villa-book-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item.main-image {
  grid-row: span 2;
}

.image-placeholder {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.gallery-item.main-image .image-placeholder {
  height: 300px;
}

.image-placeholder span {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.image-placeholder p {
  font-weight: 600;
  margin: 0;
}

.other-accommodation {
  padding: 4rem 0;
}

.other-accommodation h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.accommodation-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.accommodation-card .card-image {
  position: relative;
  height: 180px;
}

.accommodation-card .image-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.accommodation-card .card-content {
  padding: 1.5rem;
}

.accommodation-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.location {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  background: var(--bg);
  color: var(--gray);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.accommodation-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accommodation-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.book-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #f1c40f;
  transform: translateY(-1px);
}

.accommodation-note {
  text-align: center;
  padding: 2rem;
  background: var(--bg);
  border-radius: 12px;
  margin-top: 2rem;
}

.accommodation-note p {
  color: var(--gray);
  font-style: italic;
  margin: 0;
}

/* Affiliate Pages Styles */
.affiliate-categories {
  padding: 4rem 0;
  background: var(--bg);
}

.categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.categories-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
}

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

.category-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--yellow);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.category-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg);
  color: var(--gray);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.category-cta {
  margin-top: 1rem;
}

.cta-text {
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.1rem;
}

.affiliate-note {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.note-content h4 {
  color: var(--black);
  margin-bottom: 1rem;
}

.note-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.why-affiliates {
  padding: 4rem 0;
}

.why-affiliates h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.benefit-item p {
  color: var(--gray);
  line-height: 1.6;
}

.affiliate-cta {
  padding: 4rem 0;
  background: var(--bg);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Affiliate Product Pages */
.affiliate-products {
  padding: 4rem 0;
}

.affiliate-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card.featured {
  border-color: var(--yellow);
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-header {
  text-align: center;
  margin-bottom: 2rem;
}

.product-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
}

.period {
  color: var(--gray);
  font-size: 1rem;
}

.product-features {
  margin-bottom: 2rem;
}

.feature {
  padding: 0.5rem 0;
  color: var(--gray);
  border-bottom: 1px solid var(--bg);
}

.feature:last-child {
  border-bottom: none;
}

.product-details {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.product-details p {
  margin: 0.5rem 0;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-details strong {
  color: var(--black);
}

.product-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg);
  color: var(--black);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.product-btn.primary:hover {
  background: #e6b800;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.how-it-works {
  background: var(--bg);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.how-it-works h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--black);
}

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

.step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.step p {
  color: var(--gray);
  line-height: 1.5;
}

.affiliate-support {
  padding: 4rem 0;
  background: var(--bg);
}

.support-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.support-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.support-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    gap: 1rem;
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  /* Mobile Dropdown Adjustments */
  .dropdown-menu {
    min-width: 100vw;
    left: -1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: 70vh;
    overflow-y: auto;
  }

  .dropdown-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .dropdown-section a {
    padding: 0.6rem 0.5rem;
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  /* Mobile Footer Styles */
  .footer div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .footer div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }

  .footer h4 {
    font-size: 1rem !important;
  }

  /* Rental & Transfer Mobile Styles */
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .transfer-booking-form {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .rate-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .services-selection h2 {
    font-size: 2rem;
  }

  .car-rental-section h2,
  .airport-transfer-section h2 {
    font-size: 1.8rem;
  }

  /* Villa Page Mobile Styles */
  .villa-content {
    flex-direction: column;
  }

  .villa-gallery {
    margin-top: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .villa-header h2 {
    font-size: 2rem;
  }

  .other-accommodation h2 {
    font-size: 1.8rem;
  }

  .footer h5 {
    font-size: 0.85rem !important;
  }

  .footer a, .footer span {
    font-size: 0.85rem !important;
  }

  .footer div[style*="display: grid"][style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* GetYourGuide Style Enhancements */
.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}

.category-filter:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
  transform: translateY(-2px);
}

.category-filter.active {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
}

/* Search Bar Enhancements */
#experience-search:focus {
  outline: none;
}

#experience-search::placeholder {
  color: #9ca3af;
}

/* Mobile Responsive for GetYourGuide Style */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem !important;
  }

  .hero p {
    font-size: 1.1rem !important;
  }

  .category-filter {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .experience-card {
    margin-bottom: 1.5rem;
  }

  #experiences-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Affiliate Disclosure */
.affiliate-notice {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  padding: 1rem;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: #92400e;
}

/* Partnership Pages Styling */
.partnership-types {
    padding: 4rem 0;
    background: var(--bg);
}

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

.partnership-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.partnership-card.featured {
    border-color: var(--yellow);
    transform: scale(1.02);
}

.partnership-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.partnership-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    background: var(--bg);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partnership-benefits {
    text-align: left;
    margin: 1.5rem 0;
}

.partnership-benefits .benefit {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.partnership-cta {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--yellow);
    border-radius: 12px;
    font-weight: 600;
    color: var(--black);
}

.cta-text {
    font-size: 1.1rem;
}

/* Partnership Form Styling */
.partnership-form {
    padding: 4rem 0;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
    color: var(--black);
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--black);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.form-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 4rem 0;
    background: var(--bg);
}

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

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Advertising Options Section */
.advertising-options {
    padding: 4rem 0;
    background: white;
}

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

.option-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.option-card.featured {
    background: white;
    border-color: var(--yellow);
    transform: scale(1.02);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.option-features {
    text-align: left;
    margin: 1.5rem 0;
}

.option-features .feature {
    padding: 0.3rem 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.option-price {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--yellow);
    border-radius: 12px;
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
}

/* Why Partner Section */
.why-partner {
    padding: 4rem 0;
    background: var(--bg);
}

.why-partner h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
}

/* Success Stories Section */
.success-stories {
    padding: 4rem 0;
    background: white;
}

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

.story-card {
    background: var(--bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.story-card .story-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.story-card h4 {
    margin-bottom: 1rem;
    color: var(--black);
}

.story-card p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
}

/* Partnership Requirements Section */
.partnership-requirements {
    padding: 4rem 0;
    background: var(--bg);
}

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

.requirement-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
}

.requirement-category h4 {
    margin-bottom: 1.5rem;
    color: var(--black);
    font-size: 1.2rem;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.requirement-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

/* Partnership Contact Section */
.partnership-contact {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.partnership-contact h2 {
    margin-bottom: 1rem;
    color: var(--black);
}

.partnership-contact p {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.whatsapp-cta {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
