/* ============================================
   ROHIT VIVAAH & EVENTS - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Great+Vibes&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #C9954C;
  --gold-light: #E8C98A;
  --gold-pale: #F5ECD7;
  --rose: #D4768A;
  --rose-light: #F2C4CE;
  --rose-pale: #FDF0F2;
  --cream: #FBF7F0;
  --white: #FFFFFF;
  --dark: #2C1F14;
  --mid: #6B4C32;
  --text: #3D2B1F;
  --text-light: #7A6254;
  --grad-hero: linear-gradient(135deg, #FDF0F2 0%, #FBF7F0 40%, #F5ECD7 100%);
  --grad-section: linear-gradient(160deg, #FBF7F0 0%, #FDF0F2 100%);
  --grad-gold: linear-gradient(135deg, #C9954C, #E8C98A, #C9954C);
  --grad-rose: linear-gradient(135deg, #D4768A, #F2C4CE, #D4768A);
  --shadow-soft: 0 4px 24px rgba(201,149,76,0.12);
  --shadow-card: 0 8px 40px rgba(44,31,20,0.10);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: 'Nunito', sans-serif; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Cinzel', serif; line-height: 1.25; }
.script { font-family: 'Great Vibes', cursive; font-style: normal; }

/* ---- Section Headings ---- */
.section-label {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-size: 1.5rem;
  color: var(--rose);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.section-divider i { color: var(--gold); font-size: 1rem; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---- Container ---- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(201,149,76,0.18);
  transition: var(--transition);
}
@media (max-width: 768px) {
  .site-header {
    position: relative;
    top: auto; left: auto; right: auto;
  }
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(44,31,20,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
}

/* Logo image */
.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: 'Great Vibes', cursive;
  font-size: 1rem;
  color: var(--rose);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--grad-gold);
  transition: right 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-cta {
  background: var(--grad-gold);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px rgba(201,149,76,0.35);
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,76,0.45) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.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;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--dark);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-cta {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  padding: 0.75rem 2rem;
}

/* Hero grid class */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,118,138,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,149,76,0.10) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(212,118,138,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  font-size: 22rem;
  color: rgba(201,149,76,0.04);
  font-family: 'Cinzel', serif;
  pointer-events: none;
  line-height: 1;
}
.hero-ornament.left { left: -4rem; bottom: 10%; }
.hero-ornament.right { right: -4rem; top: 10%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,76,0.10);
  border: 1px solid rgba(201,149,76,0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.75rem; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: 'Cinzel', serif;
}
.hero h1 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Great Vibes', cursive;
  font-size: 1.4em;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(100%) skewX(-15deg); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,149,76,0.40);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,149,76,0.50); }

.btn-rose {
  background: var(--grad-rose);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(212,118,138,0.35);
}
.btn-rose:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(212,118,138,0.50); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,149,76,0.18);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-main {
  width: 100%;
  max-width: 520px;
  border-radius: 32px 8px 32px 8px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  border: 4px solid rgba(255,255,255,0.8);
}
.hero-image-float {
  position: absolute;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}
.hero-image-float.one { bottom: 10%; left: -60px; }
.hero-image-float.two { top: 8%; right: -30px; width: 120px; }

.hero-floral {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px;
  opacity: 0.25;
  pointer-events: none;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section { padding: 90px 0; }

.text-center { text-align: center; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,149,76,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--grad-gold);
  color: var(--white);
}
.feature-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview { background: var(--grad-section); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border: 1px solid rgba(201,149,76,0.12);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,149,76,0.30);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--grad-gold);
  color: var(--white);
}

.service-info h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.25rem; }
.service-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gold-pale);
  aspect-ratio: 1;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,31,20,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* Placeholder gallery items with gradient */
.gallery-placeholder {
  width: 100%; height: 100%;
  min-height: 180px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { background: var(--dark); padding: 80px 0; }
.video-section .section-title { color: var(--white); }
.video-section .section-label { color: var(--gold-light); }
.video-section .section-subtitle { color: rgba(255,255,255,0.65); }
.video-section .section-divider::before,
.video-section .section-divider::after { background: linear-gradient(90deg, transparent, rgba(201,149,76,0.4), transparent); }

.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  background: #1a1210;
  max-width: 900px;
  margin: 0 auto;
}
.video-wrap video,
.video-wrap iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #2c1f14, #1a1210);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}
.video-placeholder i { font-size: 4rem; color: var(--gold); opacity: 0.7; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--grad-section); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,149,76,0.12);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.stars { color: #F5A623; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.author-event { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,149,76,0.12) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  min-height: 380px;
  background: var(--grad-hero);
  display: flex;
  align-items: flex-end;
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(212,118,138,0.08), transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(201,149,76,0.10), transparent 50%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--dark); margin-bottom: 0.75rem; }
.breadcrumb { font-size: 0.9rem; color: var(--text-light); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; color: var(--gold-light); }

.about-intro { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: 24px 8px 24px 8px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-img-accent {
  position: absolute;
  width: 55%;
  bottom: -30px; right: -30px;
  border-radius: 8px 24px 8px 24px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-card);
}
.about-badge-float {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 3px solid var(--gold);
}
.about-badge-float .num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-badge-float .lbl { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

.about-text .section-title { text-align: left; }
.about-text .section-divider { justify-content: flex-start; }
.about-text p { font-size: 1rem; color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.9; }

.values-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--gold-pale); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.value-text h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.2rem; }
.value-text p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full { background: var(--white); }

.services-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card-full {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201,149,76,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card-full::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.service-card-full:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card-full:hover .sc-icon {
  background: var(--grad-gold);
  color: var(--white);
}
.sc-title { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.5rem; }
.sc-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  transition: var(--transition);
}
.sc-link:hover { gap: 10px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; }

.contact-detail-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,149,76,0.10);
}
.cd-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-text span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2px; }
.cd-text a, .cd-text p { color: var(--dark); font-weight: 600; font-size: 0.95rem; }
.cd-text a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,149,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--grad-gold);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(201,149,76,0.12);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.contact-form-wrap > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(201,149,76,0.20);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9954C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

.map-section { background: var(--cream); padding-bottom: 90px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-main { font-size: 1.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.55); }

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.60); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom .social-links .social-link { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
.footer-bottom .social-links .social-link:hover { background: var(--grad-gold); color: var(--white); border-color: transparent; }

/* ============================================
   STICKY FLOATING BUTTONS
   ============================================ */
.sticky-btns {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  position: relative;
}
.sticky-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.sticky-btn:hover::before { opacity: 1; }
.sticky-btn:hover { transform: scale(1.1); }

.sticky-call { background: var(--grad-gold); color: var(--white); }
.sticky-wa { background: #25D366; color: var(--white); }

/* ============================================
   PAGE TRANSITION / FADE
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PREMIUM DESIGN ENHANCEMENTS
   ============================================ */

/* Improved hero section with richer design */
.gallery-section {
  background: linear-gradient(160deg, #FBF7F0 0%, #F5ECD7 50%, #FDF0F2 100%);
}

/* Enhanced gallery grid */
.gallery-grid {
  margin-top: 0;
}

.gallery-item {
  transition: var(--transition);
}
.gallery-item:hover {
  transform: scale(1.01);
  z-index: 2;
}

/* ============================================
   VIDEO REELS – HOMEPAGE (vertical reel style)
   ============================================ */
.video-section { background: var(--dark); padding: 80px 0; }
.video-section .section-title { color: var(--white); }
.video-section .section-label { color: var(--gold-light); }
.video-section .section-subtitle { color: rgba(255,255,255,0.65); }
.video-section .section-divider::before,
.video-section .section-divider::after { background: linear-gradient(90deg, transparent, rgba(201,149,76,0.4), transparent); }

.video-reels-showcase {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.reel-card-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 280px;
  max-width: calc(50vw - 2rem);
}

.reel-wrap-home {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #1a1210;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 3px solid rgba(201,149,76,0.25);
  cursor: pointer;
}

.reel-video-home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.reel-play-btn-home {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.30);
  transition: background 0.3s ease;
  border-radius: 22px;
}
.reel-play-btn-home i {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,149,76,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
  padding-left: 4px;
}
.reel-wrap-home:hover .reel-play-btn-home { background: rgba(0,0,0,0.15); }
.reel-wrap-home:hover .reel-play-btn-home i { transform: scale(1.12); background: var(--gold); }
.reel-wrap-home.playing .reel-play-btn-home { display: none; }

.reel-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.reel-label i { color: var(--gold-light); }

/* ============================================
   PROJECTS PAGE – PAGE HERO
   ============================================ */
.page-hero--projects {
  min-height: 440px;
  background: linear-gradient(135deg, #2C1F14 0%, #3D2B1F 50%, #1a1210 100%);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero--projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,149,76,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(212,118,138,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(201,149,76,0.08)"/></svg>') repeat;
  pointer-events: none;
}
.page-hero--projects .page-hero-content { position: relative; z-index: 2; }
.page-hero--projects .section-label { color: var(--gold-light); }
.page-hero--projects h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero--projects .breadcrumb { color: rgba(255,255,255,0.5); }
.page-hero--projects .breadcrumb a { color: var(--gold-light); }
.page-hero--projects .breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   PROJECTS PAGE – FILTER BAR
   ============================================ */
.projects-filter-bar {
  background: var(--white);
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(201,149,76,0.12);
  position: sticky;
  top: 72px;
  z-index: 90;
  box-shadow: 0 4px 24px rgba(44,31,20,0.06);
}
.projects-filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: none;
  border: 1.5px solid rgba(201,149,76,0.20);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--grad-gold);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,149,76,0.35);
}
.filter-tab i { font-size: 0.8rem; }

.projects-count {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}
.projects-count span {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
}

/* ============================================
   PROJECTS PAGE – SECTION ROW HEADER
   ============================================ */
.projects-section {
  background: linear-gradient(160deg, #FBF7F0 0%, #F5ECD7 50%, #FDF0F2 100%);
  padding: 70px 0 90px;
}

.section-row-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,149,76,0.18);
}
.section-row-header i {
  font-size: 1.5rem;
  color: var(--gold);
  background: var(--gold-pale);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section-row-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--dark);
}

/* ============================================
   PROJECTS PAGE – REELS GRID
   ============================================ */
.projects-reels-row {
  margin-bottom: 3.5rem;
}

.reels-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.reel-card {
  flex: 0 0 auto;
}
.reel-wrap {
  width: 260px;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1210;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 3px solid rgba(201,149,76,0.22);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.reel-wrap:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,0.5); }

.reel-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.reel-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: background 0.3s ease;
  border-radius: 18px;
}
.reel-play-btn i {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,149,76,0.88);
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.reel-wrap:hover .reel-play-btn { background: rgba(0,0,0,0.12); }
.reel-wrap:hover .reel-play-btn i { transform: scale(1.12); background: var(--gold); }
.reel-wrap.playing .reel-play-btn { display: none; }

.reel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(44,31,20,0.8), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 0 0 18px 18px;
}
.reel-wrap:hover .reel-overlay { opacity: 1; }
.reel-overlay span {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.reel-overlay span i { color: var(--gold-light); }

/* ============================================
   PROJECTS PAGE – MASONRY GALLERY
   ============================================ */
.projects-masonry {
  columns: 4;
  column-gap: 14px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
}

.masonry-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gold-pale);
}

.masonry-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.masonry-item:hover .masonry-img-wrap img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,31,20,0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  border-radius: 12px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

.lightbox-btn {
  background: rgba(201,149,76,0.9);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.lightbox-btn:hover { background: var(--gold); transform: scale(1.1); }

/* Hidden items when filtered */
.project-item.hidden {
  display: none;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,6,4,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  display: block;
}

.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(201,149,76,0.9);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}
.lightbox-close:hover { background: var(--gold); transform: scale(1.1) rotate(90deg); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,149,76,0.75);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
  .projects-masonry { columns: 3; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Logo image size on mobile */
  .logo-img { height: 52px; }

  /* Hero mobile fix - override the hero-grid */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero { flex-direction: column; text-align: center; padding: 110px 0 60px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-image-float.one { left: -20px; }
  .hero-image-float.two { right: -10px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { max-width: 500px; margin: 0 auto; }
  .about-text .section-title { text-align: center; }
  .about-text .section-divider { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; }

  .projects-masonry { columns: 2; }
  .reels-grid { justify-content: center; }
  .video-reels-showcase { gap: 1rem; }
  .reel-card-home { width: 44vw; max-width: 200px; }
  .reel-wrap-home { width: 100%; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-all-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; aspect-ratio: 16/9; }
  .hero-image-float { display: none; }
  .hero { padding-top: 110px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-btn::before { display: none; }

  .projects-masonry { columns: 2; }
  .projects-filter-bar { top: 64px; }
  .reel-wrap { width: 180px; }
  .reel-card-home { width: 42vw; max-width: 180px; }
  .video-reels-showcase { gap: 0.75rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 400px) {
  .projects-masonry { columns: 1; }
}

/* ---- Mobile Nav Logo ---- */
.mobile-nav-logo {
  display: block;
  margin-bottom: 0.5rem;
}
.mobile-nav-logo img {
  height: 80px;
  width: auto;
}
