/* ============================================================
   SAACHI WEARS — Static Landing Page Stylesheet
   Brand palette: Deep Maroon + Royal Gold + Ivory Cream
   ============================================================ */

:root {
  --maroon: #800020;
  --maroon-dark: #5c0017;
  --maroon-light: #a52a3f;
  --gold: #d4af37;
  --gold-light: #f5d061;
  --gold-dark: #a98622;
  --ivory: #fbf6ee;
  --cream: #f5ede0;
  --brown: #3d2418;
  --brown-soft: #6b4a36;
  --emerald: #1a7f4f;
  --peacock: #1e5d8a;
  --saffron: #e89f1f;
  --white: #ffffff;
  --border: #e5dccb;
  --shadow-sm: 0 2px 8px rgba(61, 36, 24, 0.08);
  --shadow-md: 0 8px 24px rgba(61, 36, 24, 0.12);
  --shadow-lg: 0 20px 50px rgba(61, 36, 24, 0.18);
  --radius: 6px;
  --container: 1280px;
  --header-h: 90px;
  --header-h-mobile: 70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  background: var(--ivory);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', 'Georgia', serif; line-height: 1.2; color: var(--maroon); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.5rem; }
p  { color: var(--brown-soft); }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.text-gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f5d061 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sanskrit {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  background: transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--maroon);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--maroon);
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-outline:hover {
  background: var(--ivory);
  color: var(--maroon);
}
.btn-dark {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--maroon);
  border-color: var(--gold);
}

/* ============= ANNOUNCEMENT BAR ============= */
.announcement {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
}
.announcement::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 208, 97, 0.35), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============= HEADER ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
@media (max-width: 900px) {
  .header-inner { height: var(--header-h-mobile); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #f5d061 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--maroon); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.nav-icons {
  display: flex; align-items: center; gap: 16px;
}
.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--brown);
  padding: 6px;
  display: grid; place-items: center;
  transition: color 0.2s;
  position: relative;
}
.nav-icon-btn:hover { color: var(--maroon); }
.nav-icon-btn .badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--gold);
  color: var(--maroon);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
}

.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--maroon); padding: 6px;
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: block; }
  .logo-tagline { display: none; }
  .logo-mark { width: 40px; height: 40px; font-size: 1.2rem; }
  .logo-name { font-size: 1.2rem; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h-mobile);
  left: 0; right: 0;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 24px;
  max-height: calc(100vh - var(--header-h-mobile));
  overflow-y: auto;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============= HERO ============= */
.hero {
  position: relative;
  height: clamp(520px, 80vh, 780px);
  overflow: hidden;
  background: var(--maroon);
}
.hero-toran {
  position: absolute; top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--maroon-light), var(--gold), var(--maroon-light), var(--gold));
  z-index: 5;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-image {
  position: absolute; inset: 0;
  display: block;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(92, 0, 23, 0.85), rgba(92, 0, 23, 0.45) 50%, rgba(92, 0, 23, 0.1));
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center;
  color: var(--ivory);
}
.hero-content .container { width: 100%; }
.hero-text { max-width: 640px; }
.hero-text h1 {
  color: var(--ivory);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-text .sanskrit { color: var(--gold-light); margin-bottom: 1rem; display: block; }
.hero-text p {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-nav {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px;
  z-index: 5;
}
.hero-dot {
  width: 36px; height: 3px;
  background: rgba(251, 246, 238, 0.4);
  border: none; cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: var(--gold); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 5;
}
.hero-arrow:hover { background: var(--gold); color: var(--maroon); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
@media (max-width: 700px) { .hero-arrow { display: none; } }

/* ============= SECTIONS ============= */
section { padding: 96px 0; position: relative; }
@media (max-width: 700px) { section { padding: 64px 0; } }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.section-header p { font-size: 1.05rem; margin-top: 0.5rem; }

.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  margin: 16px 0 24px;
}
.divider-ornament .line {
  height: 1px; width: 60px;
  background: var(--gold);
  opacity: 0.6;
}
.divider-ornament .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============= ABOUT ============= */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #c89a4a 0%, #8a5a2b 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: block;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.about-content h2 { color: var(--maroon); }
.about-content p { margin-bottom: 1rem; font-size: 1.02rem; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 32px;
}
.pillar {
  padding: 20px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.pillar h4 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.pillar p { font-size: 0.88rem; color: var(--brown-soft); }

/* ============= SERVICES ============= */
.services { background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--gold);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: rotate(8deg) scale(1.08); }
.service-icon svg { width: 32px; height: 32px; }

.service-card h3 {
  color: var(--maroon);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.93rem; }

/* ============= FASHION SHOW ============= */
.fashion-show {
  background: var(--maroon-dark);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.fashion-show::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05), transparent 50%);
  pointer-events: none;
}
.fashion-show .container { position: relative; z-index: 2; }
.fashion-show h2 { color: var(--gold-light); }
.fashion-show .section-header p { color: var(--cream); }
.fashion-show .eyebrow { color: var(--gold); }

.fs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-bottom: 64px;
}
.fs-tile {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  cursor: pointer;
}
.fs-tile-img {
  position: absolute; inset: 0;
  display: block;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.fs-tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fs-tile-img img { transition: transform 0.6s ease; }
.fs-tile:hover .fs-tile-img img { transform: scale(1.08); }
.fs-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75));
}
.fs-tile-label {
  position: absolute;
  left: 20px; bottom: 16px; right: 20px;
  z-index: 2;
  color: var(--ivory);
}
.fs-tile-label .eyebrow { color: var(--gold-light); margin-bottom: 4px; }
.fs-tile-label h4 { color: var(--ivory); font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.fs-tile.large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 900px) {
  .fs-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .fs-tile.large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .fs-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .fs-tile.large { grid-column: span 1; }
}

.fs-event {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .fs-event { grid-template-columns: 1fr; text-align: center; }
}
.fs-event-date {
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid rgba(212, 175, 55, 0.3);
}
@media (max-width: 800px) { .fs-event-date { border-right: none; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid rgba(212, 175, 55, 0.3); } }
.fs-event-date .day { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); line-height: 1; }
.fs-event-date .month { letter-spacing: 0.25em; font-size: 0.75rem; text-transform: uppercase; color: var(--cream); margin-top: 6px; }
.fs-event-details h3 { color: var(--gold-light); margin-bottom: 4px; }
.fs-event-details p { color: var(--cream); }

/* ============= NEWSLETTER ============= */
.newsletter {
  background: var(--cream);
  padding: 72px 0;
  text-align: center;
}
.newsletter h2 { color: var(--maroon); }
.newsletter p { max-width: 560px; margin: 0.5rem auto 28px; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--gold); }
@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  color: var(--cream);
  margin: 16px 0 24px;
  opacity: 0.85;
  max-width: 320px;
}
.footer-brand .logo-name { color: var(--gold-light); -webkit-text-fill-color: var(--gold-light); }
.footer-brand .logo-tagline { color: var(--cream); opacity: 0.7; }

.footer-col h4 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--gold-light); opacity: 1; padding-left: 4px; }

.social-row {
  display: flex; gap: 12px;
  margin-top: 12px;
}
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: grid; place-items: center;
  color: var(--gold-light);
  transition: all 0.2s;
}
.social-icon{
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.social-row a:hover { background: var(--gold); color: var(--maroon); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.15);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ============= FLOATING WHATSAPP ============= */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform 0.2s;
}
.whatsapp-icon{
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============= COMING SOON PAGE ============= */
.coming-soon {
  min-height: calc(100vh - var(--header-h));
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.15), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(128, 0, 32, 0.08), transparent 40%);
  pointer-events: none;
}
.coming-soon-card {
  position: relative; z-index: 2;
  background: var(--white);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 640px;
  box-shadow: var(--shadow-lg);
}
.coming-soon-card::before {
  content: '';
  position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.coming-soon-emblem {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--ivory), 0 0 0 6px var(--gold);
}
.coming-soon h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.coming-soon .sanskrit { display: block; margin-bottom: 20px; }
.coming-soon p { max-width: 480px; margin: 0 auto 28px; font-size: 1.02rem; }
.coming-soon .timer-pill {
  display: inline-block;
  padding: 8px 18px;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--maroon);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ============= UTILITIES ============= */
.hidden { display: none !important; }
.no-scroll { overflow: hidden; }

/* Subtle reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.logo-image {
  height: 150px;
  width: auto;
  object-fit: contain;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 150px;
  width: auto;
  object-fit: contain;
}
.logo-image {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.coming-soon-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 5px;
  display: block;
}

.contact-page {
  padding: 120px 0 80px;
  background: #f8f4ee;
}
 
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
 
.contact-breadcrumb {
  color: #8b1538;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
 
.contact-header h1 {
  font-size: 52px;
  margin: 15px 0;
  color: #5a0d23;
}
 
.contact-header p {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  color: #555;
}
 
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
 
.contact-form-card,
.contact-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
 
.contact-form-card h2,
.location-section h2 {
  margin-bottom: 25px;
  color: #5a0d23;
}
 
.form-group {
  margin-bottom: 22px;
}
 
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
 
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}

.form-status {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: #e8f5ee;
  color: #1f7a45;
  border: 1px solid #b7e0c6;
}

.form-status.error {
  background: #fdecec;
  color: #a8242a;
  border: 1px solid #f3c2c2;
}
 
.office-card {
  margin-bottom: 35px;
}
 
.office-card h3 {
  color: #8b1538;
  margin-bottom: 15px;
}
 
.office-card p {
  line-height: 1.8;
  color: #444;
}
 
.location-section iframe {
  border-radius: 20px;
  overflow: hidden;
}
 
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
 
  .contact-header h1 {
    font-size: 40px;
  }
}
/* ================= HERO SLIDER ARROWS ================= */
 
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;                 /* box size stays same */
  height: 58px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(120, 0, 20, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
 
/* LEFT POSITION */
.hero-arrow.prev {
  left: 28px;
}
 
/* RIGHT POSITION */
.hero-arrow.next {
  right: 28px;
}
 
/* ONLY INCREASE ARROW SIZE */
.hero-arrow i {
  font-size: 26px;
  color: #ffffff;
  stroke-width: 3;
  transform: scale(2);   /* increases only arrow */
}
 
/* HOVER EFFECT */
.hero-arrow:hover {
  background: #c9a227;
  border-color: #c9a227;
  transform: translateY(-50%) scale(1.05);
}
