/* ==========================================================================
   DAN LANKA — OFFICIAL FRONTEND STYLESHEET & DESIGN SYSTEM
   Premium Travel UI with Walkers Tours Reference Header & Footer
   ========================================================================== */

/* --- Fonts & Base Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --dl-gold: #fab005;
  --dl-gold-hover: #e09b00;
  --dl-teal: #26b3b8;
  --dl-teal-hover: #1fa0a5;
  --dl-dark: #1c1d1f;
  --dl-dark-nav: rgba(0, 0, 0, 0.88);
  --dl-text: #666666;
  --dl-heading: #222222;
  --dl-light-gray: #f5f5f5;
  --dl-border: #e9ecef;
  --dl-font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --dl-font-heading: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--dl-font-main);
  font-size: 14px;
  line-height: 1.7;
  color: var(--dl-text);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dl-font-heading);
  color: var(--dl-heading);
  font-weight: 700;
  margin-bottom: 15px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

a:hover {
  color: var(--dl-gold);
}

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

.container {
  max-width: 1240px;
}

/* ==========================================================================
   1. HEADER — TRANSPARENT OVERLAY & STICKY BEHAVIOR
   ========================================================================== */
.dl-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
  padding: 20px 0;
  transition: all 0.35s ease;
}

.dl-header-overlay.dl-header-scrolled {
  background: var(--dl-dark-nav);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.dl-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Logo — Desktop Dimensions 115-125px wide */
.dl-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.dl-brand-logo img {
  width: 120px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.dl-brand-logo:hover img {
  transform: scale(1.03);
}

/* Center Desktop Navigation */
.dl-desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0 15px;
}

.dl-nav-link {
  font-family: var(--dl-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 8px 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease, opacity 0.25s ease;
  opacity: 0.92;
  white-space: nowrap;
}

.dl-nav-link:hover {
  opacity: 1;
  color: #ffffff !important;
}

.dl-nav-link.active {
  opacity: 1;
  font-weight: 700;
}

.dl-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Dropdown styling */
.dl-nav-dropdown {
  position: relative;
}

.dl-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 230px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1050;
  list-style: none;
}

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

.dl-nav-dropdown-item {
  display: block;
  padding: 9px 20px;
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dl-nav-dropdown-item:hover,
.dl-nav-dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--dl-gold);
  padding-left: 24px;
}

/* Right Header Controls */
.dl-header-right-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* 1. Circular Search Button */
.dl-btn-search {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dl-btn-search:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: scale(1.05);
}

/* 2. Rounded Pill INQUIRE Button */
.dl-btn-inquire {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 9px 20px;
  color: #ffffff !important;
  font-family: var(--dl-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.dl-btn-inquire i {
  font-size: 14px;
}

.dl-btn-inquire:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 3. Custom Hamburger Button */
.dl-btn-hamburger {
  background: transparent;
  border: none;
  width: 34px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
}

.dl-btn-hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.dl-btn-hamburger:hover span {
  background-color: var(--dl-gold);
}

/* ==========================================================================
   2. HERO VIDEO SECTION (Homepage)
   ========================================================================== */
.dl-hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

.dl-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.dl-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.18) 35%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
}

.dl-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
  text-align: center;
  color: #ffffff;
  margin-top: 25vh;
}

.dl-hero-headline {
  font-family: var(--dl-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.dl-hero-subheadline {
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 35px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

.dl-btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff !important;
  font-family: var(--dl-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.dl-explore-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dl-btn-explore:hover .dl-explore-icon {
  transform: scale(1.1);
  background: #ffffff;
}

.dl-btn-explore:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   INNER PAGE HERO HEADERS (Under Overlay Header)
   ========================================================================== */
.dl-page-hero-inner {
  position: relative;
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}

.dl-page-hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.dl-page-hero-inner.about-hero {
  background-image: url('../images/hero/about-hero-banner.jpg');
}

.dl-page-hero-inner.blog-hero {
  background-image: url('../images/hero/blog-hero-banner.jpg');
}

.dl-page-hero-inner.tours-hero {
  background-image: url('../images/hero/home-tea.jpg');
}

.dl-page-hero-inner.destinations-hero {
  background-image: url('../images/destinations/sigiriya.jpg');
}

.dl-page-hero-inner.accommodation-hero {
  background-image: url('../images/hotels/amari.jpg');
}

.dl-page-hero-inner.contact-hero {
  background-image: url('../images/footer/footer-bg.jpg');
}

.dl-page-hero-inner .dl-inner-hero-title {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin: 0;
}

/* Standard Breadcrumb */
.dl-breadcrumb-bar {
  background-color: #f7f7f7;
  padding: 15px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
}

.dl-breadcrumb-text {
  font-size: 13px;
  color: #777777;
  margin: 0;
}

.dl-breadcrumb-text a {
  color: #777777;
}

.dl-breadcrumb-text a:hover {
  color: var(--dl-gold);
}

.dl-breadcrumb-separator {
  margin: 0 6px;
  color: #aaa;
}

/* ==========================================================================
   HOMEPAGE & INNER PAGE CARDS & SECTIONS
   ========================================================================== */
.dl-home-hero {
  padding: 60px 0 50px;
}

.dl-home-intro-box h2 {
  font-size: 24px;
  font-weight: 800;
  color: #222222;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.dl-home-intro-box p {
  font-size: 13.5px;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.65;
}

.dl-home-collage-img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.dl-home-collage-img:hover {
  transform: translateY(-3px);
}

.dl-home-collage-tall { height: 480px; }
.dl-home-collage-mid { height: 232px; }
.dl-home-collage-sq { height: 190px; }

.dl-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.dl-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.dl-section-header p {
  font-size: 13.5px;
  color: #777777;
  line-height: 1.6;
}

/* Tour Cards */
.dl-tour-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dl-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}

.dl-tour-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dl-tour-card-body {
  padding: 22px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dl-tour-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.dl-tour-card-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.dl-tour-btn {
  background-color: var(--dl-teal);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 2px;
  display: inline-block;
  align-self: flex-start;
  transition: background-color 0.2s ease;
}

.dl-tour-btn:hover {
  background-color: var(--dl-teal-hover);
}

/* Video Feature Section */
.dl-video-feature-section {
  padding: 40px 0;
  margin: 30px 0;
}

.dl-video-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 280px;
}

.dl-video-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dl-video-card:hover .dl-video-card-img {
  transform: scale(1.03);
}

.dl-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.dl-video-overlay h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.dl-testimonial-box {
  padding: 20px 10px 20px 30px;
}

.dl-testimonial-title {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 6px;
}

.dl-rating-stars {
  color: var(--dl-teal);
  font-size: 14px;
  margin-bottom: 15px;
}

.dl-testimonial-quote {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.dl-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 20px;
}

.dl-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

/* Accommodation Cards */
.dl-hotel-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dl-hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.dl-hotel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dl-hotel-title {
  padding: 14px 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: #222;
  background: #ffffff;
  margin: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-btn-loadmore {
  background-color: var(--dl-teal);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 2px;
  border: none;
  display: inline-block;
  transition: background-color 0.2s ease;
  margin: 15px auto 40px;
}

.dl-btn-loadmore:hover {
  background-color: var(--dl-teal-hover);
}

/* Blog Cards */
.dl-blog-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.dl-blog-card:hover {
  transform: translateY(-3px);
}

.dl-blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dl-blog-body {
  padding: 18px 16px 14px;
}

.dl-blog-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 42px;
}

.dl-blog-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f2f2f2;
  padding-top: 10px;
  margin-top: 10px;
}

/* Day Tours Grid Cards */
.dl-day-tour-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 35px;
  transition: transform 0.3s ease;
}

.dl-day-tour-card:hover {
  transform: translateY(-3px);
}

.dl-day-tour-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.dl-day-tour-footer {
  padding: 16px 15px;
  background: #ffffff;
  text-align: left;
}

.dl-day-tour-footer h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* Destination Cards */
.dl-destination-card {
  position: relative;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  height: 210px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dl-destination-card:hover {
  transform: translateY(-3px);
}

.dl-destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dl-destination-card:hover .dl-destination-img {
  transform: scale(1.05);
}

.dl-destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
}

.dl-destination-overlay h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  letter-spacing: 0.3px;
}

/* 10 Good Reasons Cards */
.dl-reasons-block {
  margin-bottom: 30px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dl-reasons-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.dl-reasons-content {
  padding: 30px 25px;
  flex-grow: 1;
}

.dl-reasons-content h2 {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.dl-reasons-content p {
  font-size: 13.5px;
  line-height: 1.7;
}

.dl-theme-white { background-color: #ffffff; color: #555555; border: 1px solid #eaeaea; }
.dl-theme-white h2 { color: #222222; }
.dl-theme-green { background-color: #3bb738; color: #ffffff; }
.dl-theme-green h2 { color: #ffffff; }
.dl-theme-red { background-color: #d93838; color: #ffffff; }
.dl-theme-red h2 { color: #ffffff; }
.dl-theme-purple { background-color: #7b1fa2; color: #ffffff; }
.dl-theme-purple h2 { color: #ffffff; }
.dl-theme-blue { background-color: #1265c7; color: #ffffff; }
.dl-theme-blue h2 { color: #ffffff; }
.dl-theme-orange { background-color: #e58a22; color: #ffffff; }
.dl-theme-orange h2 { color: #ffffff; }

/* About Us Section Styles */
.dl-chairman-section { margin: 30px 0 50px; }
.dl-chairman-img { width: 190px; height: 235px; object-fit: cover; border-radius: 2px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.dl-chairman-quote { font-size: 13.5px; color: #555; line-height: 1.75; margin-bottom: 18px; }
.dl-chairman-name { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 2px; }
.dl-chairman-title { font-size: 13px; font-weight: 600; color: #666; }

.dl-value-card { text-align: center; padding: 15px 10px; margin-bottom: 25px; }
.dl-value-icon {
  width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--dl-teal);
  color: var(--dl-teal); display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px; transition: all 0.3s ease;
}
.dl-value-card:hover .dl-value-icon { background-color: var(--dl-teal); color: #ffffff; transform: translateY(-3px); }
.dl-value-title { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 10px; }
.dl-value-desc { font-size: 13px; color: #666; line-height: 1.6; }

.dl-tagline-banner {
  text-align: center; padding: 45px 0 35px; font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-style: italic; font-weight: 700; color: #333333; letter-spacing: 0.5px;
}

/* Traveling by Design Q&A and Form */
.dl-qa-list { margin: 30px 0 40px; }
.dl-qa-item {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid #eeeeee; font-size: 14px; color: #444444; font-weight: 600;
}
.dl-qa-icon { color: #bbb; font-size: 16px; font-weight: 700; }

.dl-travel-form-card { background: #ffffff; padding: 30px 20px; margin-bottom: 40px; }
.dl-form-label { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px; }
.dl-form-control { border: 1px solid #ccc; border-radius: 2px; padding: 8px 12px; font-size: 13.5px; color: #444; width: 100%; }
.dl-form-control:focus { border-color: var(--dl-teal); box-shadow: 0 0 0 2px rgba(38, 179, 184, 0.2); outline: none; }
.dl-form-radio-group { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 6px; }
.dl-form-check-label { font-size: 13px; color: #555; }

/* Why Choose Cards */
.dl-feature-card { padding: 20px 15px; margin-bottom: 30px; }
.dl-feature-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.dl-feature-checkbox { width: 16px; height: 16px; border: 2px solid var(--dl-teal); border-radius: 2px; margin-top: 3px; flex-shrink: 0; }
.dl-feature-title { font-size: 16px; font-weight: 700; color: #222; margin: 0; }
.dl-feature-text { font-size: 13.5px; color: #666; line-height: 1.65; }

/* Contact Us Styles */
.dl-contact-form-box { padding-right: 25px; }
.dl-contact-form-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 25px; }
.dl-office-box { background: #ffffff; padding: 10px 0 20px 20px; }
.dl-office-box h2 { font-size: 20px; font-weight: 800; margin-bottom: 18px; }
.dl-office-address { font-size: 15px; color: #2a3f85; font-weight: 600; margin-bottom: 12px; line-height: 1.5; }
.dl-office-meta { font-size: 14px; color: #333; margin-bottom: 8px; }
.dl-office-meta strong { color: #111; }
.dl-office-meta a { color: #1a56db; }
.dl-social-row { display: flex; gap: 12px; margin: 20px 0; }
.dl-social-btn { width: 40px; height: 40px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 20px; }
.dl-social-facebook { background-color: #3b5998; }
.dl-social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.dl-social-twitter { background-color: #1da1f2; }
.dl-chat-box { border: 1px solid #eaeaea; border-radius: 4px; padding: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 20px; }
.dl-chat-icon-wp { font-size: 40px; color: #25d366; }
.dl-chat-icon-vb { font-size: 40px; color: #7360f2; }
.dl-chat-numbers { font-size: 15px; font-weight: 700; color: #1240a6; line-height: 1.6; }

/* ==========================================================================
   3. FOOTER — CINEMATIC FOOTER WITH ELLA NINE ARCH BRIDGE BACKGROUND
   ========================================================================== */
.dl-footer-cinematic {
  position: relative;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.86)
  ), url('../images/footer/footer-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 85px 0 0;
  margin-top: 50px;
}

.dl-footer-cinematic a {
  color: #e5e5e5;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dl-footer-cinematic a:hover {
  color: #ffffff;
}

.dl-footer-col-title {
  font-family: var(--dl-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Col 1: Contact info */
.dl-footer-info-group {
  margin-bottom: 22px;
}

.dl-footer-info-label {
  font-family: var(--dl-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.dl-footer-info-val {
  font-size: 13.5px;
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

/* Col 2: Quick links */
.dl-footer-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-footer-quick-links li {
  margin-bottom: 9px;
}

.dl-footer-quick-links a {
  font-size: 13.5px;
  color: #d1d5db;
  display: inline-block;
}

.dl-footer-quick-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Col 3: Newsletter input */
.dl-newsletter-box {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.dl-newsletter-input {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0 58px 0 24px;
  color: #ffffff;
  font-size: 13.5px;
  transition: all 0.3s ease;
}

.dl-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.dl-newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.dl-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dl-newsletter-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: scale(1.05);
}

/* Social Icons */
.dl-footer-social-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.dl-footer-social-link {
  color: #ffffff !important;
  font-size: 20px;
  opacity: 0.9;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dl-footer-social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--dl-gold) !important;
}

/* Footer Bottom Row */
.dl-footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 55px;
  padding: 22px 0 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.dl-footer-bottom-row a {
  color: rgba(255, 255, 255, 0.7);
}

.dl-footer-bottom-row a:hover {
  color: #ffffff;
}

.dl-footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dl-footer-legal-links span {
  opacity: 0.4;
}

/* ==========================================================================
   4. FLOATING ACTION BUTTONS (WhatsApp, Chat, Back-to-Top)
   ========================================================================== */
.dl-floating-widgets {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* WhatsApp Floating Button */
.dl-floating-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dl-floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

/* Chat / Inquire Floating Button */
.dl-floating-chat {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #1a73e8;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 18px rgba(26, 115, 232, 0.45);
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dl-floating-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(26, 115, 232, 0.6);
}

/* Back To Top Floating Button */
.dl-floating-backtotop {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.dl-floating-backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dl-floating-backtotop:hover {
  background: rgba(15, 17, 21, 1);
  transform: translateY(-3px);
}

/* ==========================================================================
   5. SEARCH OVERLAY MODAL & OFFCANVAS MOBILE DRAWER
   ========================================================================== */
.dl-search-modal .modal-content {
  background: rgba(12, 14, 18, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  padding: 30px;
}

.dl-search-modal-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 14px 25px;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.dl-search-modal-input:focus {
  outline: none;
  border-color: var(--dl-gold);
}

/* Offcanvas Menu */
.dl-offcanvas {
  background: rgba(12, 14, 18, 0.98);
  backdrop-filter: blur(16px);
  color: #ffffff;
  width: 320px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dl-offcanvas .btn-close {
  filter: invert(1);
}

.dl-offcanvas-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.dl-offcanvas-links li {
  margin-bottom: 12px;
}

.dl-offcanvas-links a {
  font-family: var(--dl-font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e5e5e5;
  display: block;
  padding: 6px 0;
}

.dl-offcanvas-links a:hover,
.dl-offcanvas-links a.active {
  color: var(--dl-gold);
  padding-left: 6px;
}

/* ==========================================================================
   6. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199px) {
  .dl-desktop-nav {
    display: none;
  }
  .dl-header-container {
    padding: 0 30px;
  }
  .dl-brand-logo img {
    width: 105px;
    max-height: 36px;
  }
  .dl-btn-inquire {
    display: none;
  }
  .dl-hero-headline {
    font-size: 36px;
  }
  .dl-hero-subheadline {
    font-size: 16px;
  }
  .dl-page-hero-inner {
    height: 300px;
    padding-top: 60px;
  }
  .dl-page-hero-inner .dl-inner-hero-title {
    font-size: 30px;
  }
  .dl-footer-cinematic {
    padding: 60px 0 0;
  }
}

@media (max-width: 767px) {
  .dl-header-overlay {
    padding: 14px 0;
  }
  .dl-header-container {
    padding: 0 16px;
  }
  .dl-brand-logo img {
    width: 92px;
    max-height: 32px;
  }
  .dl-hero-content {
    margin-top: 20vh;
  }
  .dl-hero-headline {
    font-size: 28px;
  }
  .dl-hero-subheadline {
    font-size: 14.5px;
  }
  .dl-floating-widgets {
    right: 15px;
    bottom: 15px;
  }
  .dl-floating-whatsapp,
  .dl-floating-chat {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
  .dl-footer-legal-links {
    margin-top: 10px;
    justify-content: flex-start;
  }
}
