/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #1a3a5c;
  --primary-light: #2d6a9f;
  --accent: #c9a84c;
  --accent-light: #f0d080;
  --dark: #0a1628;
  --darker: #060e1c;
  --text-light: #e8e8e8;
  --text-muted: #a0a8b8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.3);
  --shadow-blue: 0 0 40px rgba(29, 78, 137, 0.4);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  /* font-family: 'Cormorant Garamond', Georgia, serif; */
  background: var(--darker);
  color: var(--text-light);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease;
}
.cursor.hover { width: 20px; height: 20px; background: var(--accent-light); }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--accent); opacity: 0.7; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--darker);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--accent);
  letter-spacing: 0.3em;
  animation: pulseGlow 1.5s ease-in-out infinite;
}
.preloader-line {
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: 20px;
  animation: expandLine 2s ease forwards;
}
@keyframes expandLine { to { width: 300px; } }
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(201,168,76,0.3); }
  50% { text-shadow: 0 0 60px rgba(201,168,76,0.8), 0 0 100px rgba(201,168,76,0.4); }
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.4;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(6, 14, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 5%;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  color: var(--text-muted); text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--darker) !important;
  background: var(--accent);
  padding: 10px 22px; border-radius: 0;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 28px; height: 1.5px; background: var(--accent);
  transition: all 0.4s ease; display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: 60px;
  background: rgba(6, 14, 28, 0.98);
  backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px; z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--text-light);
  text-decoration: none; letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--accent); }

/* ===== HERO / BANNERS ===== */
#home {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
}
.banner-slider {
  position: absolute; inset: 0;
  display: flex;
}
.banner-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.banner-slide.active { opacity: 1; }
.banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  /* transform: scale(1.05); */
  /* transition: transform 8s ease; */
}
/* .banner-slide.active .banner-bg { transform: scale(1); } */
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,28,0.85) 0%, rgba(26,58,92,0.5) 50%, rgba(6,14,28,0.7) 100%);
}
.banner-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 900px;
  transform: translateY(30px);
  transition: transform 1s ease 0.3s, opacity 1s ease 0.3s;
  opacity: 0;
}
.banner-slide.active .banner-content { transform: translateY(0); opacity: 1; }
.banner-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 15px;
}
.banner-label::before, .banner-label::after {
  content: ''; width: 40px; height: 1px; background: var(--accent);
}
.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.banner-title span { color: var(--accent); font-style: italic; }
.banner-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted); margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.banner-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 40px; background: var(--accent);
  color: var(--darker); text-decoration: none;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent-light);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 40px; background: transparent;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Slider Dots */
.slider-nav {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%; cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.slider-dot.active { background: var(--accent); transform: scale(1.3); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 35px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
.scroll-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.3em;
  color: var(--text-muted); writing-mode: vertical-rl;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== SECTION BASE ===== */
section { position: relative; z-index: 2; }
.section-header {
  text-align: center; margin-bottom: 70px;
}
.section-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 15px;
  display: flex; align-items: center; justify-content: center; gap: 15px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
}
.section-title span { color: var(--accent); font-style: italic; }
.section-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 20px auto 0;
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: 120px 5%;
  background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-img-main {
  /* height: 20px; */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}

.about-img-main img{
    height: 100%;
    width: 100%;
}
.about-img-main::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/about-interior.jpg') center/cover no-repeat;
}
.about-img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(26,58,92,0.4), transparent);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: rotateBadge 20s linear infinite;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--darker); line-height: 1;
}
.about-badge-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem; letter-spacing: 0.2em;
  color: var(--darker); text-transform: uppercase;
  text-align: center; line-height: 1.3;
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* .about-content {} */
.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; line-height: 1.9;
  color: var(--text-muted); margin-bottom: 25px;
}
.about-mission {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent);
  padding: 25px 30px; margin: 30px 0;
  position: relative;
}
.about-mission::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--accent); opacity: 0.15;
  position: absolute; top: -20px; left: 15px; line-height: 1;
}
.mission-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.8; color: var(--text-light);
  font-style: italic; position: relative; z-index: 1;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.stat-item {
  text-align: center; padding: 20px 10px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.stat-item:hover {
  border-color: var(--accent);
  background: var(--glass);
  transform: translateY(-5px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--accent); display: block;
}
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 5px;
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 120px 5%;
  background: var(--dark);
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.5s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgb(220 183 81 / 25%);
  line-height: 1;
  z-index: 10;
  pointer-events: none;
}

.service-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;   /* सगळ्या cards साठी समान ratio */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 18px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-card:hover .service-img-wrap img,
.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    rgba(6, 14, 28, 0.05) 0%,
    rgba(6, 14, 28, 0.45) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}

.service-card:hover .service-img-overlay {
  background: linear-gradient(
    to bottom,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(6, 14, 28, 0.6) 100%
  );
}

.service-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CLIENTS SECTION ===== */
#clients {
  padding: 120px 5%;
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
  overflow: hidden;
}
.clients-marquee-wrap {
  overflow: hidden; margin: 0 -5%; padding: 0;
  position: relative;
}
.clients-marquee-wrap::before, .clients-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 2;
}
.clients-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--darker), transparent); }
.clients-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--darker), transparent); }
.clients-marquee {
  display: flex; gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.clients-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-item {
  display: flex; align-items: center; justify-content: center;
  min-width: 220px; padding: 30px 40px;
  border-right: 1px solid var(--glass-border);
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--text-muted);
  text-align: center; line-height: 1.4;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.client-item:hover { color: var(--accent); }

/* Client Cards Grid */
.clients-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; max-width: 1200px; margin: 60px auto 0;
}
.client-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.client-card::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.client-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); }
.client-card:hover::before { opacity: 1; }
.client-icon {
  width: 50px; height: 50px; margin: 0 auto 15px;
  border: 1px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem;
}
.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.4;
}

.clients-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 50px auto 0;
  max-width: 600px;
}

.clients-more-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}

.clients-more-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .clients-more {
    gap: 8px;
    width: 95%;
    margin-top: 35px;
  }

  .clients-more-text {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 120px 5%;
  background: var(--darker);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,92,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1200px; margin: 0 auto;
  align-items: start;
}
/* .contact-info {} */
.contact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 50px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 35px; padding-bottom: 35px;
  border-bottom: 1px solid var(--glass-border);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 50px; height: 50px; min-width: 50px;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-detail:hover .contact-icon {
  background: var(--accent); color: var(--darker);
}
.contact-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.contact-value {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 1.1rem; color: var(--text-light); line-height: 1.5;
}

.whatsapp-qr-section {
  text-align: center;
  padding: 35px;
}

.qr-icon {
  font-size: 42px;
  color: #25D366;
  margin-bottom: 15px;
}

.qr-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
   font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 50px;

}

.qr-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
   font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; line-height: 1.9; color: white; margin-bottom: 50px;

}

.qr-image-box img {
  width: 240px;
  max-width: 100%;
  border-radius: 18px;
}
/* ===== FOOTER ===== */
footer {
  background: #040a14;
  border-top: 1px solid var(--glass-border);
  padding: 40px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--accent); letter-spacing: 0.15em;
}
.footer-copy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase;
}
.footer-links {
  display: flex; gap: 25px; list-style: none;
}
.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent); }

/* ===== ANIMATIONS & REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Floating particles */
.particles-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--accent); border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-main { height: 350px; }
  .about-badge { bottom: -10px; right: 10px; width: 100px; height: 100px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .scroll-indicator { display: none; }
  .contact-form { padding: 30px 20px; }
}

@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .stat-num { font-size: 1.6rem; }
  .banner-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* Gold line decoration */
.gold-line {
  display: flex; align-items: center; gap: 15px; margin: 20px 0;
}
.gold-line::before, .gold-line::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}
.gold-line::after {
  background: linear-gradient(to left, transparent, var(--accent));
}
.gold-diamond {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* Toast notification */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--accent); color: var(--darker);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em;
  padding: 15px 25px;
  transform: translateX(200%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9999;
}
.toast.show { transform: translateX(0); }