/*******************************************************************
  Kalya Peace Village - Refined CSS Part 1
  Critical & Above-the-Fold Styles
  Author: Danilo Rama & Leonardo 
*******************************************************************/

/*------------------------------------------------------------------
[Part 1 Contents]
1. CSS Variables & Base Styles
2. Typography System
3. Layout & Grid
4. Header & Navigation
5. Hero Section
6. Core Components
-------------------------------------------------------------------*/

/*========================================
  1. CSS VARIABLES & BASE STYLES
==========================================*/

:root {
  /* Color Palette */
  --primary-gold: #dfa974;
  --primary-gold-hover: #c08d5d;
  --dark-text: #19191a;
  --body-text: #6b6b6b;
  --light-text: #707079;
  --warm-bg: #fff2e5;
  --white: #ffffff;
  --dark-bg: #222736;
  --light-gray: #aaaab3;
  --border-light: #ebebeb;
  --highlight-bg: #fff8dc;
  --success: #28a745;
  --error: #dc3545;
  --whatsapp: #25d366;
  
  /* Typography */
  --font-primary: 'Cabin', system-ui, -apple-system, sans-serif;
  --font-heading: 'Lora', serif;
  
  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 30px;
  --spacing-lg: 50px;
  --spacing-xl: 100px;
  
  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 5px;
  --radius-lg: 8px;
  --radius-round: 50px;
  --radius-circle: 50%;
  
  /* Shadows */
  --shadow-sm: 0 3px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 14px 35px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index Scale */
  --z-dropdown: 99;
  --z-sticky: 100;
  --z-fixed: 999;
  --z-modal: 9999;
  --z-tooltip: 99999;
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--warm-bg);
  overflow-x: hidden;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*========================================
  2. TYPOGRAPHY SYSTEM
==========================================*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

h1 { font-size: clamp(40px, 8vw, 70px); }
h2 { font-size: clamp(30px, 5vw, 44px); }
h3 { font-size: clamp(24px, 4vw, 30px); }
h4 { font-size: clamp(20px, 3vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  font-size: 16px;
  line-height: 1.625;
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--body-text);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover, a:focus {
  color: var(--primary-gold-hover);
  outline: none;
}

/* Focus visible for accessibility */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*========================================
  3. LAYOUT & GRID SYSTEM
==========================================*/

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Flexbox Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-2, .col-lg-3, .col-lg-4, 
.col-lg-5, .col-lg-6, .col-lg-7, 
.col-lg-8, .col-lg-10, .col-lg-12 {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 992px) {
  .col-lg-2 { width: 16.666%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
  .col-lg-10 { width: 83.333%; }
  .col-lg-12 { width: 100%; }
}

@media (min-width: 768px) {
  .col-sm-6 { width: 50%; }
}

/* Spacing Utilities */
.spad {
  padding: var(--spacing-xl) 0;
}

.spad-2 {
  padding: var(--spacing-lg) 0 70px;
}

/*========================================
  4. CORE COMPONENTS
==========================================*/

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  display: block;
  font-size: 14px;
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 44px);
  color: var(--dark-text);
  line-height: 1.3;
  margin-top: var(--spacing-xs);
}

/* Buttons */
.primary-btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
  text-align: center;
}

.primary-btn:hover {
  background: var(--primary-gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.primary-btn:active {
  transform: translateY(0);
}

.primary-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--primary-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.about-btn {
  color: var(--dark-text);
  background: transparent;
  border: 2px solid var(--primary-gold);
}

.about-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Backgrounds */
.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: opacity var(--transition-base);
}

.set-bg:not(.bg-loaded) {
  background-color: var(--warm-bg);
}

.set-bg.bg-loaded {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utility Classes */
.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white h5, .text-white h6,
.text-white p, .text-white span, .text-white li,
.text-white a {
  color: var(--white) !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*========================================
  5. PRELOADER
==========================================*/

#preloder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: var(--z-tooltip);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--primary-gold);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



/*========================================
  7. HERO SECTION
==========================================*/

.hero-section {
  position: relative;
  min-height: 590px;
  padding: var(--spacing-md) 0 var(--spacing-xl);
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

.hero-text {
  padding-top: 145px;
}

.hero-text h1 {
	font-size: 100px;
	font-weight: 700;
	line-height: 90px;
	color: #ff630b;
	margin-bottom: 16px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-text p {
	font-size: 18px;
	color: #ffffff;
	line-height: 28px;
	margin-bottom: 35px;
}

.hero-text p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-logo {
  width: 100px;
  height: auto;
  transition: transform var(--transition-base);
}

.hero-logo:hover {
  transform: scale(1.1);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .hs-item {
  height: 100%;
}

.hs-item {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 590px;
}

.hs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-slider.owl-carousel .owl-dots {
  position: absolute;
  bottom: 23px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.hero-slider.owl-carousel .owl-dots button {
  width: 6px;
  height: 6px;
  background: var(--white);
  opacity: 0.5;
  border-radius: var(--radius-circle);
  margin-right: var(--spacing-xs);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.hero-slider.owl-carousel .owl-dots button.active {
  width: 30px;
  opacity: 1;
  border-radius: var(--radius-round);
}

.hero-slider .owl-item {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slider .owl-item.active {
  opacity: 1;
}

/*========================================
  END OF PART 1
  Continue with Part 2 for remaining styles
==========================================*/
/*******************************************************************
  Kalya Peace Village - Refined CSS Part 2
  Extended Component & Page Styles
  Author: Optimized for Performance
*******************************************************************/

/*------------------------------------------------------------------
[Part 2 Contents]
1. About Section
2. Services Section
3. Activities & Blog
4. Rooms Section
5. Footer
6. Forms & Interactive Elements
7. Responsive Design
8. Animations & Effects
-------------------------------------------------------------------*/

/*========================================
  1. ABOUT SECTION
==========================================*/
.aboutus-section {
  background: var(--white);
}

.about-text {
  text-align: center;
  padding: 0 35px;
}

.about-text p {
  color: #595960;
  font-weight: 500;
  line-height: 1.75;
}

.about-text .f-para {
  margin-bottom: var(--spacing-xs);
}

.about-text .s-para {
  margin-bottom: 35px;
}

.about-text .highlight {
  background: var(--highlight-bg);
  padding: var(--spacing-md);
  border-left: 4px solid var(--primary-gold);
  margin: var(--spacing-md) 0;
  font-style: italic;
  border-radius: var(--radius-sm);
}

.about-pic img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow);
}

.about-pic img:hover {
  transform: scale(1.02);
}

/* About Page Section */
.aboutus-page-section {
  padding-top: 0;
  padding-bottom: 70px;
}

.about-page-text {
  margin-bottom: 65px;
}

.about-page-text .ap-title {
  margin-bottom: var(--spacing-md);
  padding: 0 var(--spacing-md);
}

.about-page-text .ap-title h2 {
  margin-bottom: 18px;
}

.about-page-text .ap-title p {
  font-size: 18px;
  color: var(--light-text);
  line-height: 1.55;
}

.about-page-text .ap-services li {
  font-size: 20px;
  color: var(--light-text);
  line-height: 2.1;
  position: relative;
  padding-left: var(--spacing-md);
}

.about-page-text .ap-services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
}


/*========================================
  2. SERVICES SECTION
==========================================*/

.services-section {
  padding-bottom: 60px;
  border-top: 1px solid var(--border-light);
}

.services-section .section-title {
  margin-bottom: 36px;
}

.service-item {
  text-align: center;
  padding: 40px 35px 25px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.service-item:hover {
  background: var(--primary-gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-item i {
  display: inline-block;
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: var(--spacing-sm);
  transition: all var(--transition-base);
}

.service-item:hover i {
  color: var(--white);
  transform: scale(1.1);
}

.service-item h4 {
  font-size: 22px;
  color: var(--dark-text);
  margin: var(--spacing-xs) 0 var(--spacing-sm);
  transition: color var(--transition-base);
}

.service-item:hover h4 {
  color: var(--white);
}

.service-item p {
  color: var(--light-text);
  line-height: 1.625;
  transition: color var(--transition-base);
}

.service-item:hover p {
  color: var(--white);
}

.service-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

/*========================================
  3. ACTIVITIES & BLOG SECTION
==========================================*/

.blog-section {
  padding-bottom: 70px;
}

.blog-section .section-title {
  margin-bottom: 36px;
}

.blog-item {
  height: 450px;
  position: relative;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-item.small-size {
  height: 400px;
}

.blog-item .bi-text {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  padding: 0 var(--spacing-md);
  z-index: 2;
}

.blog-item .b-tag {
  display: inline-block;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-gold);
  padding: 5px 12px;
  border-radius: var(--radius-round);
}

.blog-item .bi-text h4 {
  margin: 18px 0;
  font-size: 24px;
  line-height: 1.3;
}

.blog-item .bi-text h4 a {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: color var(--transition-base);
}

.blog-item:hover .bi-text h4 a {
  color: var(--primary-gold);
}

.blog-item .b-time {
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-item .b-time i {
  font-size: 14px;
}

/* Activity Cards */
.activity-card-compact {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
  margin-bottom: var(--spacing-md);
}

.activity-card-compact:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.activity-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activity-card-compact:hover .activity-img img {
  transform: scale(1.1);
}

.activity-content {
  padding: 20px;
}

.activity-content h3 {
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: var(--spacing-xs);
}

.activity-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: #777;
}

.activity-meta i {
  margin-right: 5px;
  color: var(--primary-gold);
}

.read-more {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.read-more::after {
  content: "→";
  transition: transform var(--transition-base);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Cultural Experience */
.cultural-experience {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url("../img/blog/cultural-dance-kpv.webp") center/cover;
  color: var(--white);
  padding: 80px 0;
  border-radius: var(--radius-md);
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
}

.cultural-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cultural-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-round);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cultural-title {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.cultural-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.95);
}

.cultural-features {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cultural-features li {
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-left: var(--spacing-md);
  font-size: 16px;
}

.cultural-features li::before {
  content: "✓";
  color: var(--primary-gold);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/*========================================
  4. ROOMS SECTION
==========================================*/

.rooms-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.room-item {
  margin-bottom: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.room-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.room-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-item:hover img {
  transform: scale(1.05);
}

.room-item .ri-text {
  padding: 24px 28px 30px;
  border: 1px solid var(--border-light);
  border-top: none;
}

.room-item .ri-text h4 {
  color: var(--dark-text);
  margin-bottom: 17px;
}

.room-item .ri-text h3 {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.room-item .ri-text h3 span {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-text);
}

.room-item .ri-text table {
  margin-bottom: 18px;
  width: 100%;
}

.room-item .ri-text table tbody tr td {
  font-size: 16px;
  color: var(--light-text);
  line-height: 2.25;
}

.room-item .ri-text table tbody tr td.r-o {
  width: 125px;
  font-weight: 600;
}

/*========================================
  5. FOOTER SECTION
==========================================*/

.footer-section {
  background: var(--dark-bg);
  color: var(--light-gray);
}

.footer-text {
  padding: 80px 0 var(--spacing-md);
}

.ft-about {
  margin-bottom: var(--spacing-md);
}

.ft-about .logo {
  margin-bottom: 20px;
}

.ft-about p {
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.75;
}

.fa-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--white);
  border: 1px solid #5A4D48;
  border-radius: var(--radius-circle);
  margin-right: 7px;
  transition: all var(--transition-base);
}

.fa-social a:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.ft-contact h6 {
  font-size: 14px;
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

.ft-contact ul li {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 2;
}

.copyright-option {
  background: rgba(16, 20, 31, 0.2);
  padding: 20px 0;
}

.copyright-option ul li {
  display: inline-block;
  margin-right: 34px;
}

.copyright-option ul li a {
  font-size: 16px;
  color: var(--light-gray);
}

.copyright-option .co-text {
  font-size: 16px;
  color: var(--light-text);
  text-align: right;
}

/*========================================
  6. FORMS & INTERACTIVE ELEMENTS
==========================================*/

.booking-form {
  background: var(--white);
  padding: 44px 40px 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.booking-form h3 {
  color: var(--dark-text);
  margin-bottom: 36px;
}

.check-date {
  position: relative;
  margin-bottom: var(--spacing-sm);
}

.check-date label {
  font-size: 14px;
  color: var(--light-text);
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.check-date input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--dark-text);
  padding-left: 20px;
  transition: border-color var(--transition-base);
}

.check-date input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-gold);
  outline: none;
}

.check-date i {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: var(--primary-gold);
}

.contact-form textarea {
  height: 150px;
  padding-top: 12px;
  resize: vertical;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-md);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-circle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/*========================================
  7. RESPONSIVE DESIGN
==========================================*/
/*----------------------------------------------------
  HEADER
-----------------------------------------------------*/

/* Main header wrapper */
.menu-item {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: space-between;   /* Logo LEFT, nav RIGHT */
    align-items: center;              /* Align items in one line */
    padding: 15px 0;
}

/*----------------------------------------------------
  TOP NAV
-----------------------------------------------------*/
.top-nav {
    border-bottom: 1px solid #ffffff;
    padding: 5px 0;
}

.top-nav .tn-left li {
    list-style: none;
    display: inline-block;
    font-size: 16px;
    color: #19191a;
    font-weight: 500;
    padding: 14px 0 12px;
    margin-right: 64px;
    position: relative;
}

.top-nav .tn-left li:after {
    position: absolute;
    right: -32px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #ffffff;
    content: "";
}

.top-nav .tn-left li:last-child { margin-right: 0; }
.top-nav .tn-left li:last-child:after { display: none; }

.top-nav .tn-left li i {
    color: #dfa974;
    margin-right: 4px;
}

.top-nav .tn-right { text-align: right; }

.top-nav .tn-right .top-social {
    display: inline-block;
    margin-right: 35px;
    padding: 13px 0;
}

.top-nav .tn-right .top-social a {
    display: inline-block;
    font-size: 16px;
    color: #19191a;
    margin-left: 15px;
}

/* Language Selector */
.top-nav .tn-right .language-option {
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
    padding: 13px 0px 11px;
    position: relative;
}

.top-nav .tn-right .language-option:hover .flag-dropdown {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

.top-nav .tn-right .language-option img {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    margin-right: 10px;
}

.top-nav .tn-right .language-option span {
    font-size: 16px;
    color: #19191a;
    text-transform: uppercase;
    font-weight: 500;
}

.top-nav .tn-right .language-option .flag-dropdown {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100px;
    background: #ffffff;
    padding: 10px 15px;
    box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.top-nav .tn-right .language-option .flag-dropdown ul li {
    list-style: none;
    text-align: left;
}

/*----------------------------------------------------
  LOGO (FIXED INLINE)
-----------------------------------------------------*/

.menu-item .logo a {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}

.menu-item .logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/*----------------------------------------------------
  NAVIGATION
-----------------------------------------------------*/

.menu-item .nav-menu {
    display: flex;
    align-items: center;
    text-align: right;
}

.menu-item .nav-menu .mainmenu {
    display: flex;
    gap: 35px;
}

.menu-item .nav-menu .mainmenu li {
    list-style: none;
    position: relative;
}

.menu-item .nav-menu .mainmenu li a {
    font-size: 16px;
    color: #19191a;
    font-weight: 500;
    padding: 27px 0;
    position: relative;
    transition: all 0.3s;
}

/* Hover underline */
.menu-item .nav-menu .mainmenu li a:after {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 2px;
    background: #dfa974;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li:hover > a:after,
.menu-item .nav-menu .mainmenu li.active a:after {
    opacity: 1;
}

/* Dropdown */
.menu-item .nav-menu .mainmenu li .dropdown {
    position: absolute;
    left: 0;
    top: 77px;
    width: 180px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0px 9px 15px rgba(25,25,26,0.05);
    z-index: 9;
}

.menu-item .nav-menu .mainmenu li:hover .dropdown {
    top: 90px;
    opacity: 1;
    visibility: visible;
}

.menu-item .nav-menu .mainmenu li .dropdown li {
    display: block;
}

.menu-item .nav-menu .mainmenu li .dropdown li a {
    font-size: 16px;
    color: #19191a;
    padding: 8px 15px;
    display: block;
}

/* Right Icons */
.menu-item .nav-menu .nav-right {
    margin-left: 20px;
    padding: 27px 0px;
}

.menu-item .nav-menu .nav-right i {
    font-size: 16px;
    color: #19191a;
    cursor: pointer;
}

/*----------------------------------------------------
  RESPONSIVE
-----------------------------------------------------*/

@media (max-width: 991px) {
    .menu-item {
        justify-content: space-between;
    }

    .menu-item .nav-menu {
        display: none; /* Hide desktop menu on mobile */
    }

    .canvas-open {
        display: block;
    }
}

/*----------------------------------------------------
  PERFORMANCE + ANIMATIONS
-----------------------------------------------------*/

/* Lazy load fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* GPU acceleration */
.hero-slider .hs-item img,
.back-to-top,
.whatsapp-float {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Print */
@media print {
  .whatsapp-float,
  .back-to-top,
  .header-section,
  .hero-section {
    display: none !important;
  }
}


/*========================================
  END OF PART 2
==========================================*/