/* =====================================================
   THEME 22 — EVENT MANAGEMENT — LUXURY GOLD & DARK
   ===================================================== */
:root { --t22-primary:       #C9A84C; --t22-primary-light: #E8C96A; --t22-primary-dark:  #A88730; --t22-secondary:     #0E0E12; --t22-secondary-mid: #16161C; --t22-surface:       #1E1E26; --t22-light-bg:      #FAF8F3; --t22-white:         #ffffff; --t22-text-dark:     #0E0E12; --t22-text-mid:      #4A4A60; --t22-text-light:    #9A9AB0; --t22-border:        rgba(201,168,76,0.20); --t22-border-light:  rgba(201,168,76,0.10); --t22-shadow-sm:     0 4px 20px rgba(201,168,76,0.10); --t22-shadow-md:     0 8px 36px rgba(201,168,76,0.18); --t22-shadow-lg:     0 20px 60px rgba(0,0,0,0.30); --t22-radius-sm:     8px; --t22-radius-md:     16px; --t22-radius-lg:     24px; --t22-radius-pill:   999px; --t22-font-display:  "Playfair Display", serif; --t22-font-body:     "DM Sans", sans-serif; }
/* =====================================================
   HERO SECTION
   ===================================================== */
.theme22-hero { position: relative; width: 100%; height: 100vh; min-height: 540px; overflow: hidden; }
.theme22-hero .bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.theme22-hero .video-overlay { position: absolute; inset: 0; background: linear-gradient(
    180deg,
    rgba(14,14,18,0.65) 0%,
    rgba(14,14,18,0.80) 60%,
    rgba(14,14,18,0.95) 100%
  ); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.hero-content { color: var(--t22-white); max-width: 900px; animation: heroReveal22 1.2s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes heroReveal22 {
 from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
 }
.hero-eyebrow { font-family: var(--t22-font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--t22-primary); margin: 0 0 20px; }
.hero-content h1 { font-family: var(--t22-font-display); font-size: clamp(3rem, 9vw, 7rem); font-weight: 900; line-height: 0.95; margin: 0 0 20px; color: var(--t22-white); letter-spacing: 1px; }
.hero-content h1 em { font-style: italic; color: var(--t22-primary); display: block; font-weight: 700; }
.hero-tagline { font-family: var(--t22-font-body); font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 300; color: rgba(255,255,255,0.65); margin: 0 0 40px; letter-spacing: 3px; text-transform: uppercase; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; animation: scrollBounce22 2.2s ease-in-out infinite; }
.hero-scroll svg { width: 18px; height: 18px; stroke: rgba(201,168,76,0.6); }
@keyframes scrollBounce22 {
 0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
 }
/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section-title { font-family: var(--t22-font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--t22-text-dark); margin: 0 0 10px; letter-spacing: 0.5px; }
.section-subtitle { font-family: var(--t22-font-body); font-size: 1rem; color: var(--t22-text-light); margin: 0 0 48px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .t22-label { display: inline-block; color: var(--t22-primary); font-family: var(--t22-font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; padding: 5px 0; margin-bottom: 12px; position: relative; }
.section-header .t22-label::before,
.section-header .t22-label::after { content: "—"; margin: 0 8px; opacity: 0.5; }
/* =====================================================
   CONTACT CARDS
   ===================================================== */
.contact-cards-theme22 { background: var(--t22-light-bg); padding: 54px 32px; gap: 20px; border-top: 1px solid rgba(201,168,76,0.15); }
.contact-cards-theme22 .contact-card { background: var(--t22-white); border: 1px solid var(--t22-border); border-radius: var(--t22-radius-md); padding: 38px 20px 30px; text-align: center; box-shadow: var(--t22-shadow-sm); transition: transform 0.28s ease, box-shadow 0.28s ease; text-decoration: none; position: relative; overflow: hidden; }
.contact-cards-theme22 .contact-card::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--t22-primary), transparent); transform: scaleX(0); transition: transform 0.4s ease; }
.contact-cards-theme22 .contact-card:hover { transform: translateY(-8px); box-shadow: var(--t22-shadow-md); }
.contact-cards-theme22 .contact-card:hover::after { transform: scaleX(1); }
.contact-cards-theme22 .card-icon-wrap { width: 62px; height: 62px; background: linear-gradient(135deg, rgba(201,168,76,0.10), rgba(232,201,106,0.06)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 1px solid var(--t22-border); }
.contact-cards-theme22 .contact-card img { width: 28px; height: 28px; object-fit: contain; }
.contact-cards-theme22 .contact-card p { font-family: var(--t22-font-body); font-size: 0.88rem; font-weight: 600; color: var(--t22-text-dark); margin: 0; letter-spacing: 0.5px; }
/* =====================================================
   POSTER SECTION
   ===================================================== */
.theme22-poster { background: var(--t22-secondary); padding: 90px 48px; position: relative; overflow: hidden; opacity: 0; transform: translateY(40px); animation: fadeUp 1.6s cubic-bezier(0.22,1,0.36,1) forwards; animation-play-state: paused; }
.theme22-poster::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(
    45deg,
    rgba(201,168,76,0.03) 0px,
    rgba(201,168,76,0.03) 1px,
    transparent 1px,
    transparent 40px
  ); pointer-events: none; }
.poster-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; z-index: 1; }
.poster-left { flex: 1; }
.poster-ornament { font-family: var(--t22-font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 4px; color: var(--t22-primary); margin-bottom: 16px; }
.poster-name { font-family: var(--t22-font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--t22-white); font-weight: 900; margin: 0 0 8px; line-height: 1.05; }
.poster-name em { font-style: italic; color: var(--t22-primary); }
.poster-designation { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.50); margin: 0 0 28px; letter-spacing: 0.5px; }
.poster-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.poster-divider::before,
.poster-divider::after { content: ""; flex: 1; height: 1px; background: rgba(201,168,76,0.35); max-width: 60px; }
.poster-divider span { color: var(--t22-primary); font-size: 0.8rem; }
.poster-contact { display: flex; align-items: center; gap: 12px; margin: 0 0 12px; font-size: 1rem; }
.poster-contact i { color: var(--t22-primary); width: 18px; }
.poster-contact a { color: rgba(255,255,255,0.80); font-weight: 400; text-decoration: none; transition: color 0.2s; }
.poster-contact a:hover { color: var(--t22-primary); }
.poster-location { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.15); }
.poster-location-heading { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--t22-primary); margin: 0 0 10px; opacity: 0.8; }
.poster-location p { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin: 0 0 4px; line-height: 1.6; }
.poster-right { flex: 0 0 auto; }
.event-types { display: flex; flex-direction: column; gap: 12px; }
.event-type-chip { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22); border-radius: var(--t22-radius-pill); padding: 12px 28px; font-family: var(--t22-font-body); font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.80); display: flex; align-items: center; gap: 12px; transition: all 0.28s ease; min-width: 200px; }
.event-type-chip i { color: var(--t22-primary); font-size: 0.85rem; }
.event-type-chip:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.50); color: var(--t22-white); transform: translateX(6px); }
/* =====================================================
   SERVICES SECTION
   ===================================================== */
.theme22-services { padding: 90px 32px; background: var(--t22-light-bg); text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto 56px; }
.service-item { position: relative; border-radius: var(--t22-radius-md); overflow: hidden; cursor: pointer; }
.service-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-item:hover img { transform: scale(1.08); }
.service-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,18,0.85) 0%, rgba(201,168,76,0.15) 100%); pointer-events: none; opacity: 0; transition: opacity 0.35s ease; }
.service-item:hover::after { opacity: 1; }
.service-label { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-family: var(--t22-font-display); font-size: 1.1rem; font-weight: 700; color: var(--t22-white); letter-spacing: 0.5px; opacity: 0; transform: translateY(10px); transition: all 0.35s ease; z-index: 2; }
.service-item:hover .service-label { opacity: 1; transform: translateY(0); }
.services-save { text-align: center; }
/* =====================================================
   MAP SECTION
   ===================================================== */
.theme22-map { padding: 90px 32px; background: var(--t22-white); text-align: center; }
.theme22-map .map-wrapper { max-width: 920px; margin: 0 auto; border-radius: var(--t22-radius-lg); overflow: hidden; box-shadow: var(--t22-shadow-lg); border: 1px solid var(--t22-border); }
.theme22-map .map-wrapper iframe { width: 100%; height: 420px; border: 0; display: block; }
/* =====================================================
   PAYMENT SECTION
   ===================================================== */
.theme22-payment { padding: 90px 32px; background: var(--t22-light-bg); text-align: center; }
.theme22-payment .upi-id { display: inline-block; background: var(--t22-white); border: 1px solid var(--t22-border); border-radius: var(--t22-radius-pill); padding: 10px 28px; font-size: 1rem; font-weight: 500; color: var(--t22-text-mid); margin-bottom: 48px; }
.theme22-payment .upi-id strong { color: var(--t22-primary); }
.theme22-payment .payment-icons { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.theme22-payment .payment-icons a { display: flex; align-items: center; justify-content: center; background: var(--t22-white); border: 1px solid var(--t22-border); border-radius: var(--t22-radius-md); padding: 20px 28px; box-shadow: var(--t22-shadow-sm); transition: transform 0.28s, box-shadow 0.28s; }
.theme22-payment .payment-icons a:hover { transform: translateY(-6px); box-shadow: var(--t22-shadow-md); }
.theme22-payment .payment-icons img { width: 80px; height: auto; display: block; }
/* =====================================================
   SOCIAL SECTION
   ===================================================== */
.contact-social-section-theme22 { padding: 90px 32px; background: var(--t22-secondary); text-align: center; }
.contact-social-section-theme22 .section-title { color: var(--t22-white); }
.contact-social-section-theme22 .section-subtitle { color: rgba(255,255,255,0.40); margin-bottom: 0; }
.contact-social-section-theme22 .social-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 36px; }
.contact-social-section-theme22 .social-card { width: 88px; height: 88px; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.22); border-radius: var(--t22-radius-md); display: flex; justify-content: center; align-items: center; transition: all 0.28s ease; text-decoration: none; }
.contact-social-section-theme22 .social-card:hover { background: rgba(201,168,76,0.14); border-color: var(--t22-primary); transform: translateY(-8px); box-shadow: 0 0 28px rgba(201,168,76,0.20); }
.contact-social-section-theme22 .social-card img { width: 42px; height: 42px; object-fit: contain; }
/* =====================================================
   BUTTON — THEME 22
   ===================================================== */
.btn-Know-theme22 { background: linear-gradient(135deg, var(--t22-primary), var(--t22-primary-light)); color: var(--t22-secondary); box-shadow: 0 6px 24px rgba(201,168,76,0.35); font-family: var(--t22-font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 1.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; padding: 0.9rem 2.8rem; border-radius: var(--t22-radius-pill); text-decoration: none; cursor: pointer; border: none; transition: all 0.28s ease; }
.btn-Know-theme22:hover,
.btn-Know-theme22:focus { background: linear-gradient(135deg, var(--t22-primary-dark), var(--t22-primary)); color: var(--t22-secondary); box-shadow: 0 10px 32px rgba(201,168,76,0.45); transform: translateY(-3px); }
/* =====================================================
   SLIDER
   ===================================================== */
.banner .slide-bg::before { background: linear-gradient(to bottom, rgba(14,14,18,0.70) 0%, rgba(14,14,18,0.55) 100%); }
.slide-content h2 { font-family: var(--t22-font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; font-style: italic; color: var(--t22-white); margin-bottom: 10px; }
.slide-content p { font-size: clamp(0.95rem, 2vw, 1.1rem); color: rgba(255,255,255,0.72); margin-bottom: 28px; }
/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
 .poster-content { flex-direction: column; text-align: center; gap: 40px; }
.poster-divider { justify-content: center; }
.poster-contact { justify-content: center; }
.poster-location { text-align: center; }
.event-types { flex-direction: row; flex-wrap: wrap; justify-content: center; }
.event-type-chip { min-width: auto; }
.services-grid { grid-template-columns: repeat(2,1fr); }
.contact-cards-theme22 { padding: 44px 20px; }
 }
@media (max-width: 576px) {
 .theme22-hero { height: 100svh; min-height: 480px; }
.hero-content h1 { font-size: 2.8rem; }
.contact-cards-theme22 { padding: 36px 14px; gap: 10px; }
.theme22-poster { padding: 52px 20px; }
.services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.service-item img { height: 155px; }
.theme22-map .map-wrapper iframe { height: 260px; }
.section-title { font-size: 1.8rem; }
 }
@media (max-width: 380px) {
 .services-grid { grid-template-columns: 1fr; }
.service-item img { height: 200px; }
 }
