* {
  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 BANNER - Compact Height (Savaari Style) */
.drh-hero {
  position: relative;
  height: 480px;
  background: url("images/background.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

.drh-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.drh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -85px;
}

.drh-hero-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  margin-bottom: 12px;
}

.drh-hero-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* slider arrows */
.drh-hero-arrow {
  position: absolute;
  top: 40%;
  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 BOX - Savaari Overlapping Style */
.drh-booking-box {
  position: absolute;
  z-index: 35;
  bottom: -55px;
  width: 1120px;
  max-width: 94%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 4px 15px rgba(0, 0, 0, 0.04);
  padding: 18px 20px 22px;
  text-align: center;
}

/* SEGMENTED TAB BAR LIKE SAVAARI */
.drh-booking-tabs {
  display: inline-flex;
  gap: 0;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 14px;
  background: #f8fafc;
  width: auto;
  max-width: 100%;
}

.drh-tab {
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  padding: 10px 22px;
  position: relative;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.drh-tab:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.drh-tab:hover {
  color: #ff4a2d;
  background: rgba(255, 74, 45, 0.04);
}

.drh-tab-active {
  background: #ff4a2d !important;
  color: #ffffff !important;
  font-weight: 700;
}

.drh-tab-active::after {
  display: none !important;
}

.drh-tab-active i {
  color: #ffffff !important;
}

.drh-booking-form {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 8px;
  padding-top: 14px;
  width: 100%;
}

.drh-field {
  flex: 1 1 0px;
  min-width: 0;
}

.drh-field-btn {
  flex: 0 0 auto;
  min-width: 130px;
}

.drh-label {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drh-input-wrap {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  min-height: 44px;
  width: 100%;
}

.drh-input-wrap:focus-within {
  border-color: #ff4a2d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 74, 45, 0.12);
}

.drh-input, 
.drh-input-select,
.drh-input-date-time {
  width: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  padding: 0;
  min-width: 0;
  text-overflow: ellipsis;
}

.drh-input-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 18px; /* Space for icon */
  background: none;
}

.drh-input-date-time {
    cursor: pointer;
}

.drh-search-btn {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background: #ff4a2d;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.drh-search-btn:hover {
    background: #e6441b;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 74, 45, 0.25);
}

/* ABOUT */
.drh-about {
  padding: 40px 0 25px;
  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: 36px;
  margin-bottom: 8px;
}

.drh-about-tag {
  font-size: 13px;
  color: #ff4a2d;
  font-weight: 600;
  margin-bottom: 10px;
}

.drh-about-title {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #222;
}

.drh-about-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #777;
  margin-bottom: 14px;
}

.drh-about-btn {
  padding: 14px 22px;
  border-radius: 8px;
}

/* SECTION TITLES */
.drh-section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 300;
  color: #ff4a2d;
  margin-bottom: 2px;
}

.drh-section-subtitle {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

/* WHY */
.drh-why {
  padding: 30px 0;
  background: #fdfdfd;
}

.drh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.drh-why-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 14px 15px;
  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: 55px;
  height: 55px;
  background: rgba(255, 74, 45, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  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: 28px;
  width: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.drh-why-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #1a1a1a;
  line-height: 1.2;
}

.drh-why-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.4;
}

/* SERVICES */
.drh-services {
  padding: 30px 0;
  background: #ffffff;
}

.drh-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.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: 180px;
  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: 18px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.drh-service-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-family: 'Armata', sans-serif;
}

.drh-service-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.drh-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ff4a2d;
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  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: 25px;
  text-align: center;
  font-size: 14px;
  color: #444;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.drh-rating-line b {
  color: #ff4a2d;
}

/* CORPORATE - Compact Section & Reduced Image Size */
.drh-corporate {
  background: linear-gradient(135deg, #eaf1f8 0%, #f4f8fc 100%);
  padding: 35px 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: 0.8fr 1.2fr;
  gap: 35px;
  align-items: center;
}

.drh-corp-image {
  position: relative;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
  transition: transform 0.5s ease;
  max-width: 390px;
  margin: 0 auto;
}

.drh-corp-image:hover {
  transform: scale(1.02);
}

.drh-corp-image img {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.drh-corp-text {
  padding-left: 10px;
}

.drh-corp-title {
  font-size: 13px;
  font-weight: 800;
  color: #ff4a2d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drh-corp-title::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #ff4a2d;
}

.drh-corp-sub {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Armata', sans-serif;
}

.drh-corp-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.drh-corp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.drh-corp-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.drh-corp-feature-item i {
  color: #ff4a2d;
  font-size: 16px;
}

/* CAB TYPES CSS OVERHAUL */
.drh-cabs {
  padding: 30px 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: 16px;
  flex-grow: 1;
}

.drh-cab-card {
  height: 165px;
  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(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.drh-cab-sidebar {
  width: 50px;
  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: 80%;
  width: auto;
  opacity: 0.9;
  object-fit: contain;
}

.drh-cab-body {
  flex-grow: 1;
  padding: 14px 15px;
  position: relative;
}

.drh-cab-name {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-family: 'Armata', sans-serif;
}

.drh-cab-tagline {
  font-size: 10.5px;
  color: #777;
  font-weight: 600;
}

.drh-cab-img {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 155px;
  z-index: 2;
  transition: transform 0.5s ease;
}

.drh-cab-card:hover .drh-cab-img {
  transform: scale(1.08) translateX(-8px);
}

/* 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: none;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

.drh-indicator-bar {
  width: 5px;
  height: 20px;
  background: #d0d0d0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.drh-indicator-bar.active {
  background: #ff4a2d;
  height: 38px;
}

/* VIDEO PROMO */
.drh-video {
  padding: 15px 0 25px;
}

.drh-video-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
}

.drh-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drh-video-offer {
  position: absolute;
  left: 40px;
  top: 35px;
  background: #ff4a2d;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  width: 290px;
}

.drh-video-small {
  font-size: 11px;
  margin-bottom: 4px;
  opacity: 0.95;
}

.drh-video-big {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.drh-video-btn {
  border: none;
  background: #222;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.drh-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 20px;
  color: #fff;
}

/* DESTINATIONS */
.drh-dest {
  padding: 30px 0;
  background: #fcfcfc;
}

.drh-dest-top {
  text-align: center;
  font-size: 13px;
  color: #ff4a2d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.drh-dest-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1a1a1a;
  font-family: 'Armata', sans-serif;
}

.drh-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.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: 180px;
  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: 18px 20px;
  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: 45px 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: 22px 0 25px;
  background: #ffffff;
  text-align: center;
}

.drh-partners-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
  font-family: 'Armata', sans-serif;
}

.drh-partners-sub {
  font-size: 12px;
  color: #ff4a2d;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.drh-partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.drh-partner-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  height: 48px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.drh-partner-box i {
  font-size: 18px;
  color: #64748b;
  transition: color 0.3s ease;
}

.drh-partner-box:hover {
  background: #ffffff;
  border-color: #ff4a2d;
  color: #ff4a2d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 74, 45, 0.12);
}

.drh-partner-box:hover i {
  color: #ff4a2d;
}

/* 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 MEDIA QUERIES */

@media (max-width: 1200px) {
    .drh-container { width: 94%; }
    .drh-booking-box { width: 94%; }
    .drh-hero-title { font-size: 46px; }
    .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: 400px; }
    .drh-hero-content { margin-top: -30px; }
    .drh-hero-title { font-size: 38px; }
    
    .drh-booking-form { 
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    
    /* Strict About Section Overrides (Tablet) */
    .drh-about { padding: 40px 0; }
    .drh-about-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .drh-about-center { order: 1; padding: 0 15px; }
    .drh-about-title { font-size: 32px; 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: 240px; margin: 0; }
    
    .drh-why-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .drh-service-grid, .drh-dest-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .drh-footer-links { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    
    .drh-corp-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .drh-corp-image { max-width: 320px; margin: 0 auto 15px; }
    .drh-corp-text { padding-left: 0; }
    .drh-corp-features { justify-content: center; }
    
    .drh-cab-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
    .drh-hero-title { font-size: 28px; }
    .drh-section-title { font-size: 30px !important; }
    
    /* Swipeable Horizontal Tabs for Mobile */
    .drh-booking-tabs { 
        gap: 8px !important; 
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px !important;
        scrollbar-width: none !important;
    }
    .drh-booking-tabs::-webkit-scrollbar { display: none; }
    .drh-tab { font-size: 12px !important; white-space: nowrap !important; flex-shrink: 0 !important; padding: 6px 14px !important; }
    
    .drh-video-box { height: auto; padding: 30px 20px; }
    .drh-video-offer { position: relative; left: 0; top: 0; width: 100%; margin-bottom: 20px; }
    
    .drh-footer-top { flex-direction: column; gap: 15px; text-align: center; }
    .drh-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .drh-footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    /* Hide bulky desktop hero slider arrows on mobile */
    .drh-hero-arrow { 
        display: none !important; 
    }

    /* Hero Banner Clearance & Compact Height */
    .drh-hero { 
        height: auto !important; 
        min-height: 360px !important; 
        padding: 70px 0 40px !important; 
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        position: relative !important;
    }
    .drh-hero-content { 
        margin-top: 0 !important; 
        margin-bottom: 8px !important;
        text-align: center !important;
        z-index: 10 !important;
        padding: 0 15px !important;
    }
    .drh-hero-title { 
        font-size: 18px !important; 
        line-height: 1.25 !important; 
        color: #ffffff !important;
        font-weight: 800 !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.6) !important;
        margin-bottom: 4px !important;
    }
    .drh-hero-pill { 
        font-size: 10px !important; 
        padding: 4px 12px !important; 
        margin-bottom: 6px !important;
        display: inline-block !important;
        white-space: nowrap !important;
        max-width: 90% !important;
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 50px !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Ultra-Compact Booking Box Position & Layout */
    .drh-booking-box { 
        position: relative !important;
        bottom: auto !important;
        margin: 0 auto -35px !important;
        width: 94% !important; 
        padding: 10px 10px !important;
        border-radius: 14px !important;
        z-index: 35 !important;
    }
    
    /* Booking Tabs Compact Touch Scroll Styling */
    .drh-booking-tabs {
        border-radius: 10px !important;
        margin-bottom: 4px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .drh-booking-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .drh-tab {
        height: 34px !important;
        font-size: 11px !important;
        padding: 0 10px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    /* Form Grid & 2-Column Paired Fields */
    .drh-booking-form { 
        display: flex !important;
        flex-wrap: wrap !important; 
        gap: 6px !important;
        padding-top: 8px !important;
    }
    .drh-booking-form .drh-field {
        flex: 1 1 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .drh-booking-form .drh-field-half,
    .drh-booking-form #field_pickup_date,
    .drh-booking-form #field_pickup_time,
    .drh-booking-form #field_return_date,
    .drh-booking-form #field_return_time {
        display: flex !important;
        flex-direction: column !important;
        flex: 0 0 calc(50% - 3px) !important;
        width: calc(50% - 3px) !important;
        max-width: calc(50% - 3px) !important;
        box-sizing: border-box !important;
    }
    .drh-label {
        font-size: 11px !important;
        margin-bottom: 2px !important;
    }
    .drh-input-wrap {
        min-height: 36px !important;
        height: 36px !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
    }
    .drh-input, 
    .drh-input-select, 
    .drh-input-date-time {
        font-size: 12px !important;
    }
    .drh-booking-form .drh-field-btn button {
        width: 100% !important;
        height: 40px !important;
        font-size: 12.5px !important;
        border-radius: 6px !important;
    }

    /* 3-Column Mobile Grid for Why Us */
    .drh-why-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .drh-why-card { 
        padding: 10px 4px !important; 
        border-radius: 12px !important; 
    }
    .drh-why-icon { 
        width: 36px !important; 
        height: 36px !important; 
        margin: 0 auto 6px !important; 
    }
    .drh-why-icon img, .drh-why-icon i { 
        font-size: 16px !important; 
        height: 16px !important; 
        width: auto !important;
    }
    .drh-why-title { 
        font-size: 10px !important; 
        margin-bottom: 2px !important; 
        line-height: 1.1 !important; 
        font-weight: 900 !important;
        display: block !important;
    }
    .drh-why-desc { 
        font-size: 8px !important; 
        line-height: 1.2 !important; 
        color: #777 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Service Cards - Mobile */
    .drh-service-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .drh-service-img { height: 120px !important; }
    .drh-service-body { padding: 12px 10px !important; }
    .drh-service-title { font-size: 13px !important; margin-bottom: 4px !important; }
    .drh-service-desc { font-size: 10.5px !important; line-height: 1.3 !important; margin-bottom: 8px !important; }
    .drh-service-btn { padding: 6px 12px !important; font-size: 11px !important; }
    
    /* Cab Types - Mobile Grid */
    .drh-cab-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .drh-cab-card { 
        flex-direction: column !important; 
        height: auto !important; 
        padding-bottom: 12px !important;
    }
    .drh-cab-sidebar { 
        width: 100% !important; 
        height: 24px !important; 
        border-radius: 11px 11px 0 0 !important; 
        flex-direction: row !important;
        padding: 0 8px !important;
    }
    .drh-cab-side-logo { height: 60% !important; width: auto !important; }
    .drh-cab-body { padding: 10px 8px !important; text-align: center !important; }
    .drh-cab-name { font-size: 16px !important; margin-bottom: 2px !important; }
    .drh-cab-tagline { font-size: 9.5px !important; }
    .drh-cab-img { 
        width: 90px !important; 
        position: relative !important; 
        right: 0 !important; 
        bottom: 0 !important; 
        margin: 6px auto 0 !important; 
        display: block !important;
    }
    
    /* About Section - Mobile */
    .drh-about { padding: 30px 0 !important; }
    .drh-about-title { font-size: 22px !important; }
    .drh-about-desc { font-size: 11.5px !important; margin-bottom: 12px !important; }
    .drh-about-left { display: none !important; }
    
    /* Corporate Section - Mobile */
    .drh-corporate { padding: 25px 0 !important; }
    .drh-corp-title { 
        font-size: 11px !important; 
        letter-spacing: 1.5px !important; 
        justify-content: center !important; 
        white-space: nowrap !important;
        margin-bottom: 6px !important; 
    }
    .drh-corp-title::after { display: none !important; }
    .drh-corp-sub { font-size: 22px !important; }
    .drh-corp-desc { font-size: 12px !important; line-height: 1.5 !important; }
    .drh-corp-feature-item { font-size: 11.5px !important; }
    
    /* Partners Mobile Grid */
    .drh-partners { padding: 20px 0 !important; }
    .drh-partner-row { gap: 8px !important; justify-content: center !important; }
    .drh-partner-box { 
        padding: 6px 12px !important; 
        height: 38px !important; 
        font-size: 11.5px !important; 
        flex: 0 1 auto !important; 
        border-radius: 10px !important; 
    }
    .drh-partner-box i { font-size: 13px !important; }

    /* Testimonial & Marquee Mobile */
    .drh-test-bg { height: 220px !important; }
    .drh-test-text { top: 20px !important; right: 20px !important; }
    .drh-test-title { font-size: 20px !important; }
    .drh-test-card-item { width: 230px !important; padding: 12px 14px !important; }

    /* Section Padding Tightening */
    .drh-why, .drh-services, .drh-cabs, .drh-dest, .drh-testimonial { 
        padding: 25px 0 !important; 
    }
}

/* --- 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 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    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: 15px;
}

.drh-mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #222;
    cursor: pointer;
}

.drh-mobile-link {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.drh-mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.drh-header2 .drh-mobile-toggle {
    color: #333;
    border-color: rgba(51, 51, 51, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

#particles-js {
  display: none !important;
}

.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;
}