/* --- CSS Variables / Root Design Tokens (ROY MARS Theme) --- */
:root {
  /* Logo Derived Palette */
  --color-gold-light: #f3e0aa;
  --color-gold-primary: #d4af37;
  --color-gold-dark: #9a7432;
  --color-gold-gradient: linear-gradient(135deg, #f3e0aa 0%, #d4af37 50%, #9a7432 100%);
  
  --color-mars-rust: #c1440e;
  --color-text-main: #ffffff;
  --color-text-muted: #e2e8f0;
  --color-dark: #0a0a0a;
  
  /* Overlays & Borders */
  --color-overlay-start: rgba(10, 10, 10, 0.70);
  --color-overlay-end: rgba(10, 10, 10, 0.88);
  --color-outline-border: rgba(212, 175, 55, 0.4);
  --color-outline-hover: rgba(212, 175, 55, 0.15);

  /* Fonts */
  --font-base: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Cinzel Decorative', serif;

  /* Spacing */
  --spacing-container: 30px 80px;
  --border-radius-pill: 50px;

  /* Transitions */
  --transition-fast: color 0.2s ease;
  --transition-smooth: all 0.3s ease;

  /* Z-Indices */
  --z-navbar: 100;
  --z-drawer: 200;
  --z-overlay: 1;
  --z-hero-content: 2;
}

/* --- Custom Font Setup --- */
@font-face {
  font-family: 'Valley Sans';
  src: local('Valley Sans'), local('Valley-Sans');
  font-weight: normal;
  font-style: normal;
}

/* --- Reset & Core Layout --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;  
}

body {
  min-height: 100vh;  
  font-family: var(--font-base);
  color: var(--color-text-main);
  background-color: var(--color-dark);
  overflow-x: hidden;
  position: relative;
}

/* --- Navigation Bar --- */
/* --- Navigation Bar Base --- */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-container);
  z-index: 9999 !important;
   transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* --- Scrolled Blur State --- */
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  padding: 16px 80px !important;
  }

/* Responsive Paddings */
@media screen and (max-width: 992px) {
  .navbar {
    padding: 20px 24px;
  }
  .navbar.scrolled {
    padding: 14px 24px !important;
  }
}

@media screen and (max-width: 576px) {
  .navbar {
    padding: 16px 16px;
  }
  .navbar.scrolled {
    padding: 12px 16px !important;
  }
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hide Mobile Menu Toggle on Desktop */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: invert(75%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

.nav-header-mobile {
  display: none;
}

/* --- Logo Display Rules (PC Default) --- */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-img:hover {
  opacity: 0.9;
}

/* PC Mode: Show PC Logo, Hide Mobile Logo */
.logo-pc {
  display: block;
}

.logo-mobile {
  display: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  font-family: var(--font-base);
}

.nav-item:hover {
  color: var(--color-gold-primary);
}

.mobile-book-btn {
  display: none;
}

/* --- Nav Buttons & Global Button Styles --- */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-family: var(--font-base);
  cursor: pointer;
  line-height: 1;
}

.btn-outline {
  border: 1px solid var(--color-outline-border);
  color: var(--color-text-main);
  background: transparent;
    font-weight: 500 !important;

}

.btn-outline:hover {
  background: var(--color-outline-hover);
  border-color: var(--color-gold-primary);
  color: var(--color-gold-light);
}

.btn-primary {
  background: var(--color-gold-gradient);
  color: var(--color-dark);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --- Custom Image Icon Buttons (Search & World Language) --- */
.icon-btn {
  background: rgba(10, 10, 10, 0.4);
   cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.icon-btn:hover {
  background: rgba(10, 10, 10, 0.7);
  border-color: var(--color-gold-primary);
}

.nav-custom-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: invert(75%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

/* --- Hero Slider Setup --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease-in-out, transform 2s ease-out;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.sub-text, .main-heading {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.text-fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-overlay-start) 0%, var(--color-overlay-end) 100%);
  z-index: var(--z-overlay);
}

.hero-content {
  position: relative;
  z-index: var(--z-hero-content);
  margin-top: 50px;
  max-width: 1000px;
  padding: 0 20px;
}

.sub-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.line {
  width: 50px;
  height: 2px;
  background: var(--color-gold-gradient);
}

.sub-text {
  color: var(--color-gold-light);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-base);
}

.main-heading {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-main);
  margin-bottom: 36px;
 }

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  gap: 12px;
  z-index: var(--z-hero-content);
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
   background: rgba(10, 10, 10, 0.4);
  color: var(--color-gold-light);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background: var(--color-gold-gradient);
  color: var(--color-dark);
 }

 .mobile-book-btn {
  display: none !important;
}
/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES (≤ 992px)
   ========================================================================== */

@media screen and (max-width: 992px) {
  /* Layout Spacing */
  .navbar {
    padding: 20px 24px;
  }

  /* Mobile Mode: Hide PC Logo, Show Mobile Logo */
  .logo-pc {
    display: none !important;
  }

 .mobile-book-btn {
  display: flex !important;
}
  .logo-mobile {
    display: block !important;
    height: 48px;
  }

  /* Show Burger Menu Toggle next to Logo */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-book-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    
     width: 85vw;
    max-width: 300px;
    
    height: 100vh;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 28px;
    gap: 24px;
    z-index: var(--z-drawer);
    
    /* Menu open naha welawata penee thibema walakwata */
    visibility: hidden;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  }

  .nav-links.active {
    left: 0;
    visibility: visible;
  }

  /* Header inside Mobile Drawer */
  .nav-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 10px;
  }

  .nav-header-mobile .logo-mobile {
    height: 40px;
  }

.close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style for the custom close PNG icon */
.close-btn .nav-custom-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  /* Applies the same gold tint as your other nav icons */
  filter: invert(75%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%);
  transition: var(--transition-fast);
}

.close-btn:hover .nav-custom-icon {
  opacity: 0.8;
  transform: scale(1.1);
}

  .nav-item {
    font-size: 18px;
    width: 100%;
    padding: 8px 0;
  }

  .mobile-book-btn {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
  }

  /* Icon Buttons Adjustments */
  .nav-buttons {
    gap: 10px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .nav-custom-icon {
    width: 18px;
    height: 18px;
  }

  /* Hero Typography Responsiveness */
  .hero-content {
    margin-top: 20px;
  }

  .main-heading {
    font-size: 56px;
    margin-bottom: 24px;
  }

  .sub-text {
    font-size: 15px;
  }

  .line {
    width: 30px;
  }

  /* Controls Position */
  .hero-controls {
    right: 24px;
    bottom: 30px;
  }
}

/* Extra Small Devices / Smartphones (≤ 576px) */
@media screen and (max-width: 576px) {
  .navbar {
    padding: 16px 16px;
  }

  .logo-mobile {
    height: 55px;
  }

  .menu-icon {
    width: 28px;
    height: 28px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .nav-custom-icon {
    width: 18px;
    height: 18px;
  }

  .main-heading {
    font-size: 38px;
  }

  .sub-text {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-large {
    width: 100%;
  }

 /* --- HERO CONTROLS: Right-Aligned in Mobile Mode --- */
  .hero-controls {
    position: absolute;
    bottom: 24px;
    right: 16px;       /* Keeps arrows anchored to the right side */
    left: auto;        /* Overrides any auto-centering */
    transform: none;   /* Removes centering transform */
  }

  .control-btn {
    width: 42px;
    height: 42px;
  }
}
/* ==========================================================================
   MOBILE DRAWER SOCIAL LINKS
   ========================================================================== */

/* Hide by default on PC / Desktop */
.drawer-socials-mobile {
  display: none;
}

/* Show only on Mobile & Tablet Drawer (≤ 992px) */
@media screen and (max-width: 992px) {
  .drawer-socials-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: auto; /* Pushes the social icons to the bottom of the drawer */
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .drawer-socials-mobile a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-outline-border);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
  }

  .drawer-socials-mobile a:hover {
    background: var(--color-gold-gradient);
    color: var(--color-dark);
    border-color: var(--color-gold-primary);
    transform: translateY(-2px);
  }
}

/* ==========================================================================
   TOP DESTINATIONS SECTION (CAROUSEL WITH BOTTOM CONTROLS & SWIPE)
   ========================================================================== */

.destinations-section {
  padding: 100px 80px;
  background-color: #ffffff;
  width: 100%;
}

.destinations-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Styles */
.destinations-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.destinations-section .sub-text {
  color: var(--color-gold-dark, #c5a059);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-base, inherit);
}

.destinations-section .section-title {
  font-family: var(--font-heading, inherit);
  font-size: 56px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 8px;
  letter-spacing: -0.5px;
}

/* Slider Wrapper & Tracks */
.destination-slider-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  cursor: grab;
  user-select: none;
}

.destination-slider-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.destination-slider-wrapper:active {
  cursor: grabbing;
}

.destination-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* PC Default: 4 Cards visible */
.destination-card {
  flex: 0 0 310px; /* Fixed sizing across breakpoints */
  scroll-snap-align: start;
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
   transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

.destination-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.destination-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0) 40%, 
    rgba(10, 10, 10, 0.85) 80%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.destination-card .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.destination-name {
  font-family: var(--font-base, inherit);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease;
}

.trip-count {
  font-family: var(--font-base, inherit);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gold-light, #e0c38c);
  letter-spacing: 0.5px;
}

 

.destination-card:hover .card-bg {
  transform: scale(1.08);
}

.destination-card:hover .destination-name {
  color: var(--color-gold-primary, #d4af37);
}

/* Bottom Navigation Controls */
.destinations-controls-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.dest-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #0a0a0a;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.dest-control-btn:hover {
  background: var(--color-gold-gradient, #d4af37);
  color: #000;
  border-color: var(--color-gold-primary, #d4af37);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 992px) {
  .destinations-section {
    padding: 80px 24px;
  }
  
  .destinations-section .section-title {
    font-size: 42px;
  }

  .destination-card {
    flex: 0 0 280px;
    height: 380px;
  }
}

/* Mobile Mode: Fixed single row with peek of next card */
@media screen and (max-width: 576px) {
  .destinations-section {
    padding: 60px 16px;
  }

  .destinations-section .section-title {
    font-size: 32px;
  }

  /* Fixed width showing 1 main card + small preview of next */
  .destination-card {
    flex: 0 0 82vw;
    height: 340px;
  }

  .destinations-controls-bottom {
    margin-top: 20px;
  }

  .dest-control-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}









/* ==========================================================================
   ABOUT US SECTION (BLACK BACKGROUND)
   ========================================================================== */

.about-section {
  padding: 120px 80px;
  background-color: #000000; /* Solid Pure Black Background */
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Column: Images Layout --- */
.about-images {
  position: relative;
  display: flex;
  align-items: center;
  height: 520px;
}

.image-wrapper {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-outline-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* Main Background Image */
.img-main {
  width: 60%;
  height: 85%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Overlapping Front Image */
.img-overlay {
  width: 55%;
  height: 80%;
  bottom: 0;
  right: 5%;
  z-index: 2;
  border: 4px solid #000000; /* Border matches black background */
}

 

.badge-icon {
  font-size: 24px;
  color: var(--color-gold-primary);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-light);
  text-transform: uppercase;
}

.badge-sub {
  font-family: var(--font-base);
  font-size: 11px;
  color: var(--color-text-muted);
}

/* --- Right Column: Content Styles --- */
.section-header-left {
  margin-bottom: 24px;
}

.sub-heading-left {
  justify-content: flex-start !important;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.15;
  margin-top: 10px;
}

.about-description {
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.9;
}

/* --- Stats Grid --- */
.stats-grid {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 20px;
}

.stat-number {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* --- Action Row (Phone + CTA) --- */
.about-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
}

.phone-call {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 12px;
  color: var(--color-text-muted);
}

.phone-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.phone-number:hover {
  color: var(--color-gold-primary);
}
/* Floating Award Badge (PNG Support) */
.award-badge {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--color-text-main);
  backdrop-filter: blur(12px);
   padding: 8px 16px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
 }

/* Custom Award Badge PNG Image Styling */
.award-badge-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Mobile Responsive Size Adjustments */
@media screen and (max-width: 576px) {
  .award-badge {
    padding: 6px 12px;
    top: 50%;
    left: 50%;
  }

  .award-badge-img {
    height: 100px;
  }
}
/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 992px) {
  .about-section {
    padding: 80px 24px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    height: 420px;
  }

  .about-title {
    font-size: 40px;
  }

  .stats-grid {
    gap: 24px;
  }
}

@media screen and (max-width: 576px) {
  .about-section {
    padding: 60px 16px;
  }

  .about-images {
    height: 350px;
  }

  .img-overlay {
    right: 0;
  }

  .award-badge {
    padding: 10px 14px;
    top: 50%;
    left: 50%;
  }

  .badge-icon {
    font-size: 18px;
  }

  .badge-title {
    font-size: 11px;
  }

  .about-title {
    font-size: 32px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* Reduced Stat Number size for mobile mode */
  .stat-number {
    font-size: 24px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .about-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-actions .btn {
    width: 100%;
  }
}







/* ==========================================================================
   FEATURES / BENEFITS SECTION (WHITE BACKGROUND)
   ========================================================================== */

.features-section {
  padding: 60px 80px;
  background-color: #ffffff; /* White Section Background */
  width: 100%;
}

/* Card Container with Clean Light Border & Shadow */
.features-container {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
 }

/* Individual Feature Item */
.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px;
}

/* Gold Circle Wrapper for PNG Icon */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

/* Custom PNG Icon Image Styles */
/* Gold Circle Wrapper (Default Style: Gold Gradient) */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  border: 1px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

/* Custom PNG Icon Image (Default: Dark Icon) */
.feature-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  filter: brightness(0);  
  transition: var(--transition-smooth);
}

 .feature-item:hover .feature-icon {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-gold-primary);
  transform: translateY(-3px);
}

.feature-item:hover .feature-icon-img {
   filter: invert(75%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

.feature-item:hover .feature-icon-img {
  /* Inverts icon color to dark on gold hover */
  filter: brightness(0);
}

/* Feature Typography (Dark Theme Adjusted) */
.feature-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
  line-height: 1.25;
}

.feature-desc {
  font-family: var(--font-base);
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* Vertical Divider Lines Between Cards */
.feature-divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(
    180deg, 
    rgba(212, 175, 55, 0) 0%, 
    rgba(212, 175, 55, 0.3) 50%, 
    rgba(212, 175, 55, 0) 100%
  );
  align-self: center;
}
/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .features-section {
    padding: 40px 24px;
  }

  .features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 36px 28px;
  }

  .feature-divider {
    display: none; /* Hide vertical dividers on mobile grid layout */
  }

  .feature-item {
    padding: 0;
    align-items: center; /* Center items on tablet */
    text-align: center;  /* Center text on tablet */
  }

  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 576px) {
  .features-section {
    padding: 30px 16px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
    text-align: center; /* Center overall content */
  }

  .feature-item {
    align-items: center; /* Center flex contents horizontally */
    text-align: center;  /* Center headings and descriptions */
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    margin-left: auto;   /* Center icon circle */
    margin-right: auto;
  }

  .feature-icon-img {
    width: 22px;
    height: 22px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-desc {
    font-size: 13px;
  }
}


/* ==========================================================================
   TOUR PACK SECTION (CAROUSEL WITH BOTTOM CONTROLS & SWIPE)
   ========================================================================== */

.tour-pack-section {
  padding: 100px 80px;
  background-color: #ffffff;
  width: 100%;
}

.tour-pack-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Adjustments */
.tour-pack-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.tour-pack-section .sub-text {
  color: var(--color-gold-dark, #c5a059);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tour-pack-section .section-title {
  font-family: var(--font-heading, inherit);
  font-size: 52px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 8px;
}

.section-description {
  font-family: var(--font-base, inherit);
  font-size: 15px;
  color: #666666;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider Track Layout */
.tour-slider-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.tour-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.tour-slider-wrapper:active {
  cursor: grabbing;
}

.tour-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* PC Default: Exactly 5 Cards per row */
.tour-card {
  flex: 0 0 calc((1400px - (20px * 4)) / 5); /* ~256px per card */
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

 

/* Image Container & Wishlist Icon */
.tour-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-img {
  transform: scale(1.08);
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(6px);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition-smooth, 0.3s ease);
  z-index: 2;
}

.wishlist-btn:hover {
  background: var(--color-gold-gradient, #d4af37);
  color: var(--color-dark, #000000);
}

/* Card Content Area */
.tour-content {
  padding: 16px 4px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Stack metadata in two separate rows */
.tour-meta {
  display: flex;
  flex-direction: column;
  gap: 4px; /* Space between the location row and duration row */
  margin-bottom: 2px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* Row 1: Location Style */
.meta-item.location-item {
  font-size: 13px;
  color: var(--color-gold-dark, #c5a059);
}

/* Row 2: Duration Style (Smaller Font) */
.meta-item.duration-item {
  font-size: 11px; /* Smaller font size for duration */
  color: #888888;  /* Muted secondary color */
}
.tour-title {
  font-family: var(--font-heading, inherit);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.tour-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-title a:hover {
  color: var(--color-gold-dark, #c5a059);
}

/* Price Formatting (LKR) */
.tour-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.price-current {
  font-family: var(--font-base, inherit);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold-dark, #c5a059);
}

.price-old {
  font-family: var(--font-base, inherit);
  font-size: 13px;
  color: #999999;
  text-decoration: line-through;
}

/* Navigation Controls (Right Aligned) */
.tour-controls-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.tour-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #0a0a0a;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.tour-control-btn:hover {
  background: var(--color-gold-gradient, #d4af37);
  color: #000;
  border-color: var(--color-gold-primary, #d4af37);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1200px) {
  .tour-card {
    flex: 0 0 280px;
  }
}

@media screen and (max-width: 992px) {
  .tour-pack-section {
    padding: 80px 24px;
  }

  .tour-pack-section .section-title {
    font-size: 40px;
  }

  .tour-card {
    flex: 0 0 260px;
  }

  .tour-img-wrapper {
    height: 220px;
  }
}

/* Mobile Mode: 1 Row with 82vw width showing a partial peek */
@media screen and (max-width: 576px) {
  .tour-pack-section {
    padding: 60px 16px;
  }

  .tour-pack-section .section-title {
    font-size: 32px;
  }

  .tour-card {
    flex: 0 0 82vw;
  }

  .tour-img-wrapper {
    height: 250px;
  }

  .tour-controls-bottom {
    margin-top: 20px;
  }

  .tour-control-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}


/* ==========================================================================
   COMMUNITY & VIDEO BANNER SECTION
   ========================================================================== */

.community-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 80px;
  overflow: hidden;
}

/* Full-bleed background image with smooth parallax feel */
.community-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark gradient overlay for visual hierarchy */
.community-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(10, 10, 10, 0.88) 0%, 
    rgba(10, 10, 10, 0.60) 50%, 
    rgba(10, 10, 10, 0.40) 100%
  );
  z-index: 1;
}

/* Layout Container */
.community-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* --- Left Side Content --- */
.community-content {
  max-width: 650px;
}

.community-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.community-subtitle {
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-gold-light);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

/* --- Newsletter Pill Input Box --- */
.newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-base);
  font-size: 15px;
  color: #0a0a0a;
}

.newsletter-input::placeholder {
  color: #888888;
}

.newsletter-btn {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Right Side Video Trigger --- */
.video-trigger-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.play-btn i {
  margin-left: 3px; /* Visual optical centering for play icon */
}

.play-btn:hover {
  background: var(--color-gold-gradient);
  color: var(--color-dark);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.video-label {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 992px) {
  .community-section {
    padding: 70px 24px;
    min-height: auto;
  }

  .community-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .community-title {
    font-size: 40px;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .community-section {
    padding: 50px 16px;
  }

  .community-title {
    font-size: 30px;
  }

  .community-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
  }

  .newsletter-input {
    padding: 8px 4px;
  }

  .newsletter-btn {
    width: 100%;
    border-radius: var(--border-radius-pill);
  }

  .play-btn {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .video-label {
    font-size: 14px;
  }
}



/* ==========================================================================
   TESTIMONIALS SECTION (CAROUSEL WITH SWIPE, DOTS & ARROWS)
   ========================================================================== */

.testimonials-section {
  padding: 100px 80px;
  background-color: #ffffff;
  width: 100%;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Adjustments */
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section .sub-text {
  color: var(--color-gold-dark, #c5a059);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.testimonials-section .section-title {
  font-family: var(--font-heading, inherit);
  font-size: 52px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 8px;
}

/* Slider Track Layout */
.testimonials-slider-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.testimonials-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonials-slider-wrapper:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* PC Default: 5 Cards in 1 Row */
.testimonial-card {
  flex: 0 0 calc((1400px - (20px * 4)) / 5);
  scroll-snap-align: start;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

 

/* User Info Header */
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-family: var(--font-base, inherit);
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
}

.user-location {
  font-family: var(--font-base, inherit);
  font-size: 12px;
  color: #777777;
}

.quote-icon {
  font-size: 18px;
  color: var(--color-gold-dark, #c5a059);
  opacity: 0.8;
}

/* Gold Stars Rating */
.star-rating {
  display: flex;
  gap: 4px;
  color: #ffb703;
  font-size: 13px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-base, inherit);
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
}

/* Footer Bottom Layout (Dots Centered, Arrows Right-Aligned) */
.testimonials-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  position: relative;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e0e0e0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.dot.active {
  background-color: var(--color-gold-dark, #c5a059);
  width: 24px;
  border-radius: 12px;
}

.testimonials-controls-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.test-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #0a0a0a;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.test-control-btn:hover {
  background: var(--color-gold-gradient, #d4af37);
  color: #000;
  border-color: var(--color-gold-primary, #d4af37);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 280px;
  }
}

@media screen and (max-width: 992px) {
  .testimonials-section {
    padding: 80px 24px;
  }

  .testimonials-section .section-title {
    font-size: 40px;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }
}

@media screen and (max-width: 576px) {
  .testimonials-section {
    padding: 60px 16px;
  }

  .testimonials-section .section-title {
    font-size: 32px;
  }

  .testimonial-card {
    flex: 0 0 82vw;
  }

  .testimonials-footer-nav {
    margin-top: 24px;
  }

  .test-control-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}


/* ==========================================================================
   OUR BLOG / TRAVEL TIPS SECTION (CAROUSEL WITH SWIPE & TOP CONTROLS)
   ========================================================================== */

.blog-section {
  padding: 100px 80px;
  background-color: #ffffff;
  width: 100%;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Flex Box (Title on Left, Controls on Right) */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog-header-left .sub-text {
  color: var(--color-gold-dark, #c5a059);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-header-left .section-title {
  font-family: var(--font-heading, inherit);
  font-size: 52px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 8px;
}

/* Navigation Arrow Controls */
.blog-nav-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.blog-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #0a0a0a;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth, 0.3s ease);
}

.blog-control-btn:hover {
  background: var(--color-gold-gradient, #d4af37);
  color: #000;
  border-color: var(--color-gold-primary, #d4af37);
  transform: translateY(-2px);
 }

/* Slider Track Layout */
.blog-slider-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.blog-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.blog-slider-wrapper:active {
  cursor: grabbing;
}

.blog-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* PC Default: 4 Cards in 1 Row */
.blog-card {
  flex: 0 0 calc((1400px - (24px * 3)) / 4); /* ~332px per card */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding-bottom: 12px; 
}

/* Image Container & Hover Zoom Effect */
.blog-img-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-img:hover {
  transform: scale(1.08);
}

/* Article Meta & Content */
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base, inherit);
  font-size: 13px;
  color: #71717a;
}

.blog-date i {
  color: var(--color-gold-dark, #c5a059);
}

.blog-title {
  font-family: var(--font-heading, inherit);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a:hover {
  color: var(--color-gold-dark, #c5a059);
}

/* Read More CTA Link */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-base, inherit);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-dark, #c5a059);
  text-decoration: none;
  margin-top: 0px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.read-more-btn i {
  font-size: 11px;
}

.blog-card:hover .read-more-btn {
  gap: 10px;
  color: #0a0a0a;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1200px) {
  .blog-card {
    flex: 0 0 300px;
  }
}

@media screen and (max-width: 992px) {
  .blog-section {
    padding: 80px 24px;
  }

  .blog-header-left .section-title {
    font-size: 40px;
  }

  .blog-card {
    flex: 0 0 280px;
  }

  .blog-img-wrapper {
    height: 220px;
  }
}

/* Mobile Mode: 1 Row with 82vw width showing next card partial peek */
@media screen and (max-width: 576px) {
  .blog-section {
    padding: 60px 16px;
  }

  .blog-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
  }

  .blog-header-left .section-title {
    font-size: 30px;
  }

  .blog-card {
    flex: 0 0 82vw;
  }

  .blog-img-wrapper {
    height: 230px;
  }

  .blog-control-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}



/* ==========================================================================
   FAQ SECTION (LIGHT THEME - WHITE BACKGROUND)
   ========================================================================== */

.faq-section {
  padding: 100px 80px;
  background-color: #ffffff; /* White background */
  width: 100%;
}

.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* --- Left Image Column --- */
.faq-image-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
 }

.faq-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.faq-image-wrapper:hover .faq-img {
  transform: scale(1.05);
}

/* --- Section Sub-Text Alignment --- */
.faq-section .sub-text {
  color: var(--color-gold-dark, #9a7432);
}

/* --- Right Accordion Column --- */
.faq-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: #0a0a0a; /* Dark text for contrast */
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual Accordion Container */
.faq-item {
  border-bottom: 1px solid #e4e4e7;
  padding-bottom: 16px;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  padding-bottom: 20px;
}

/* Summary Trigger Line */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a; /* Dark text for title */
  cursor: pointer;
  list-style: none; /* Removes native disclosure triangle */
  padding: 12px 0;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none; /* Webkit browser marker reset */
}

.faq-question:hover {
  color: var(--color-gold-dark, #9a7432);
}

/* Toggle Round Button Icon */
.toggle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.toggle-icon:hover,
.faq-item[open] .toggle-icon {
  background: var(--color-gold-gradient);
  color: #000000;
  border-color: var(--color-gold-primary);
  transform: rotate(180deg);
}

/* Accordion Collapsible Text Content */
.faq-answer {
  padding-top: 8px;
  padding-right: 40px;
}

.faq-answer p {
  font-family: var(--font-base);
  font-size: 15px;
  color: #555555; /* Muted dark text for readability */
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 992px) {
  .faq-section {
    padding: 80px 24px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-image-wrapper {
    height: 380px;
  }

  .faq-title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .faq-question {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-image-wrapper {
    height: 280px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }

  .toggle-icon {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}


/* ==========================================================================
   FOOTER SECTION (DARK LUXURY THEME - BLACK BACKGROUND)
   ========================================================================== */

.footer-section {
  padding: 80px 80px 30px 80px;
  background-color: var(--color-dark, #0a0a0a); /* Dark theme background */
  color: var(--color-text-main, #ffffff);
  width: 100%;
 }

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Gold accent divider */
}

/* Brand Column */
.brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted, #e2e8f0);
  max-width: 340px;
  opacity: 0.85;
}

/* Social Media Links */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-outline-border, rgba(212, 175, 55, 0.4));
  color: var(--color-gold-light, #f3e0aa);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--color-gold-gradient);
  color: var(--color-dark, #0a0a0a);
  border-color: var(--color-gold-primary);
  transform: translateY(-2px);
}

/* Column Headings */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main, #ffffff);
  margin-bottom: 20px;
}

/* Navigation & Links Lists */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-text-muted, #e2e8f0);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  opacity: 0.85;
}

.footer-links li a:hover {
  color: var(--color-gold-light, #f3e0aa);
  padding-left: 4px;
  opacity: 1;
}

/* Contact Details List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-text-muted, #e2e8f0);
  line-height: 1.5;
  opacity: 0.85;
}

.footer-contact-list li i {
  color: var(--color-gold-primary, #d4af37);
  margin-top: 3px;
}

.footer-contact-list li a {
  color: var(--color-text-muted, #e2e8f0);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--color-gold-light, #f3e0aa);
  opacity: 1;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.copyright-text {
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--color-text-muted, #e2e8f0);
  opacity: 0.6;
 }

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--color-text-muted, #e2e8f0);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.6;
}

.footer-legal-links a:hover {
  color: var(--color-gold-light, #f3e0aa);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer-section {
    padding: 60px 24px 20px 24px;
    text-align: center; /* Center-align text across the section */
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Center Brand Column Elements */
  .brand-col {
    align-items: center;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-about {
    max-width: 100%;
  }

  /* Center Social Media Buttons */
  .footer-socials {
    justify-content: center;
  }

  /* Center Contact List Items and Icons */
  .footer-contact-list li {
    justify-content: center;
    align-items: center;
  }

  /* Bottom Bar Centering */
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    justify-content: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .footer-section {
    padding: 50px 16px 20px 16px;
  }

  .footer-legal-links {
    flex-wrap: wrap; /* Prevent links from overflowing on smaller screens */
    gap: 12px;
  }
}


/* ==========================================================================
   ROY MARS LUXURY DESTINATION MODAL STYLES
   ========================================================================== */

/* Dark Blurred Overlay */
.dest-modal-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Popup Container */
.dest-modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: #121215;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  overflow-y: auto;
 
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-dark, #9a7432) #1a1a1e;
}

.dest-modal-overlay.active .dest-modal-wrapper {
  transform: scale(1) translateY(0);
}
/* Custom Floating Close Button */
.dest-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom PNG Close Icon Image Styling & Gold Filter Tint */
.dest-close-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  /* Applies matching gold tint matching ROY MARS design system */
  filter: invert(75%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Interaction: Gradient Background & Darkened Icon */
.dest-modal-close:hover {
  background: var(--color-gold-gradient, linear-gradient(135deg, #f3e0aa 0%, #d4af37 50%, #9a7432 100%));
  border-color: var(--color-gold-primary, #d4af37);
  transform: rotate(90deg) scale(1.05);
}

.dest-modal-close:hover .dest-close-icon {
  filter: brightness(0); /* Converts icon to solid dark on gold hover */
}

.dest-modal-close:hover {
  background: var(--color-gold-gradient);
  color: #0a0a0a;
  border-color: var(--color-gold-primary);
  transform: rotate(90deg);
}

/* Grid Layout */
.dest-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
}

/* Left Image Column */
.dest-modal-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #000;
}

.dest-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-modal-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 }

.dest-modal-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 10, 0.75);
   color: var(--color-gold-light, #f3e0aa);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Right Content Column */
.dest-modal-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dest-modal-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--color-gold-primary, #d4af37);
  display: inline-block;
  margin-bottom: 6px;
}

.dest-modal-title {
  font-family: var(--font-heading, 'Cinzel Decorative', serif);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.dest-modal-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 100%);
  margin: 20px 0;
}

.dest-overview-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-light, #f3e0aa);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-overview-label i {
  color: var(--color-gold-primary);
}

.dest-modal-description p {
  font-size: 15px;
  color: #e2e8f0;
  line-height: 1.7;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Action Buttons */
.dest-modal-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.dest-modal-btn {
  flex: 1;
  gap: 10px;
  padding: 14px 24px;
}

.dest-modal-secondary-btn {
  padding: 14px 22px;
}

/* Custom Modal Scrollbar */
.dest-modal-wrapper::-webkit-scrollbar {
  width: 6px;
}
.dest-modal-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark, #9a7432);
  border-radius: 10px;
}

/* Responsive Modal Adjustments */
@media screen and (max-width: 868px) {
  .dest-modal-grid {
    grid-template-columns: 1fr;
  }

  .dest-modal-media {
    height: 240px;
    min-height: 240px;
  }

  .dest-modal-body {
    padding: 28px 24px;
  }

  .dest-modal-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 576px) {
  .dest-modal-overlay {
    padding: 12px;
  }

  .dest-modal-wrapper {
    max-height: 94vh;
    border-radius: 20px;
  }

  .dest-modal-media {
    height: 200px;
    min-height: 200px;
  }

  .dest-modal-title {
    font-size: 26px;
  }

  .dest-modal-footer {
    flex-direction: column;
    width: 100%;
  }

  .dest-modal-btn, 
  .dest-modal-secondary-btn {
    width: 100%;
  }
}



/* ==========================================================================
   ROY MARS LUXURY BLOG & MODAL STYLES
   ========================================================================== */

/* Blog Card Styles */
.blog-card {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

 

.blog-excerpt {
  font-size: 14px;
  color: #a1a1aa;
  margin: 10px 0 14px 0;
  line-height: 1.6;
}

/* Modal Dark Blur Overlay */
.blog-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Popup Wrapper */
.blog-modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  background: #121215;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-dark, #9a7432) #1a1a1e;
}

.blog-modal-overlay.active .blog-modal-wrapper {
  transform: scale(1) translateY(0);
}

/* Floating Gold Close Button */
.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-close-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(75%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.blog-modal-close:hover {
  background: var(--color-gold-gradient, linear-gradient(135deg, #f3e0aa 0%, #d4af37 50%, #9a7432 100%));
  border-color: var(--color-gold-primary, #d4af37);
  transform: rotate(90deg) scale(1.05);
}

.blog-modal-close:hover .blog-close-icon {
  filter: brightness(0);
}

/* Grid Layout */
.blog-modal-grid {
  display: flex;
  flex-direction: column;
}

/* Modal Header Image */
.blog-modal-media {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.blog-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-modal-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 }

.blog-modal-date-badge {
  position: absolute;
  bottom: 20px;
  left: 24px;
  background: rgba(10, 10, 10, 0.8);
   color: var(--color-gold-light, #f3e0aa);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

/* Article Body Content */
.blog-modal-body {
  padding: 36px 40px;
}

.blog-modal-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--color-gold-primary, #d4af37);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.blog-modal-title {
  font-family: var(--font-heading, 'Cinzel Decorative', serif);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.blog-modal-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 100%);
  margin: 22px 0;
}

.blog-full-content {
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.8;
  white-space: pre-line;
}

/* Footer Actions */
.blog-modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.blog-modal-secondary-btn {
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-modal-secondary-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-gold-primary, #d4af37);
}

/* Custom Scrollbar */
.blog-modal-wrapper::-webkit-scrollbar {
  width: 6px;
}

.blog-modal-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark, #9a7432);
  border-radius: 10px;
}

/* Responsive Modal Adjustments */
@media screen and (max-width: 768px) {
  .blog-modal-media {
    height: 220px;
  }

  .blog-modal-body {
    padding: 24px 20px;
  }

  .blog-modal-title {
    font-size: 24px;
  }

  .blog-full-content {
    font-size: 14px;
  }
}



/* ==========================================================================
   CONTACT US SECTION (BLACK LUXURY THEME)
   ========================================================================== */

.contact-section {
  padding: 120px 80px;
  background-color: #000000; /* Pure Black Background */
  position: relative;
  width: 100%;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}

/* --- Left Column Info --- */
.contact-title {
  font-family: var(--font-heading, 'Cinzel Decorative', serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-main, #ffffff);
  line-height: 1.15;
  margin-top: 10px;
}

.contact-description {
  font-family: var(--font-base, sans-serif);
  font-size: 15px;
  color: var(--color-text-muted, #e2e8f0);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.85;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold-primary, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light, #f3e0aa);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
  margin-bottom: 2px;
}

.detail-value {
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.detail-value-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold-light, #f3e0aa);
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-value-link:hover {
  color: var(--color-gold-primary, #d4af37);
}

/* Socials Link Row */
.contact-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.social-label {
  font-size: 14px;
  color: var(--color-text-muted, #e2e8f0);
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-outline-border, rgba(212, 175, 55, 0.4));
  color: var(--color-gold-light, #f3e0aa);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth, all 0.3s ease);
}

.social-links a:hover {
  background: var(--color-gold-gradient, linear-gradient(135deg, #f3e0aa 0%, #d4af37 50%, #9a7432 100%));
  color: #0a0a0a;
  border-color: var(--color-gold-primary, #d4af37);
  transform: translateY(-2px);
}
/* Developer Credit Styling & Clickable Links */
.developer-credit {
  font-family: var(--font-base, sans-serif);
  font-size: 13px;
  color: var(--color-text-muted, #e2e8f0);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
}

.developer-credit .credit-link {
  color: var(--color-gold-light, #f3e0aa);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.developer-credit .credit-link:hover {
  color: var(--color-gold-primary, #d4af37);
  text-decoration: underline;
}

.credit-divider {
  color: var(--color-gold-primary, #d4af37);
  opacity: 0.5;
}

/* Mobile Responsiveness Adjustment */
@media screen and (max-width: 768px) {
  .developer-credit {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
}
/* --- Right Column Form Wrapper --- */
.contact-form-wrapper {
  background: #121215;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.form-title {
  font-family: var(--font-heading, 'Cinzel Decorative', serif);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: #888888;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-light, #f3e0aa);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-base, sans-serif);
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #666666;
}

.form-control:focus {
  border-color: var(--color-gold-primary, #d4af37);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.textarea-control {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .contact-section {
    padding: 80px 24px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-title {
    font-size: 38px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }
}

@media screen and (max-width: 576px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-title {
    font-size: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-socials {
    flex-direction: column;
    align-items: flex-start;
  }
}



