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

:root {
  --primary: #1099ED;
  --primary-dark: #0d7fc4;
  --secondary: #EBAC28;
  --secondary-dark: #d4991f;
  --dark: #1A1A2E;
  --white: #FFFFFF;
  --gray: #f8f9fa;
  --gray-dark: #6c757d;
  --text: #333333;
  --text-light: #666666;
  --border: #e9ecef;
  --shadow: 0 5px 25px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(16, 153, 237, 0.1);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 153, 237, 0.3);
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235, 172, 40, 0.3);
}

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

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

/* ======== HEADER ======== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

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

.header.scrolled .logo {
  color: var(--dark);
}

.header:not(.scrolled) .logo {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  position: relative;
  padding: 5px 0;
}

.header:not(.scrolled) .nav-link {
  color: var(--white);
}

.header.scrolled .nav-link {
  color: var(--dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary) !important;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.nav-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.header:not(.scrolled) .nav-social a {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.header.scrolled .nav-social a {
  color: var(--dark);
  border: 1px solid var(--border);
}

.nav-social a:hover {
  background: var(--primary);
  color: var(--white) !important;
  border-color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.header:not(.scrolled) .hamburger span {
  background: var(--white);
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(16,153,237,0.4) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(235, 172, 40, 0.15);
  border: 1px solid rgba(235, 172, 40, 0.3);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary), #f5c842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
}

.hero-stat p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ======== DESTINATIONS ======== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.destination-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

.destination-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.destination-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.destination-card-body {
  padding: 25px;
}

.destination-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.destination-card-body p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.destination-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border-top: 1px solid var(--border);
}

.destination-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.destination-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

/* ======== MODAL ======== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0,0,0,0.8);
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-body {
  padding: 30px;
}

.modal-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.modal-body .destination-price {
  display: inline-block;
  margin-bottom: 20px;
}

.modal-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.modal-info-item {
  background: var(--gray);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.modal-info-item i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.modal-info-item span {
  font-size: 13px;
  color: var(--text-light);
}

.modal-programs {
  margin-bottom: 25px;
}

.modal-programs-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.modal-program-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gray);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.modal-program-item.selected {
  background: #e8f4fe;
  border-color: var(--primary);
}

.modal-program-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.modal-program-info i.fa-file-pdf {
  color: #e74c3c;
  font-size: 18px;
}

.modal-program-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-program-select {
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.btn-program-select:hover {
  background: var(--primary-dark, #0a7bcc);
  transform: scale(1.02);
}

.modal-program-item.selected .btn-program-select {
  background: #27ae60;
}

.btn-program-view {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

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

/* ======== ABOUT ======== */
.about-section {
  background: var(--gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
}

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

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--primary), transparent);
  opacity: 0.1;
}

.about-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 153, 237, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* ======== TESTIMONIALS ======== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}

.testimonial-author h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ======== BLOG ======== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 25px;
}

.blog-card-date {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-card-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* ======== CONTACT ======== */
.contact-section {
  background: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.contact-detail i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-detail-text {
  display: block;
}

.contact-detail .contact-detail-text > span {
  font-size: 15px;
  color: var(--text-light);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.contact-social a:nth-child(1) { background: #25D366; color: white; }
.contact-social a:nth-child(2) { background: #E4405F; color: white; }
.contact-social a:nth-child(3) { background: #000; color: white; }
.contact-social a:nth-child(4) { background: #1877F2; color: white; }

.contact-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-form {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #e74c3c;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 153, 237, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.phone-group {
  display: flex;
  gap: 8px;
}

.phone-country {
  width: 130px;
  flex-shrink: 0;
  padding: 13px 8px !important;
  font-size: 14px !important;
}

.phone-number {
  flex: 1;
  min-width: 0;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.form-success i {
  font-size: 60px;
  color: #2ecc71;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}

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

/* ======== BLOG PAGE HEADER ======== */
.page-header {
  padding: 150px 0 60px;
  background: linear-gradient(135deg, #1A1A2E, #16213E);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* ======== ABOUT PAGE ======== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.value-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 153, 237, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ======== CTA SECTION ======== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #0d7fc4);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-section .btn {
  font-size: 16px;
  padding: 16px 40px;
}

/* ======== WHATSAPP FLOATING ======== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}

/* ======== FOOTER ======== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  text-decoration: none;
  color: inherit;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ======== SCROLL ANIMATIONS ======== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utilities */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }

  .about-grid {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    align-items: flex-start;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .header:not(.scrolled) .nav-link {
    color: var(--dark);
  }

  .nav-social {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-social a {
    border-color: var(--border);
    color: var(--dark) !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .whatsapp-float {
    width: 42px;
    height: 42px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }

  .call-float {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .chatbot-panel {
    max-width: calc(100vw - 40px);
  }

  .chatbot-btn {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 20px;
    left: 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .phone-group {
    flex-direction: column;
    gap: 8px;
  }

  .phone-country {
    width: 100% !important;
  }

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

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

  .about-image {
    height: 300px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-content {
    margin: 10px;
  }

  .modal-body {
    padding: 20px;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .destination-card-image {
    height: 200px;
  }

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

  .cta-section h2 {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-stat h3 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero .container {
    padding-top: 70px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-section p {
    font-size: 15px;
  }

  .cta-section .btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-detail i {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .contact-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .form-submit {
    padding: 14px;
    font-size: 15px;
  }

  .destination-card-body {
    padding: 18px;
  }

  .destination-card-body h3 {
    font-size: 18px;
  }

  .destination-card-footer {
    padding: 12px 18px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-card-body h3 {
    font-size: 17px;
  }

  .modal-image {
    height: 180px;
  }

  .modal-body h2 {
    font-size: 22px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer h4 {
    font-size: 16px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-grid {
    gap: 25px;
  }

  .logo {
    font-size: 16px;
  }

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

/* ======== LANGUAGE SWITCHER ======== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: flex;
  gap: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 3px;
}

.header.scrolled .lang-switcher {
  background: var(--gray);
}

.lang-btn {
  padding: 5px 11px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.header.scrolled .lang-btn {
  color: var(--text-light);
}

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

.lang-btn:not(.active):hover {
  color: var(--white);
}

.header.scrolled .lang-btn:not(.active):hover {
  color: var(--dark);
}

.call-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.header.scrolled .call-btn {
  background: var(--gray);
  color: var(--dark);
}

.call-btn:hover {
  background: #25D366 !important;
  color: var(--white) !important;
  border-color: #25D366 !important;
}

/* ======== CALL FLOATING BUTTON ======== */
.call-float {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(16, 153, 237, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(16, 153, 237, 0.5);
  color: white;
}

.call-float-tooltip {
  position: absolute;
  right: 60px;
  background: var(--white);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.call-float:hover .call-float-tooltip {
  opacity: 1;
}

/* ======== RTL ======== */
body.rtl {
  font-family: 'Tajawal', 'Poppins', sans-serif;
}

body.rtl .nav {
  direction: rtl;
}

body.rtl .nav-social {
  margin-left: 0;
  margin-right: 20px;
}

body.rtl .modal-close {
  right: auto;
  left: 15px;
}

body.rtl .destination-card-tag {
  left: auto;
  right: 15px;
}

body:not(.rtl) .chatbot-panel {
  left: 20px;
  right: auto;
}

body:not(.rtl) .chatbot-btn {
  left: 20px;
  right: auto;
}

body.rtl .hero-buttons {
  flex-direction: row;
}

body.rtl .whatsapp-float {
  right: auto;
  left: 25px;
}

body.rtl .call-float {
  right: auto;
  left: 25px;
}

body.rtl .whatsapp-float-tooltip {
  right: auto;
  left: 70px;
}

body.rtl .call-float-tooltip {
  right: auto;
  left: 60px;
}

body.rtl .chatbot-btn {
  left: auto;
  right: 20px;
}

body.rtl .contact-detail {
  flex-direction: row-reverse;
}

body.rtl .contact-detail h4,
body.rtl .contact-detail .contact-detail-text > span {
  text-align: left;
}

body.rtl .about-feature {
  flex-direction: row;
}

body.rtl select.form-control {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 40px;
}

body.rtl .footer-links a i {
  transform: scaleX(-1);
}

body.rtl .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

@media (max-width: 768px) {
  body.rtl .nav {
    right: auto;
    left: -100%;
  }

  body.rtl .nav.open {
    left: 0;
    right: auto;
  }

  .header-actions {
    gap: 6px;
  }

  .call-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 11px;
  }

  .call-float {
    width: 44px;
    height: 44px;
    font-size: 17px;
    bottom: 85px;
  }
}

/* ======== CHATBOT ======== */
.chatbot-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(16, 153, 237, 0.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.chatbot-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(16, 153, 237, 0.5);
  color: white;
}

.chatbot-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}

.chatbot-overlay.open {
  display: block;
}

.chatbot-panel {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 1000;
  width: 380px;
  max-height: 560px;
  height: calc(100vh - 160px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatbotIn 0.3s ease;
}

@keyframes chatbotIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-panel.open {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), #0d7fc4);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.chatbot-header-info {
  flex: 1;
  min-width: 0;
}

.chatbot-header-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
}

.chatbot-header-info p {
  font-size: 12px;
  opacity: 0.85;
  margin: 0;
}

.chatbot-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-close-btn:hover {
  background: rgba(255,255,255,0.3);
}

.chatbot-langs {
  display: flex;
  gap: 4px;
  padding: 10px 20px;
  background: var(--gray);
  border-bottom: 1px solid var(--border);
}

.chatbot-lang-btn {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  transition: var(--transition);
}

.chatbot-lang-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.chatbot-lang-btn:not(.active):hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafbfc;
}

.chatbot-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.chatbot-msg-bot {
  background: var(--white);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.chatbot-msg-user {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-typing {
  background: var(--white);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.typing-dots span {
  animation: dotPulse 1.4s infinite;
  opacity: 0;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%, 60%, 100% { opacity: 0; }
  30% { opacity: 1; }
}

.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.chatbot-input-area input {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: 25px;
  font-size: 16px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

.chatbot-input-area input:focus {
  border-color: var(--primary);
}

.chatbot-input-area button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-input-area button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

body.rtl .chatbot-panel {
  left: auto;
  right: 20px;
}

body.rtl .chatbot-msg-bot {
  align-self: flex-end;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 4px;
}

body.rtl .chatbot-msg-user {
  align-self: flex-start;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 4px;
}

body.rtl .chatbot-header {
  flex-direction: row;
}

body.rtl .chatbot-langs {
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .chatbot-panel {
    left: 10px !important;
    right: 10px !important;
    width: auto;
    bottom: 80px;
    max-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
  }

  .chatbot-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 20px;
    left: 15px;
  }

  body.rtl .chatbot-btn {
    left: auto;
    right: 15px;
  }
}
