* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.drh-hero-title,
.drh-section-title,
.drh-about-title {
  font-family: 'Armata', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
  max-width: 100%;
}

.drh-container {
  width: 1300px;
  max-width: 95%;
  margin: 0 auto;
}

/* HEADER */
.drh-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 18px 0;
}

.drh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drh-nav-left {
  display: flex;
  gap: 18px;
}

.drh-nav-link {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.drh-nav-link:hover {
  opacity: 1;
}

.drh-logo-img {
  height: 28px;
}

.drh-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drh-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drh-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.drh-btn-primary {
  background: #ff4a2d;
  color: #fff;
}

.drh-user {
  position: relative;
}

.drh-user-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  cursor: pointer;
}

.drh-user-dropdown {
  position: absolute;
  right: 0;
  top: 45px;
  background: #fff;
  border-radius: 6px;
  width: 140px;
  padding: 8px;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.drh-user:hover .drh-user-dropdown {
  display: block;
}

.drh-user-item {
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
}

.drh-user-item:hover {
  background: #f2f2f2;
}

/* HERO */
.drh-hero {
  position: relative;
  height: 720px;
  background: url("images/background.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drh-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
}

.drh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -120px;
}

.drh-hero-pill {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 18px;
}

.drh-hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}

/* slider arrows */
.drh-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.drh-hero-arrow.drh-left {
  left: 30px;
}

.drh-hero-arrow.drh-right {
  right: 30px;
}

/* BOOKING */
.drh-booking-box {
  position: absolute;
  z-index: 5;
  bottom: 90px;
  width: 1100px;
  max-width: 92%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  padding: 18px 18px 20px;
}

.drh-booking-tabs {
  display: flex;
  gap: 30px;
  justify-content: center;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 12px;
}

.drh-tab {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
}

.drh-tab-active {
  font-weight: 600;
}

.drh-tab-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: #ff4a2d;
  border-radius: 2px;
}

.drh-booking-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 0.9fr 0.7fr;
  gap: 14px;
  padding-top: 16px;
  align-items: end;
}

.drh-label {
  font-size: 13px;
  color: #666;
  display: block;
  margin-bottom: 6px;
}

.drh-input-wrap {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  min-height: 48px;
}

.drh-input-wrap:focus-within {
  border-color: #ff4a2d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 74, 45, 0.1);
}

.drh-input, 
.drh-input-select,
.drh-input-date-time {
  width: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 0;
}

.drh-input-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 25px; /* Space for icon */
  background: none;
}

.drh-input-date-time {
    cursor: pointer;
}

.drh-search-btn {
  width: 100%;
  height: 48px; /* Match min-height of input-wrap */
  border-radius: 10px;
  background: #ff4a2d;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.drh-search-btn:hover {
    background: #e6441b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 74, 45, 0.25);
}

/* ABOUT */
.drh-about {
  padding: 90px 0;
  background: #fff;
}

.drh-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.drh-about-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.drh-img-big {
  width: 280px;
  margin-left: auto;
}

.drh-img-small {
  width: 220px;
  margin-top: 18px;
  margin-left: 30px;
}

.drh-img-right {
  width: 300px;
  margin-right: auto;
}

.drh-img-right-small {
  width: 220px;
  margin-top: 20px;
  margin-left: 180px;
}

.drh-about-center {
  text-align: center;
}

.drh-about-logo {
  height: 40px;
  margin-bottom: 10px;
}

.drh-about-tag {
  font-size: 13px;
  color: #ff4a2d;
  font-weight: 600;
  margin-bottom: 14px;
}

.drh-about-title {
  font-size: 44px;
  font-weight: 300;
  margin-bottom: 12px;
  color: #222;
}

.drh-about-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 18px;
}

.drh-about-btn {
  padding: 18px 25px;
  border-radius: 8px;
}

/* SECTION TITLES */
.drh-section-title {
  text-align: center;
  font-size: 46px;
  font-weight: 300;
  color: #ff4a2d;
  margin-bottom: 8px;
}

.drh-section-subtitle {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 40px;
}

/* WHY */
.drh-why {
  padding: 100px 0;
  background: #fdfdfd;
}

.drh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.drh-why-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.drh-why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ff4a2d;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.drh-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 74, 45, 0.1);
}

.drh-why-card:hover::after {
  transform: scaleX(1);
}

.drh-why-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 74, 45, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.drh-why-card:hover .drh-why-icon {
  transform: rotate(10deg) scale(1.1);
  background: rgba(255, 74, 45, 0.1);
}

.drh-why-icon img {
  height: 40px;
  width: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.drh-why-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.2;
}

.drh-why-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* SERVICES */
.drh-services {
  padding: 100px 0;
  background: #ffffff;
}

.drh-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.drh-service-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.drh-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 74, 45, 0.1);
}

.drh-service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.drh-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.drh-service-card:hover .drh-service-img img {
  transform: scale(1.15);
}

.drh-service-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.drh-service-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-family: 'Armata', sans-serif;
}

.drh-service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.drh-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ff4a2d;
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  width: fit-content;
}

.drh-service-btn:hover {
  background: #e63e24;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 74, 45, 0.3);
}

.drh-service-btn::after {
  content: '\f178';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.drh-service-btn:hover::after {
  transform: translateX(3px);
}

.drh-rating-line {
  margin-top: 45px;
  text-align: center;
  font-size: 15px;
  color: #444;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.drh-rating-line b {
  color: #ff4a2d;
}

/* CORPORATE */
.drh-corporate {
  background: linear-gradient(135deg, #eaf1f8 0%, #f4f8fc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.drh-corporate::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 74, 45, 0.03);
  border-radius: 50%;
}

.drh-corp-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.drh-corp-image {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}

.drh-corp-image:hover {
  transform: scale(1.02);
}

.drh-corp-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.drh-corp-text {
  padding-left: 20px;
}

.drh-corp-title {
  font-size: 16px;
  font-weight: 800;
  color: #ff4a2d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drh-corp-title::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #ff4a2d;
}

.drh-corp-sub {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-family: 'Armata', sans-serif;
}

.drh-corp-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.drh-corp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.drh-corp-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.drh-corp-feature-item i {
  color: #ff4a2d;
  font-size: 18px;
}

/* CAB TYPES CSS OVERHAUL */
.drh-cabs {
  padding: 100px 0;
  background: #ffffff;
}

.drh-cab-grid-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.drh-cab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex-grow: 1;
}

.drh-cab-card {
  height: 220px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  display: flex;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.drh-cab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.drh-cab-sidebar {
  width: 60px;
  height: 100%;
  border-radius: 11px 0 0 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.drh-cab-side-logo {
  height: 85%;
  width: auto;
  opacity: 0.9;
  object-fit: contain;
}

.drh-cab-body {
  flex-grow: 1;
  padding: 25px 20px;
  position: relative;
}

.drh-cab-name {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-family: 'Armata', sans-serif;
}

.drh-cab-tagline {
  font-size: 11px;
  color: #777;
  font-weight: 600;
}

.drh-cab-img {
  position: absolute;
  bottom: 0;
  right: -15px;
  width: 200px;
  z-index: 2;
  transition: transform 0.5s ease;
}

.drh-cab-card:hover .drh-cab-img {
  transform: scale(1.08) translateX(-10px);
}

/* Color Themes */
.drh-cab-red {
  border-color: rgba(255, 74, 45, 0.1);
}

.drh-cab-red .drh-cab-sidebar {
  background: #ff4a2d;
}

.drh-cab-yellow {
  border-color: rgba(255, 159, 28, 0.1);
}

.drh-cab-yellow .drh-cab-sidebar {
  background: #ff9f1c;
}

.drh-cab-green {
  border-color: rgba(46, 204, 113, 0.1);
}

.drh-cab-green .drh-cab-sidebar {
  background: #2ecc71;
}

.drh-cab-dark {
  border-color: rgba(51, 51, 51, 0.1);
}

.drh-cab-dark .drh-cab-sidebar {
  background: #333333;
}

/* Grid Slider Indicator */
.drh-grid-indicator {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 30px;
}

.drh-indicator-bar {
  width: 5px;
  height: 25px;
  background: #d0d0d0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.drh-indicator-bar.active {
  background: #ff4a2d;
  height: 45px;
}

/* VIDEO PROMO */
.drh-video {
  padding: 40px 0 80px;
}

.drh-video-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
}

.drh-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drh-video-offer {
  position: absolute;
  left: 60px;
  top: 70px;
  background: #ff4a2d;
  padding: 22px 26px;
  border-radius: 8px;
  color: #fff;
  width: 330px;
}

.drh-video-small {
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.95;
}

.drh-video-big {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.drh-video-btn {
  border: none;
  background: #222;
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.drh-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 24px;
  color: #fff;
}

/* DESTINATIONS */
.drh-dest {
  padding: 100px 0;
  background: #fcfcfc;
}

.drh-dest-top {
  text-align: center;
  font-size: 14px;
  color: #ff4a2d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.drh-dest-title {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #1a1a1a;
  font-family: 'Armata', sans-serif;
}

.drh-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.drh-dest-card {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.drh-dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 74, 45, 0.1);
}

.drh-dest-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.drh-dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.drh-dest-card:hover .drh-dest-img img {
  transform: scale(1.15);
}

.drh-dest-badge {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.drh-badge-green {
  background: #2ecc71;
}

.drh-badge-orange {
  background: #ff9f1c;
}

.drh-dest-heart {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.drh-dest-heart:hover {
  background: #ff4a2d;
  color: #fff;
  transform: scale(1.1);
}

.drh-dest-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drh-dest-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.4;
  flex-grow: 1;
}

.drh-dest-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.drh-dest-meta i {
  color: #ff4a2d;
  width: 16px;
}

.drh-dest-review {
  font-size: 13px;
  color: #444;
  font-weight: 700;
  margin-top: 10px;
}

.drh-dest-review span {
  color: #ff9f1c;
}

/* TESTIMONIAL */
.drh-testimonial {
  padding: 80px 0;
  background: #fff;
}

.drh-test-inner {
  position: relative;
}

.drh-test-bg img {
  width: 100%;
  border-radius: 16px;
  height: 360px;
  object-fit: cover;
}

.drh-test-text {
  position: absolute;
  top: 60px;
  right: 120px;
  text-align: left;
  color: #fff;
}

.drh-test-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
}

.drh-test-cards {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.drh-test-card {
  width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.drh-test-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.drh-test-user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.drh-test-name {
  font-size: 13px;
  font-weight: 700;
}

.drh-test-role {
  font-size: 11px;
  color: #777;
}

.drh-test-msg {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.drh-stars {
  font-size: 12px;
  color: #ffcc00;
}

.drh-test-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.drh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.drh-dot-active {
  background: #fff;
}

/* THEMATIC DECORATIONS */
.drh-why,
.drh-services,
.drh-dest {
  position: relative;
  overflow: hidden;
}

.drh-why::before,
.drh-services::before,
.drh-dest::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  background-image: url('/images/book1.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.drh-why::before {
  bottom: -50px;
  right: -100px;
  transform: rotate(-15deg);
}

.drh-services::before {
  top: 50px;
  left: -150px;
  transform: rotate(15deg) scaleX(-1);
}

.drh-dest::before {
  bottom: 0;
  right: -100px;
  opacity: 0.04;
}

/* Ensure content stays above decorations */
.drh-container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) {

  .drh-why::before,
  .drh-services::before,
  .drh-dest::before {
    display: none;
  }
}

/* PARTNERS */
.drh-partners {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.drh-partners-title {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin-bottom: 5px;
  font-family: 'Armata', sans-serif;
}

.drh-partners-sub {
  font-size: 18px;
  color: #ff4a2d;
  font-family: 'Inter', sans-serif;
  margin-bottom: 60px;
}

.drh-partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.drh-partner-box {
  width: 140px;
  height: 70px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #444;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.drh-partner-box:hover {
  background: #d0d0d0;
  transform: scale(1.05);
}

/* FOOTER */
.drh-footer {
  background: #cfd7df;
  padding: 50px 0 20px;
}

.drh-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
}

.drh-footer-logo {
  height: 28px;
}

.drh-footer-phone {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #222;
}

.drh-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drh-social-label {
  font-size: 13px;
  color: #444;
}

.drh-social-link {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #222;
  font-size: 12px;
}

.drh-footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 20px 0;
}

.drh-footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.drh-footer-link {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  opacity: 0.9;
}

.drh-footer-link:hover {
  opacity: 1;
}

.drh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 15px;
  margin-top: 10px;
}

.drh-copy {
  font-size: 12px;
  color: #333;
}

.drh-footer-mini-links {
  display: flex;
  gap: 12px;
}

.drh-footer-mini-links a {
  font-size: 12px;
  text-decoration: none;
  color: #333;
}

.drh-footer-lang {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #333;
}

.drh-lang-select {
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* RESPONSIVE */
/* --- COMPREHENSIVE RESPONSIVENESS (MEDIA QUERIES) --- */

@media (max-width: 1200px) {
    .drh-container { width: 95%; }
    .drh-booking-box { width: 95%; bottom: 60px; }
    .drh-hero-title { font-size: 54px; }
    .drh-about-inner { grid-template-columns: 1fr 1fr; }
    .drh-about-right { display: none; }
}

@media (max-width: 991px) {
    .drh-nav-left, .drh-nav-right .drh-btn:not(.drh-btn-primary), .drh-nav-links-desktop { display: none !important; }
    .drh-mobile-toggle { display: flex !important; }
    
    .drh-hero { height: 600px; }
    .drh-hero-content { margin-top: -60px; }
    .drh-hero-title { font-size: 42px; }
    
    .drh-booking-form { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    /* Make the button span full width on tablet */
    .drh-booking-form .drh-field-btn {
        grid-column: 1 / -1;
    }
    
    /* Strict About Section Overrides (Tablet) */
    .drh-about { padding: 80px 0; }
    .drh-about-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .drh-about-center { order: 1; padding: 0 15px; }
    .drh-about-title { font-size: 38px; line-height: 1.2; }
    .drh-about-left { order: 2; display: flex; justify-content: center; align-items: center; gap: 15px; width: 100%; }
    .drh-img-big, .drh-img-small, .drh-img-right, .drh-img-right-small { width: calc(50% - 15px); max-width: 280px; margin: 0; }
    
    .drh-why-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .drh-service-grid, .drh-dest-grid, .drh-footer-links { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .drh-corp-inner { grid-template-columns: 1fr; text-align: center; }
    .drh-corp-text { padding-left: 0; }
    .drh-corp-features { justify-content: center; }
    
    .drh-cab-grid { grid-template-columns: repeat(2, 1fr); }
    
    .drh-test-inner { padding: 40px 0; }
    .drh-test-bg { height: 450px; }
    .drh-test-text { position: relative; top: 0; right: 0; text-align: center; color: #222; margin-bottom: 40px; }
    .drh-test-title { color: #222; font-size: 32px; }
    .drh-test-cards { position: relative; bottom: 0; flex-direction: row; flex-wrap: wrap; justify-content: center; transform: none; left: 0; }
}

@media (max-width: 768px) {
    .drh-hero-title { font-size: 32px; }
    .drh-section-title { font-size: 34px; }
    
    /* Swipeable Horizontal Tabs for Mobile */
    .drh-booking-tabs { 
        gap: 15px; 
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .drh-booking-tabs::-webkit-scrollbar { display: none; }
    .drh-tab { font-size: 13px; white-space: nowrap; flex-shrink: 0; }
    
    .drh-video-box { height: auto; padding: 40px 20px; }
    .drh-video-offer { position: relative; left: 0; top: 0; width: 100%; margin-bottom: 30px; }
    
    .drh-footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .drh-footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 600px) {
    /* Compact 2-column Date/Time trick, while keeping core fields 1-column */
    .drh-booking-form { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    .drh-booking-form .drh-field {
        grid-column: span 1; /* Date/Time fields take 50% width */
    }
    .drh-booking-form #field_pickup,
    .drh-booking-form #field_drop,
    .drh-booking-form #field_airport,
    .drh-booking-form #field_toll,
    .drh-booking-form #field_package,
    .drh-booking-form .drh-field-btn {
        grid-column: 1 / -1; /* Dropdowns and Buttons take 100% width */
    }
    
    /* Adjust Hero to naturally push content instead of overlapping */
    .drh-booking-box {
        position: relative;
        bottom: auto;
        margin-top: 30px;
        margin-bottom: -50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .drh-hero {
        height: auto;
        padding: 110px 0 100px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .drh-hero-content {
        margin-top: 0;
    }
    .drh-hero-title { font-size: 28px; }
    .drh-hero-pill { font-size: 14px; padding: 8px 18px; }

    /* Modern 3-Column Grid for Why Us on Mobile */
    .drh-why-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    .drh-service-grid, 
    .drh-cab-grid { 
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 10px !important;
    }
    
    .drh-section-title { font-size: 24px !important; margin-bottom: 5px; }
    .drh-section-subtitle { font-size: 12px; margin-bottom: 25px; }

    /* Why Us - ULTRA Compact Optimization for 3-Column Mobile */
    .drh-why-card { 
        padding: 15px 4px !important; 
        border-radius: 12px; 
    }
    .drh-why-icon { 
        width: 38px !important; 
        height: 38px !important; 
        margin-bottom: 10px !important; 
    }
    .drh-why-icon img, .drh-why-icon i { 
        font-size: 16px !important; 
        height: 18px !important; 
        width: auto !important;
    }
    .drh-why-title { 
        font-size: 10px !important; 
        margin-bottom: 3px !important; 
        line-height: 1.1 !important; 
        letter-spacing: -0.2px !important;
        font-weight: 900 !important;
        display: block !important;
    }
    .drh-why-desc { 
        font-size: 8.5px !important; 
        line-height: 1.2 !important; 
        color: #777 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Services - Compact */
    .drh-service-img { height: 120px !important; }
    .drh-service-body { padding: 12px; }
    .drh-service-title { font-size: 14px; margin-bottom: 5px; }
    .drh-service-desc { font-size: 11px; line-height: 1.4; margin-bottom: 0; }
    
    /* Cab Types - Stacked Layout for 2-col */
    .drh-cab-card { 
        flex-direction: column; 
        height: auto; 
        padding-bottom: 15px;
    }
    .drh-cab-sidebar { 
        width: 100%; 
        height: 30px; 
        border-radius: 11px 11px 0 0; 
        flex-direction: row;
        padding: 0 10px;
    }
    .drh-cab-side-logo { height: 70%; width: auto; }
    .drh-cab-body { padding: 12px; text-align: center; }
    .drh-cab-name { font-size: 18px; margin-bottom: 2px; }
    .drh-cab-tagline { font-size: 10px; }
    .drh-cab-img { 
        width: 100px !important; 
        position: relative !important; 
        right: 0 !important; 
        bottom: 0 !important; 
        margin: 10px auto 0; 
        display: block;
    }
    
    /* About Section */
    .drh-about { padding: 40px 0; }
    .drh-about-title { font-size: 24px; }
    .drh-about-desc { font-size: 12px; margin-bottom: 15px; }
    .drh-about-inner { grid-template-columns: 1fr; }
    .drh-about-left { display: none; } /* Hide about images on mobile */
    
    /* Corporate */
    .drh-corp-sub { font-size: 24px; }
    .drh-corp-desc { font-size: 13px; line-height: 1.6; }
    .drh-corp-feature-item { font-size: 12px; }
    
    /* Partners */
    .drh-partner-box { width: 100px; height: 50px; }
    .drh-partner-box i { font-size: 1.4em !important; }

    /* Testimonial Background */
    .drh-test-bg { display: none; }

    /* Tighten section spacing */
    .drh-why, .drh-services, .drh-cabs, .drh-dest, .drh-testimonial, .drh-partners { 
        padding: 40px 0 !important; 
    }
    
    .drh-header-inner { padding: 0 15px; }
}

/* --- MOBILE MENU OVERLAY --- */
.drh-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.drh-mobile-nav.active {
    right: 0;
}

.drh-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.drh-mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #222;
    cursor: pointer;
}

.drh-mobile-link {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.drh-mobile-toggle {
    display: none;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.drh-header2 .drh-mobile-toggle {
    color: #333;
    border-color: #33333333;
    background: #ffffff99;
}

.drh-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    backdrop-filter: blur(4px);
}

.drh-overlay.active {
    display: block;
}