/* ============================================
   ILLUSION STREET - MASTER STYLESHEET
   COMPLETE FIXED VERSION
   3x4 Gallery (3 images per row, 4 rows) | 3x2/2x3 Cards | Center Text | Dark Theme
   Side by Side Experience Cards | Full Responsive
   ============================================ */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  overflow-x: hidden;
}

/* ===== DARK THEME VARIABLES ===== */
:root {
  --primary-gold: #b59a54;
  --primary-gold-dark: #8c7333;
  --theme-bg-primary: #000000;
  --theme-bg-secondary: #0a0a0a;
  --theme-bg-card: #1a1a1a;
  --theme-text-primary: #ffffff;
  --theme-text-secondary: #cccccc;
  --theme-text-muted: #888888;
  --theme-border: #333333;
  --theme-accent: var(--primary-gold);
}

/* ===== SECTION PADDING ===== */
.hero,
.about-section,
.experience-section,
.infinite-gallery-section,
.footer-wrap {
  padding-left: 60px;
  padding-right:60px;
  padding-bottom: 20px;
  padding-top:20px;
}

.whyus-carousel-container {
  padding: 0;
}


/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--theme-bg-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px clamp(20px, 5vw, 40px);
  border-bottom: 1px solid var(--theme-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.logo img {
  height: clamp(40px, 6vw, 60px);
}

.logo h2 {
  font-size: clamp(16px, 4vw, 24px);
  color: var(--primary-gold);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 28px);
}

nav a {
  text-decoration: none;
  color: var(--theme-text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: clamp(13px, 2vw, 16px);
}

nav a:hover,
nav a.active {
  color: var(--theme-accent);
  font-weight: 700;
}

nav button {
  background: linear-gradient(145deg, var(--primary-gold), var(--primary-gold-dark));
  color: #000;
  padding: 8px clamp(16px, 3vw, 24px);
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(13px, 2vw, 16px);
  white-space: nowrap;
}

nav button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(181, 154, 84, 0.3);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background: var(--theme-accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav.mobile-active {
  background: var(--theme-bg-secondary);
  border-left: 1px solid var(--theme-border);
}

nav.mobile-active a {
  color: var(--theme-text-secondary);
}

nav.mobile-active a:hover,
nav.mobile-active a.active {
  color: var(--theme-accent);
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
}

.left-text {
  margin-bottom: 10px;
  color: var(--theme-text-muted);
  letter-spacing: clamp(3px, 1vw, 6px);
  font-size: clamp(14px, 3vw, 22px);
  line-height: 1.6;
}

.left-text h4 {
  font-weight: 400;
}

.big-title {
  max-width: 100%;
}

.title-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.title-wrapper::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.illusion {
  font-size: clamp(32px, 8vw, 125px);
  font-weight: 900;
  color: var(--theme-text-primary);
  line-height: 1;
}

.street {
  font-size: clamp(32px, 8vw, 125px);
  font-weight: 900;
  color: var(--primary-gold);
  white-space: nowrap;
}

.big-title p {
/*   font-size: clamp(14px, 2vw, 22px); */
  font-size: 22px;
  line-height: 1.3;
  text-align: justify;
  text-justify: inter-word;
  color: var(--theme-text-secondary);
  margin-top: 20px;
}

/* GIF CONTAINER - CENTERED */
.gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.gif-container img {
  max-width: 100%;
  width: 446px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--theme-bg-primary);
}

.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 80px);
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 8vw, 80px);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h1 {
  font-size: clamp(28px, 5vw, 64px);
  margin-bottom: 20px;
  color: var(--theme-text-primary);
  position: relative;
  display: inline-block;
}

.about-text h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.about-text p {
  color: var(--theme-text-secondary);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: justify;
  text-justify: inter-word;
}

.about-image {
  flex: 0 0 auto;
}

.about-image img {
  width: clamp(250px, 35vw, 420px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== ABOUT CARDS - 3x2 desktop, 2x3 mobile ===== */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.card {
  border: 1px solid var(--theme-border);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--theme-bg-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card img {
  width: clamp(40px, 5vw, 60px);
  margin-bottom: 16px;
}

.card h3 {
  color: var(--primary-gold);
  margin-bottom: 10px;
  font-size: 24px;
}

.card p {
  color: var(--theme-text-secondary);
  line-height: 1.3;
  font-size: 22px;
  text-align: justify;
  text-justify: inter-word;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: var(--primary-gold);
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: var(--theme-bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.experience-title {
  display: inline-block;
  background: var(--theme-bg-card);
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 34px);
  border-radius: 14px;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(30px, 6vw, 70px);
  color: var(--theme-accent);
  border: 1px solid var(--theme-border);
}

.experience-details {
  margin: 0 auto clamp(30px, 5vw, 50px);
}

.experience-details p {
  color: var(--theme-text-secondary);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
}

.experience-details p:first-of-type {
  font-weight: 600;
  font-size: 24px;
  color: var(--theme-accent);
}

/* ===== EXPERIENCE SIDE BY SIDE CARD STYLES - OPTIMIZED ===== */
.experience-detail-card-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 10px 0;
}

.exp-single-card {
  background: var(--theme-bg-card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--theme-border);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exp-single-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(181, 154, 84, 0.12);
  border-color: var(--primary-gold);
}

.exp-single-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.exp-single-image {
  background: linear-gradient(135deg, var(--theme-bg-secondary), #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  min-height: 180px;
}

.exp-single-image img {
  width: auto;
  max-width: 160px;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.exp-single-card:hover .exp-single-image img {
  transform: scale(1.05);
}

.exp-single-content {
  flex: 1;
  padding: 20px 24px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.exp-single-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.exp-single-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-text-primary);
  margin-bottom: 12px;
  font-style: italic;
  border-left: 3px solid var(--primary-gold);
  padding-left: 12px;
}

.exp-single-desc {
  font-size: 18px;
  color: var(--theme-text-secondary);
  line-height: 1.2;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exp-single-main {
  font-size: 17px;
  color: var(--theme-text-primary);
  line-height: 1.2;
  margin-bottom: 15px;
  background: rgba(181, 154, 84, 0.08);
  padding: 12px 16px;
  border-radius: 14px;
  border-left: 3px solid var(--primary-gold);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exp-single-subtitle {
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.exp-single-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.exp-single-list li {
  font-size: 18px;
  color: var(--theme-text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.2;
  text-align: left;
}

.exp-single-list li i {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary-gold);
  font-size: 12px;
}

.exp-single-quote {
  font-size: clamp(12px, 1.6vw, 13px);
  font-style: italic;
  color: var(--primary-gold);
  margin: 10px 0 12px;
  padding: 10px 14px;
  background: rgba(181, 154, 84, 0.05);
  border-radius: 12px;
  text-align: center;
}

.exp-single-features {
  font-size: clamp(10px, 1.4vw, 11px);
  color: var(--theme-text-muted);
  margin: 8px 0 15px;
  padding: 10px 12px;
  background: var(--theme-bg-secondary);
  border-radius: 10px;
  line-height: 1.4;
}

.exp-single-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, var(--primary-gold), var(--primary-gold-dark));
  color: #000;
  border: none;
  padding: 10px 22px;
  font-size: clamp(12px, 1.6vw, 13px);
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}

.exp-single-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(181, 154, 84, 0.35);
  gap: 10px;
}

/* ===== EXPERIENCE MARQUEE (Legacy) ===== */
.experience-marquee-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.experience-marquee-track {
  overflow: hidden;
  width: 100%;
}

.experience-marquee-content {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  animation: marquee 40s linear infinite;
  width: max-content;
  padding: 20px 0;
}

.experience-marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.exp-card {
  flex: 0 0 min(280px, 70vw);
  width: min(280px, 70vw);
  background: var(--theme-bg-card);
  border-radius: 24px;
  padding: clamp(25px, 4vw, 40px) clamp(15px, 2.5vw, 25px) 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid var(--theme-border);
  display: flex;
  flex-direction: column;
}

.exp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(181, 154, 84, 0.2);
  border-color: var(--primary-gold);
}

.exp-card img {
  width: clamp(100px, 15vw, 140px);
  height: clamp(100px, 15vw, 140px);
  object-fit: contain;
  margin: -60px auto 15px;
  transition: transform 0.3s ease;
}

.exp-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.exp-card h3 {
  font-size: clamp(16px, 2.2vw, 20px);
  margin-bottom: 10px;
  color: var(--theme-text-primary);
}

.exp-quote {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 10px;
  font-style: italic;
}

.exp-desc {
  color: var(--theme-text-secondary);
  line-height: 1.6;
  font-size: clamp(12px, 1.8vw, 14px);
  margin-bottom: 15px;
  text-align: justify;
  text-justify: inter-word;
}

.view-btn {
  border: 1px solid var(--primary-gold);
  background: transparent;
  border-radius: 30px;
  padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-size: clamp(13px, 2vw, 15px);
  margin-top: 10px;
  color: var(--primary-gold);
}

.view-btn:hover {
  background: var(--primary-gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(181, 154, 84, 0.3);
}

/* ===== EXPERIENCE DETAIL VIEW (Legacy) ===== */
.experience-detail-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 3vw, 30px);
  padding: clamp(20px, 5vw, 40px);
  background: var(--theme-bg-primary);
  min-height: 550px;
  animation: fadeIn 0.3s ease;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.detail-nav-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 60px;
}

.nav-arrow {
  width: clamp(35px, 5vw, 45px);
  height: clamp(35px, 5vw, 45px);
  border-radius: 50%;
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border);
  cursor: pointer;
  font-size: clamp(16px, 2.5vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--theme-accent);
}

.nav-arrow:hover {
  background: var(--theme-accent);
  color: #000;
  transform: scale(1.05);
}

.pagination-dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--theme-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--theme-accent);
  transform: scale(1.2);
}

.detail-card {
  flex: 1;
  max-width: 900px;
  background: var(--theme-bg-card);
  border-radius: clamp(20px, 4vw, 40px);
  padding: clamp(20px, 5vw, 60px);
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--theme-border);
}

.close-x {
  position: absolute;
  top: clamp(15px, 3vw, 25px);
  right: clamp(15px, 3vw, 25px);
  width: clamp(36px, 5vw, 46px);
  height: clamp(36px, 5vw, 46px);
  border-radius: 50%;
  background: var(--theme-bg-secondary);
  border: 1px solid var(--theme-border);
  font-size: clamp(18px, 3vw, 24px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--theme-accent);
}

.close-x:hover {
  background: var(--theme-accent);
  color: #000;
}

.detail-inner-flex {
  display: flex;
  gap: clamp(20px, 5vw, 50px);
  align-items: center;
  flex-wrap: wrap;
}

.detail-img-box {
  flex: 0 0 min(200px, 40vw);
}

.detail-img-box img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.3));
}

.detail-text-box {
  flex: 1;
  min-width: 280px;
}

.detail-text-box h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--theme-accent);
  margin-bottom: 15px;
}

.quote-desc {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--theme-text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  border-left: 4px solid var(--primary-gold);
  padding-left: 20px;
  font-style: italic;
  text-align: justify;
  text-justify: inter-word;
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--theme-text-secondary);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--theme-bg-card);
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
}

/* ===== WHY US CAROUSEL ===== */
.whyus-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--theme-bg-primary);
  scroll-margin-top: 80px;
}

.whyus-carousel {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.whyus-carousel .whyus-exact {
  min-width: 100%;
  flex: 0 0 100%;
}

.whyus-exact {
  position: relative;
  width: 100%;
  background: var(--theme-bg-primary);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-left: 60px;
  padding-right:60px;
  padding-bottom: 60px;
  padding-top:20px;
  flex-wrap: wrap;
}

.whyus-content {
  flex: 1;
  min-width: 280px;
  z-index: 5;
}

.whyus-text {
  max-width: 100%;
}

.whyus-text .why-small {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
  letter-spacing: clamp(4px, 1vw, 8px);
  color: var(--theme-text-muted);
  display: block;
  margin-bottom: 10px;
}

.whyus-text h1 {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
  color: var(--theme-text-primary);
  line-height: 1;
  margin-bottom: 20px;
}

.whyus-text h2 {
  font-size: clamp(20px, 4vw, 35px);
  font-weight: 400;
  color: var(--theme-text-muted);
  margin-bottom: 20px;
}

.whyus-text p {
  font-size: 20px;
  color: var(--theme-text-secondary);
  line-height: 1.2;
  text-align: justify;
  text-justify: inter-word;
}

.whyus-progress-bar {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.whyus-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-gold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.whyus-progress-dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* ===== GALLERY SECTION - 3x4 GRID (3 images per row, 4 rows) ===== */
.infinite-gallery-section {
  background: var(--theme-bg-primary);
  text-align: center;
}

.gallery-title {
  display: inline-block;
  background: var(--theme-bg-card);
  padding: 12px 28px;
  border-radius: 12px;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 40px;
  color: var(--theme-accent);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid var(--theme-border);
}

.gallery-loader {
  text-align: center;
  padding: 60px 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--theme-border);
  border-top: 4px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 3x4 GRID - 3 columns on desktop */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0;
}

.grid-item {
  position: relative;
  background: var(--theme-bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--theme-border);
}

.grid-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.grid-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover .grid-item-image {
  transform: scale(1.05);
}

.grid-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.grid-item:hover .grid-item-overlay {
  transform: translateY(0);
}

.grid-item-category {
  color: var(--primary-gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.grid-item-title {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.grid-item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--theme-bg-card) 25%, var(--theme-bg-secondary) 50%, var(--theme-bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.grid-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.grid-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.98);
  cursor: pointer;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 3001;
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(0,0,0,0.8);
  border-radius: 30px;
  white-space: nowrap;
}

/* ===== NEWS TICKER ===== */
.news-ticker-container {
  background: linear-gradient(90deg, var(--theme-bg-secondary) 0%, var(--theme-bg-card) 100%);
  border-bottom: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.news-ticker-label {
  background: var(--primary-gold);
  color: #000;
  font-weight: 700;
  padding: 4px clamp(10px, 3vw, 20px);
  margin-right: clamp(10px, 3vw, 20px);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  flex-shrink: 0;
  z-index: 2;
}

.news-ticker-label span {
  font-size: clamp(11px, 2vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-ticker-wrapper {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 20px, black 95%, transparent);
}

.news-ticker-content {
  display: flex;
  gap: clamp(20px, 5vw, 50px);
  width: max-content;
  animation: newsTicker 40s linear infinite;
  padding: 5px 0;
}

.news-ticker-content:hover {
  animation-play-state: paused;
}

@keyframes newsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-item {
  color: var(--theme-text-secondary);
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
}

.news-item::before {
  content: "●";
  color: var(--primary-gold);
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news-item:hover {
  color: var(--primary-gold);
  transform: translateX(3px);
}

.news-separator {
  cursor: default;
  color: var(--theme-text-muted);
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}

.modal-content {
  background-color: var(--theme-bg-secondary);
  margin: 5% auto;
  padding: clamp(15px, 4vw, 30px);
  border-radius: 20px;
  width: 95%;
  max-width: 1200px;
  position: relative;
  animation: modalopen 0.4s;
}

@keyframes modalopen {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  right: clamp(15px, 3vw, 25px);
  top: clamp(10px, 2vw, 15px);
  color: white;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: bold;
  cursor: pointer;
  width: clamp(28px, 4vw, 32px);
  height: clamp(28px, 4vw, 32px);
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.close-modal:hover {
  background-color: var(--primary-gold-dark);
  transform: scale(1.1);
}

/* News Modal */
.news-modal-content {
  max-width: 500px;
  width: 90%;
  padding: 0;
  overflow: hidden;
}

.news-modal-body {
  padding: 30px 25px 25px 25px;
}

.news-modal-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--theme-text-primary);
  padding-right: 30px;
}

.news-modal-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  margin-bottom: 25px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.news-read-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 154, 84, 0.3);
}

/* Contact Modal */
.contact-modal-content {
  max-width: 1100px;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
}

.contact-container {
  display: flex;
  min-height: auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 40px);
  color: #000;
}

.contact-info-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  text-align: left;
}

.contact-info-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: clamp(20px, 5vw, 40px);
  line-height: 1.5;
  text-align: left;
}

.contact-support {
  margin-bottom: clamp(20px, 5vw, 40px);
  text-align: left;
}

.support-text {
  font-size: clamp(20px, 4vw, 36px);
  line-height: 1.4;
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
  text-align: left;
}

.support-highlight {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  text-align: left;
}

.contact-chat {
  margin-bottom: 30px;
  text-align: left;
}

.chat-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
  text-align: left;
}

.chat-text {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  text-align: left;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(14px, 2vw, 16px);
  color: #000;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: left;
}

.social-item:hover {
  transform: translateX(5px);
}

.social-item i {
  width: 24px;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #000;
}

.contact-chat-social {
  width: 100%;
  max-width: 400px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: var(--theme-bg-secondary);
  padding: clamp(30px, 5vw, 40px);
}

.phone-number-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 25px;
  text-align: left;
}

.phone-number-wrapper i {
  color: #000;
  font-size: clamp(16px, 2.5vw, 18px);
  width: 24px;
}

.phone-number {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #000;
  font-weight: 500;
}

.contact-all {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(12px, 2vw, 15px) clamp(15px, 2.5vw, 20px);
  border: 2px solid var(--theme-border);
  border-radius: 12px;
  font-size: clamp(14px, 2vw, 16px);
  transition: all 0.3s ease;
  background: var(--theme-bg-card);
  color: var(--theme-text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--theme-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: var(--theme-bg-card);
  box-shadow: 0 0 0 4px rgba(181, 154, 84, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
  background: linear-gradient(145deg, var(--primary-gold), var(--primary-gold-dark));
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(181, 154, 84, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.close-contact {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-contact:hover {
  background-color: var(--primary-gold);
  color: #000;
  transform: rotate(90deg);
}

#successMessage,
#errorMessage {
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  display: none;
}

#successMessage {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
  border: 1px solid #4caf50;
}

#errorMessage {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
  border: 1px solid #f44336;
}

/* ===== FOOTER ===== */
.footer-wrap {
  background: var(--theme-bg-primary);
}

.footer-card {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--theme-bg-secondary);
  border-radius: clamp(20px, 4vw, 40px);
  padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 60px) clamp(20px, 4vw, 30px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--theme-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1.2fr;
  gap: clamp(20px, 5vw, 50px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--theme-border);
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-logo img {
  height: clamp(20px, 3vw, 28px);
}

.footer-left p {
  font-size: clamp(12px, 1.8vw, 14px);
  line-height: 1.7;
  color: var(--theme-text-secondary);
  margin-bottom: 10px;
  max-width: 440px;
  text-align: justify;
  text-justify: inter-word;
}

.footer-socials {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: clamp(14px, 2vw, 16px);
  flex-wrap: wrap;
}

.footer-socials i {
  color: var(--theme-text-secondary);
  cursor: pointer;
  transition: 0.25s ease;
}

.footer-socials i:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 18px;
  color: var(--theme-text-primary);
  font-weight: 600;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--theme-text-muted);
  margin-bottom: 10px;
  font-size: clamp(12px, 1.8vw, 14px);
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: var(--theme-text-primary);
}

.footer-col p {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--theme-text-muted);
  margin-bottom: 10px;
  word-wrap: break-word;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(11px, 1.8vw, 13px);
  color: var(--theme-text-muted);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  margin-left: 25px;
  font-size: clamp(11px, 1.8vw, 13px);
  text-decoration: none;
  color: var(--theme-accent);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.footer-links a:hover {
  border-bottom: 1px solid var(--theme-accent);
  color: var(--theme-text-primary);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  nav {
    display: none !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--theme-bg-secondary);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    gap: 20px;
  }
  
  nav.mobile-active {
    display: flex !important;
    right: 0;
  }
  
  nav a, nav button {
    width: 100%;
    text-align: center;
  }
  
  .hero,
  .about-section,
  .experience-section,
  .infinite-gallery-section,
  .footer-wrap {
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
  }
  
  .whyus-exact {
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
  }
  
  .about-top {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* GALLERY - 3 columns on tablet */
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-left {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-left p {
    margin: 0 auto 10px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4 {
    text-align: center;
  }
  
  .footer-col a,
  .footer-col p {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-info-title {
    text-align: center;
  }
  
  .contact-info-subtitle {
    text-align: center;
  }
  
  .contact-support {
    text-align: center;
  }
  
  .support-text {
    text-align: center;
  }
  
  .support-highlight {
    text-align: center;
  }
  
  .contact-chat {
    text-align: center;
  }
  
  .chat-title {
    text-align: center;
  }
  
  .chat-text {
    text-align: center;
  }
  
  .contact-social {
    align-items: center;
  }
  
  .phone-number-wrapper {
    justify-content: center;
  }
  
  .social-item {
    justify-content: center;
  }

  .experience-detail-card-container {
    gap: 20px;
  }
  
  .exp-single-image {
    padding: 20px;
    min-height: 160px;
  }
  
  .exp-single-image img {
    max-width: 140px;
    max-height: 110px;
  }
  
  .exp-single-content {
    padding: 18px 20px 20px;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .left-text {
    text-align: center;
  }
  
  .left-text h4 {
    display: inline-block;
  }
  
  .title-wrapper::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .big-title {
    text-align: center;
  }
  
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow: visible;
  }
  
  .about-cards .card {
    min-width: auto;
  }
  
  /* GALLERY - 2 columns on mobile */
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow: visible;
  }
  
  .image-grid .grid-item {
    min-width: auto;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-left {
    grid-column: span 1;
  }
  
  .footer-links a {
    margin: 0 10px;
    display: inline-block;
  }
  
  .detail-inner-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .detail-nav-side {
    flex-direction: row;
    width: auto;
  }
  
  .pagination-dots {
    flex-direction: row;
  }
  
  .quote-desc {
    text-align: justify;
  }
  
  .lightbox-caption {
    white-space: normal;
    width: 90%;
    font-size: 12px;
  }
  
  .gif-container img {
    width: 280px;
  }

  .experience-detail-card-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .exp-single-image {
    padding: 25px;
    min-height: auto;
  }
  
  .exp-single-image img {
    max-width: 180px;
    max-height: 140px;
  }
  
  .exp-single-content {
    padding: 20px 22px 22px;
  }
}

/* Small Mobile (480px - 575px) */
@media (max-width: 575px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .card {
    padding: 15px;
  }
  
  .exp-card {
    flex: 0 0 260px;
    width: 260px;
  }
  
  .experience-marquee-content {
    animation: marquee 30s linear infinite;
  }
  
  .whyus-progress-bar {
    bottom: 10px;
    gap: 8px;
  }
  
  .news-ticker-content {
    animation: newsTicker 30s linear infinite;
  }
  
  .gif-container img {
    width: 220px;
  }
  
  .hero,
  .about-section,
  .experience-section,
  .infinite-gallery-section,
  .footer-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .whyus-exact {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* GALLERY - 2 columns on small mobile */
  .image-grid {
    gap: 12px;
  }
  
  .grid-item-overlay {
    padding: 10px 8px 8px;
  }
  
  .grid-item-category {
    font-size: 9px;
  }
  
  .grid-item-title {
    font-size: 10px;
  }

  .exp-single-content {
    padding: 18px;
  }
  
  .exp-single-title {
    font-size: 18px;
  }
  
  .exp-single-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  
  .exp-single-image {
    padding: 20px;
  }
  
  .exp-single-image img {
    max-width: 150px;
    max-height: 120px;
  }
}

/* Very Small Mobile (320px - 374px) */
@media (max-width: 374px) {
  .exp-card {
    flex: 0 0 240px;
    width: 240px;
  }
  
  .detail-text-box h2 {
    font-size: 22px;
  }
  
  .gif-container img {
    width: 180px;
  }
  
  /* GALLERY - 2 columns on very small */
  .image-grid {
    gap: 10px;
  }
  
  .grid-item-overlay {
    padding: 6px 5px 5px;
  }
  
  .grid-item-category {
    font-size: 7px;
  }
  
  .grid-item-title {
    font-size: 8px;
  }
  
  .exp-single-image img {
    max-width: 120px;
    max-height: 100px;
  }
  
  .exp-single-btn {
    padding: 7px 15px;
    font-size: 11px;
  }
  
  .exp-single-title {
    font-size: 16px;
  }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .gif-container img {
    max-height: 150px;
    width: auto;
  }
  
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
  }
  
  .whyus-exact {
    min-height: auto;
    padding: 40px clamp(20px, 5vw, 40px);
  }

  /* GALLERY - 3 columns in landscape */
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-detail-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .exp-single-image {
    padding: 15px;
    min-height: 130px;
  }
  
  .exp-single-image img {
    max-width: 120px;
    max-height: 90px;
  }
  
  .exp-single-content {
    padding: 15px;
  }
  
  .exp-single-list {
    margin-bottom: 10px;
    gap: 5px;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer-wrap, .modal, button, .news-ticker-container {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* Error Message */
.error-message {
  text-align: center;
  padding: 60px;
  grid-column: 1 / -1;
}

.error-message i {
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  display: block;
}

.error-message h3 {
  margin-bottom: 10px;
  color: var(--theme-text-primary);
}

.error-message p {
  color: var(--theme-text-secondary);
}

.error-message button {
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--primary-gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-message button:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-2px);
}
/* ===== WHY US WITH IMAGES - NEW STYLES ===== */
.whyus-exact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 80px);
  min-height: 500px;
}

.whyus-content {
  flex: 1;
  min-width: 280px;
}

.whyus-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whyus-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(181, 154, 84, 0.2);
}

/* Layout variations */
.whyus-layout-text-left {
  flex-direction: row;
}

.whyus-layout-image-left {
  flex-direction: row;
}

/* ===== FOOTER CONTACT ITEMS WITH ICONS ===== */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--theme-text-muted);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary-gold);
  font-size: 16px;
  margin-top: 2px;
  min-width: 18px;
}

.footer-contact-link {
  color: var(--theme-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
  flex: 1;
}

.footer-contact-link:hover {
  color: var(--primary-gold);
}

.footer-contact-item span {
  color: var(--theme-text-muted);
  flex: 1;
}

/* ===== RESPONSIVE FOR WHY US IMAGES ===== */
@media (max-width: 991px) {
  .whyus-exact {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
  }
  
  .whyus-content {
    text-align: center;
  }
  
  .whyus-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .whyus-image img {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .whyus-exact {
    gap: 30px;
    padding: 40px clamp(20px, 5vw, 40px);
  }
  
  .whyus-image img {
    max-width: 300px;
  }
  
  .whyus-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .whyus-image img {
    max-width: 250px;
  }
  
  .whyus-text h2 {
    font-size: 20px;
  }
  
  .whyus-text p {
    font-size: 14px;
  }
}

/* Small fix for footer contact items on mobile */
@media (max-width: 767px) {
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-contact-item i {
    margin-top: 0;
  }
}
/* ===== WHY US CAROUSEL - INFINITE SCROLLING ===== */
.whyus-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--theme-bg-primary);
  scroll-margin-top: 80px;
  cursor: grab;
}

.whyus-carousel-container:active {
  cursor: grabbing;
}

.whyus-carousel {
  display: flex;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.whyus-carousel .whyus-exact {
  min-width: 100%;
  flex: 0 0 100%;
}

/* Ensure clones are identical in styling */
.whyus-exact.clone {
  background: var(--theme-bg-primary);
}
