
  :root {
    --bg-dark: #0d0b0a;
    --bg-dark-card: rgba(26, 22, 20, 0.75);
    --accent-gold: #f0923c;
    --accent-gold-rgb: 229, 169, 98;
    --accent: #f0923c;
    --text-muted: rgba(255, 255, 255, 0.55);
    --border-glow: rgba(229, 169, 98, 0.2);
    --transition-lux: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h: 90px;
    --nav-h-scrolled: 70px;
  }

  body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
  }
html{
    overflow-x:clip;
}

body{
    overflow-x:clip;
    position:relative;
}
.hero,
.ab-hero,
.ev-hero,
.gal-hero,
.svc-hero{
    overflow:hidden;
}
@media (max-width:767px){

    .o1,
    .o2{
        display:none;
    }

}
  /* Premium Navigation */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: var(--transition-lux);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(17, 15, 14, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  #nav.scrolled {
    height: var(--nav-h-scrolled);
    background: rgba(17, 15, 14, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  /* Brand Logo styling */
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition-lux);
  }

  .logo:hover {
    opacity: 0.95;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f3a860 0%, var(--accent) 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(240, 146, 60, 0.3);
    transition: var(--transition-lux);
  }

  .logo:hover .logo-mark {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(240, 146, 60, 0.45);
  }

  .logo-mark i {
    font-size: 20px;
    color: #fff;
    animation: sparkle 4s linear infinite;
  }

  @keyframes sparkle {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15) rotate(10deg); }
  }

  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
  }

  .logo-name span {
    color: var(--accent);
    font-weight: 300;
    font-style: italic;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-lux);
    position: relative;
    text-decoration: none;
    padding: 6px 0;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: var(--transition-lux);
    transform: translateX(-50%);
  }

  .nav-links a:hover {
    color: #fff;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* Right navigation actions */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-lux);
  }

  .nav-tel:hover {
    color: var(--accent);
    transform: translateY(-1px);
  }

  .nav-tel i {
    color: var(--accent);
    font-size: 14px;
  }

  /* Custom premium buttons */
  .btn-a {
    background: linear-gradient(135deg, #f5bc83 0%, var(--accent) 100%);
    color: #110f0e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12.5px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-lux);
    box-shadow: 0 4px 20px rgba(240, 146, 60, 0.2);
  }

  .btn-a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 146, 60, 0.35);
    color: #110f0e;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  }

  /* Burger Icon Transformation styling */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 510;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: var(--transition-lux);
    transform-origin: left center;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg);
    background-color: var(--accent);
  }

  .burger.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: var(--accent);
  }

  /* Mobile Navigation Drawer */
  .mob-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(17, 15, 14, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 120px 40px 60px;
    z-index: 490;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .mob-nav.open {
    right: 0;
  }

  .mob-nav a {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-lux);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mob-nav a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-lux);
    color: var(--accent);
  }

  .mob-nav a:hover {
    color: #fff;
    padding-left: 8px;
  }

  .mob-nav a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  /* Backdrop overlay for focus on Mobile Drawer */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 480;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Responsive adjustments */
  @media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .burger { display: flex; }
  }

  /* Refined Hero CSS */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) contrast(1.05);
    transition: var(--transition-lux);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(13, 11, 10, 0.96) 0%, rgba(13, 11, 10, 0.8) 50%, rgba(13, 11, 10, 0.35) 100%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 65% 75% at 30% 50%, black 15%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 65% 75% at 30% 50%, black 15%, transparent 100%);
  }

  /* Ambient Orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
  }

  .o1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.15) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: floatOrb1 15s ease-in-out infinite;
  }

  .o2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: floatOrb2 20s ease-in-out infinite;
  }

  @keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -50px) scale(1.1); }
  }

  @keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(-30px, 40px) scale(0.9); }
  }

  /* Interactive / Premium Content Styling */
  .hero-inner-container {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 169, 98, 0.08);
    border: 1px solid rgba(229, 169, 98, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-gold);
    animation: pulseAnimation 2s ease-in-out infinite;
  }

  @keyframes pulseAnimation {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
  }

  .hero-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 24px;
  }

  .hero-h em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
  }

  .hero-p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
  }

  /* Premium Buttons */
  .btn-lux-primary {
    background: linear-gradient(135deg, #f5c083 0%, var(--accent-gold) 100%);
    color: #0d0b0a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    transition: var(--transition-lux);
    box-shadow: 0 4px 30px rgba(229, 169, 98, 0.25);
  }

  .btn-lux-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(229, 169, 98, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
  }

  .btn-lux-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    padding: 16px 36px;
    border-radius: 8px;
    transition: var(--transition-lux);
    backdrop-filter: blur(10px);
  }

  .btn-lux-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* Stats Grid */
  .hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    margin-top: 45px;
  }

  .stat-box {
    transition: var(--transition-lux);
  }

  .stat-box:hover {
    transform: translateY(-4px);
  }

  .hs-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
  }

  .hs-num em {
    color: var(--accent-gold);
    font-style: normal;
  }

  .hs-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
  }

  /* Premium Dynamic Event Cards */
  .event-card-container {
    perspective: 1000px;
  }

  .h-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(229, 169, 98, 0.03);
    transition: var(--transition-lux);
    position: relative;
  }

  .h-card:hover {
    border-color: rgba(229, 169, 98, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(229, 169, 98, 0.08);
    transform: translateY(-5px);
  }

  .h-card-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
  }

  .h-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .h-card:hover .h-card-img {
    transform: scale(1.06);
  }

  .h-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13, 11, 10, 0.85) 100%);
  }

  .h-card-body {
    padding: 24px;
    position: relative;
  }

  .h-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 169, 98, 0.12);
    border: 1px solid rgba(229, 169, 98, 0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 10px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .h-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .h-card-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .h-card-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .h-card-meta i {
    color: var(--accent-gold);
    font-size: 13px;
  }

  /* Calculator Slider Customization */
  .calculator-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.01);
  }

  .lux-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: var(--transition-lux);
  }

  .lux-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(229, 169, 98, 0.5);
    transition: var(--transition-lux);
  }

  .lux-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
  }

  .h-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
  }

  .h-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--accent-gold);
  }

  /* Mini Grid Quick Specs */
  .h-mini {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-lux);
  }

  .h-mini:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 169, 98, 0.15);
    transform: translateY(-3px);
  }

  .h-mini-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(229, 169, 98, 0.05);
    border: 1px solid rgba(229, 169, 98, 0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: var(--transition-lux);
  }

  .h-mini:hover .h-mini-ico {
    background: rgba(229, 169, 98, 0.12);
    transform: scale(1.05);
  }

  .h-mini-ico i {
    font-size: 18px;
    color: var(--accent-gold);
  }

  .h-mini-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
  }

  .h-mini-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
  }

  /* Interactive Swapper Buttons */
  .swapper-container {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .btn-swap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    transition: var(--transition-lux);
  }

  .btn-swap.active {
    background: rgba(229, 169, 98, 0.15);
    border-color: var(--accent-gold);
    color: #ffffff;
  }

  /* Toast Notification */
  .lux-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(26, 22, 20, 0.95);
    border: 1px solid var(--accent-gold);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 1050;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    gap: 12px;
  }

  .lux-toast.show {
    display: flex;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideUp {
    from { transform: translateY(100%) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }
/* ── CLIENTS SECTION ── */
  .clients {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.012);
    overflow: hidden;
  }

  .clients-lbl {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .ticker-wrap {
    overflow: hidden;
    position: relative;
  }

  /* Soft luxury gradient masking to fade edge items dynamically */
  .ticker-wrap::before,
  .ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .ticker-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
  }

  .ticker-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark), transparent);
  }

  .ticker {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: tick 26s linear infinite;
  }

  @keyframes tick {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .ticker:hover {
    animation-play-state: paused;
  }

  .p-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.32;
    transition: opacity 0.3s;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
  }

  .p-logo:hover {
    opacity: 0.65;
  }

  .p-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(240, 146, 60, 0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .p-ico i {
    font-size: 14px;
    color: var(--accent);
  }



  
/* ── ABOUT SECTION EXCLUSIVES ── */
/* ── ABOUT SECTION EXCLUSIVES ── */
  .about {
    padding: 110px 0;
    background-color: var(--bg-dark);
    overflow: hidden; /* Prevents AOS horizontal scroll overflow */
  }

  .about-imgs {
    position: relative;
    padding-bottom: 40px;
  }

  .about-img-main {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .about-img-sm {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 52%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }

  .about-badge {
    position: absolute;
    top: 28px;
    left: -22px;
    background: rgba(17, 15, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 3;
  }

  .ab-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
  }

  .ab-lbl {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 4px;
  }

  /* Shared Typography fallbacks */
  .heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
  }

  .heading em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
  }

  .bar {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 18px 0 24px;
  }

  .feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-lux);
    height: 100%;
  }

  .feat:hover {
    border-color: rgba(240, 146, 60, 0.2);
    background: rgba(240, 146, 60, 0.04);
    transform: translateY(-2px);
  }

  .feat-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(229, 169, 98, 0.05);
    border: 1px solid rgba(229, 169, 98, 0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feat-ico i {
    font-size: 17px;
    color: var(--accent-gold);
  }

  .feat-ttl {
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
  }

  .feat-txt {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    object-fit: cover;
    margin-left: -10px;
  }

  .t-avatar:first-child {
    margin-left: 0;
  }

  .t-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid var(--bg-dark);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 700;
    color: #110f0e;
    margin-left: -10px;
    z-index: 2;
  }

  @media (max-width: 576px) {
    .about-img-sm {
      right: 0;
      width: 60%;
    }
    .about-badge {
      left: 0;
      top: 10px;
    }
  }



/* ── SERVICES SECTION EXCLUSIVES ── */
  .services {
    padding: 110px 0;
    background-color: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden; /* Prevents AOS horizontal scroll overflow */
  }

  .svc {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.022);
    position: relative;
    transition: var(--transition-lux);
    height: 100%;
  }

  .svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(240, 146, 60, 0.3));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 3;
  }

  .svc:hover {
    border-color: rgba(229, 169, 98, 0.3);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
  }

  .svc:hover::before {
    transform: scaleX(1);
  }

  .svc-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
  }

  .svc-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .svc:hover .svc-img {
    transform: scale(1.05);
  }

  .svc-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(229, 169, 98, 0.05);
    border: 1px solid rgba(229, 169, 98, 0.15);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: var(--transition-lux);
  }

  .svc:hover .svc-ico {
    background: rgba(229, 169, 98, 0.15);
    transform: scale(1.05);
  }

  .svc-ico i {
    font-size: 22px;
    color: var(--accent-gold);
  }

  .svc-ttl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }

  .svc-txt {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
  }

  .stag {
    font-size: 11px;
    padding: 4px 11px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .svc.hot {
    border-color: rgba(229, 169, 98, 0.25);
    background: linear-gradient(155deg, rgba(229, 169, 98, 0.08), rgba(229, 169, 98, 0.02));
  }

  .hot-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold);
    color: #110f0e;
    font-size: 10px;
    padding: 4px 11px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.4px;
    z-index: 4;
  }






















  /* ── EVENTS SECTION EXCLUSIVES ── */
  .events {
    padding: 110px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
  }

  .ev-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.022);
    transition: var(--transition-lux);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .ev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
    border-color: rgba(229, 169, 98, 0.25);
  }

  .ev-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .ev-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  /* Specific height treatment for the featured column on desktop viewports */
  @media (min-width: 992px) {
    .ev-card.tall .ev-img {
      height: 340px;
    }
  }

  .ev-card:hover .ev-img {
    transform: scale(1.05);
  }

  .ev-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-gold);
    color: #110f0e;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
  }

  .ev-date-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(17, 15, 14, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    z-index: 2;
  }

  .ev-date-pill .d {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }

  .ev-date-pill .m {
    font-size: 10px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .ev-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .ev-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .ev-loc i {
    color: var(--accent-gold);
    font-size: 11px;
  }

  .ev-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: auto;
  }

  .ev-card.tall .ev-name {
    font-size: 24px;
  }

  .ev-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 20px;
  }

  .ev-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--accent-gold);
  }

  .ev-seats {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .ev-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
    transition: color 0.2s ease;
    text-decoration: none;
  }

  .ev-btn:hover {
    color: var(--accent-gold);
  }




  /* ── WHY SECTION EXCLUSIVES ── */
  .why {
    padding: 110px 0;
    background-color: #fcfbfa; /* High fidelity light fallback canvas background color */
    color: #110f0e;
    overflow: hidden;
  }

  .why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .wi {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(17, 15, 14, 0.08);
    background: rgba(17, 15, 14, 0.01);
    transition: var(--transition-lux);
  }

  .wi:hover {
    border-color: rgba(240, 146, 60, 0.25);
    background: rgba(240, 146, 60, 0.04);
    transform: translateX(4px);
  }

  .wi-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    flex-shrink: 0;
    width: 38px;
  }

  .wi-ttl {
    font-size: 14.5px;
    font-weight: 500;
    color: #110f0e;
    margin-bottom: 4px;
  }

  .wi-txt {
    font-size: 12.5px;
    color: #555250;
    line-height: 1.65;
  }

  /* Stats Visual Matrix Blocks */
  .wstat {
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    transition: var(--transition-lux);
  }

  .wstat:hover {
    transform: translateY(-4px);
  }

  .wstat i {
    font-size: 26px;
    margin-bottom: 4px;
  }

  /* Metric Card Theme Specifications */
  .wstat.gold-theme {
    background: var(--accent-gold);
    color: #110f0e;
  }
  .wstat.gold-theme i { color: rgba(17, 15, 14, 0.6); }
  .wstat.gold-theme .ws-lbl { color: rgba(17, 15, 14, 0.75); }

  .wstat.dark-theme {
    background: #110f0e;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .wstat.dark-theme i { color: rgba(255, 255, 255, 0.6); }
  .wstat.dark-theme .ws-num { color: #fff; }
  .wstat.dark-theme .ws-lbl { color: rgba(255, 255, 255, 0.7); }

  .wstat.dark2-theme {
    background: #1a1817;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }
  .wstat.dark2-theme i { color: rgba(255, 255, 255, 0.6); }
  .wstat.dark2-theme .ws-num { color: #fff; }
  .wstat.dark2-theme .ws-lbl { color: rgba(255, 255, 255, 0.7); }

  .wstat.trans-gold-theme {
    background: rgba(240, 146, 60, 0.06);
    border: 1px solid rgba(240, 146, 60, 0.15);
    color: #110f0e;
  }
  .wstat.trans-gold-theme i { color: var(--accent-gold); }
  .wstat.trans-gold-theme .ws-num { color: var(--accent-gold); }
  .wstat.trans-gold-theme .ws-lbl { color: #555250; }

  .ws-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
  }

  .ws-lbl {
    font-size: 12.5px;
    line-height: 1.4;
  }



  /* ── PROCESS SECTION EXCLUSIVES ── */
  .process {
    padding: 110px 0;
    background-color: var(--bg-dark-alt, #1a1817);
    overflow: hidden;
  }

  /* Connecting tracking bar architecture */
  .process-timeline-track {
    position: relative;
  }

  @media (min-width: 992px) {
    .process-timeline-track::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-gold) 20%, rgba(229, 169, 98, 0.2) 80%, transparent);
      z-index: 1;
    }
  }

  .step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 10px;
  }

  .step-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid rgba(229, 169, 98, 0.3);
    background: var(--bg-dark-alt, #1a1817);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16, 1, 0.3, 1));
    margin-bottom: 20px;
  }

  .step-ring i {
    font-size: 22px;
    color: var(--accent-gold);
  }

  .step-node:hover .step-ring {
    border-color: var(--accent-gold);
    background: rgba(229, 169, 98, 0.08);
    transform: scale(1.05);
  }

  .s-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #110f0e;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
    font-family: sans-serif;
  }

  .s-ttl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
  }

  .s-txt {
    font-size: 12.5px;
    color: var(--text-muted, #a5a2a0);
    line-height: 1.65;
  }





  /* ── TESTIMONIALS SECTION EXCLUSIVES ── */
  .testimonials {
    padding: 110px 0;
    background-color: var(--bg-dark, #110f0e);
    overflow: hidden;
  }

  .tcard {
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16, 1, 0.3, 1));
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .tcard:hover {
    border-color: rgba(229, 169, 98, 0.25);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
  }

  /* Featured Testimonial Card Styling Variation */
  .tcard.ft {
    border-color: rgba(229, 169, 98, 0.25);
    background: linear-gradient(145deg, rgba(229, 169, 98, 0.08), rgba(229, 169, 98, 0.02));
  }

  .tcard::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 130px;
    color: var(--accent-gold);
    opacity: 0.05;
    position: absolute;
    top: -25px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
  }

  .t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }

  .t-stars i {
    font-size: 12px;
    color: var(--accent-gold);
  }

  .t-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
  }

  .t-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 18px;
  }

  .t-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(229, 169, 98, 0.3);
    flex-shrink: 0;
  }

  .t-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .t-role {
    font-size: 11px;
    color: var(--text-muted, #a5a2a0);
  }





/* ── GALLERY ── */
.gallery{padding:110px 0;background:var(--dark3)}
.g-head{display:flex;align-items:flex-end;justify-content:space-between;max-width:var(--max-w);margin:0 auto 44px;padding:0 5%}
.g-head .heading{color:#fff;margin-top:10px}
.g-grid{max-width:var(--max-w);margin:0 auto;padding:0 5%;display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:auto auto;gap:12px}
.g-item{border-radius:14px;overflow:hidden;position:relative;cursor:pointer}
.g-item img{width:100%;height:100%;object-fit:cover;min-height:160px;transition:transform .5s}
.g-item:hover img{transform:scale(1.06)}
.g-item:nth-child(1){grid-column:span 2;grid-row:span 2}
.g-item:nth-child(1) img{min-height:340px}
.g-item:nth-child(6){grid-column:span 2}
.g-item:nth-child(6) img{min-height:180px}
.g-hover{position:absolute;inset:0;background:rgba(17,15,14,0);display:flex;align-items:center;justify-content:center;opacity:0;transition:all .3s}
.g-item:hover .g-hover{background:rgba(17,15,14,.45);opacity:1}
.g-zoom{width:46px;height:46px;border-radius:50%;background:rgba(240,146,60,.85);display:grid;place-items:center}
.g-zoom i{font-size:18px;color:#fff}
.g-label{position:absolute;bottom:12px;left:12px;background:rgba(17,15,14,.78);backdrop-filter:blur(6px);border-radius:8px;padding:5px 12px;font-size:11px;color:rgba(255,255,255,.75);font-weight:500}

/* ── CTA ── */
.cta{padding:110px 5%;background:linear-gradient(130deg,#1c1612 0%,#261c10 60%,#1c1612 100%);position:relative;overflow:hidden;text-align:center}
.cta::before{content:'';position:absolute;top:-120px;left:50%;transform:translateX(-50%);width:760px;height:760px;background:radial-gradient(circle,rgba(240,146,60,.13) 0%,transparent 65%);pointer-events:none}
.cta-bg-img{position:absolute;inset:0;opacity:.06}
.cta-bg-img img{width:100%;height:100%;object-fit:cover}
.cta-inner{position:relative;z-index:1;max-width:700px;margin:0 auto}
.cta-deco{position:absolute;font-family:'Cormorant Garamond',serif;font-size:220px;font-weight:700;color:var(--accent);top:50%;left:50%;transform:translate(-50%,-50%);letter-spacing:-12px;pointer-events:none;white-space:nowrap;line-height:1;opacity:.04}
.cta .heading{color:#fff;margin:14px 0 16px}
.cta .muted-text{max-width:480px;margin:0 auto 38px}
.cta-btns{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}
.cta-strip{display:flex;align-items:center;justify-content:center;gap:32px;margin-top:48px;padding-top:40px;border-top:1px solid rgba(255,255,255,.08);flex-wrap:wrap}
.cs-item{display:flex;align-items:center;gap:10px;font-size:13.5px;color:rgba(255,255,255,.55)}
.cs-item i{color:var(--accent);font-size:16px}
/* ── SECONDARY CALL BUTTON (GHOST VARIANT) ── */
.btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  padding: 14px 34px;
  text-decoration: none;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover & Interactive States */
.btn-g:hover {
  color: #110f0e;
  background-color: var(--accent-gold, #e5a962);
  border-color: var(--accent-gold, #e5a962);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229, 169, 98, 0.2);
}

/* Active Pressed State */
.btn-g:active {
  transform: translateY(0);
}

/* Icon-Specific Micro-Interaction */
.btn-g i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-g:hover i {
  transform: scale(1.1) rotate(-10deg);
}
/* ── CONTACT SECTION EXCLUSIVES ── */
  .contact {
    padding: 110px 0;
    background-color: #fcfbfa; /* High-fidelity light canvas backdrop */
    color: #110f0e;
    overflow: hidden;
  }

  .ci-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ci {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .ci-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(240, 146, 60, 0.06);
    border: 1px solid rgba(240, 146, 60, 0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .ci-ico i {
    font-size: 18px;
    color: var(--accent-gold, #e5a962);
  }

  .ci-lbl {
    font-size: 11.5px;
    color: #726e6b;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .ci-val {
    font-size: 14.5px;
    font-weight: 500;
    color: #110f0e;
    line-height: 1.4;
  }

  .soc-row {
    display: flex;
    gap: 12px;
    margin-top: 36px;
  }

  .soc {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(17, 15, 14, 0.03);
    border: 1px solid rgba(17, 15, 14, 0.08);
    display: grid;
    place-items: center;
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16, 1, 0.3, 1));
    cursor: pointer;
    text-decoration: none;
  }

  .soc i {
    font-size: 17px;
    color: #4a4745;
    transition: color 0.2s ease;
  }

  .soc:hover {
    background: rgba(240, 146, 60, 0.08);
    border-color: rgba(240, 146, 60, 0.25);
    transform: translateY(-3px);
  }

  .soc:hover i {
    color: var(--accent-gold, #e5a962);
  }

  /* Interactive Booking Card Form Elements */
  .cform.home {
    background: #ffffff;
    border-radius: 22px;
    padding: 42px;
    border: 1px solid rgba(17, 15, 14, 0.05);
    box-shadow: 0 24px 70px rgba(84, 83, 83, 0.06);
  }

  @media (max-width: 575.98px) {
    .cform.home {
      padding: 24px;
    }
  }

  .cform.home .cform-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #110f0e;
    margin-bottom: 4px;
  }

  .cform.home .cform-sub {
    font-size: 13.5px;
    color: #726e6b;
    margin-bottom: 32px;
  }

  .cform.home .fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
  }

 .cform.home .fg label {
    font-size: 12.5px;
    font-weight: 600;
    color: #4a4745;
    letter-spacing: 0.2px;
  }

  .cform.home .fg input, .cform.home .fg select,.cform.home .fg textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid #e8e4de;
    background: #faf8f5;
    font-size: 14px;
    color: #110f0e;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .cform.home .fg input:focus, .cform.home .fg select:focus, .cform.home .fg textarea:focus {
    border-color: var(--accent-gold, #e5a962);
    box-shadow: 0 0 0 4px rgba(240, 146, 60, 0.1);
    background: #fff;
  }

  .cform.home .fg textarea {
    resize: vertical;
    min-height: 110px;
  }

 .cform.home .btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-gold, #e5a962);
    color: #110f0e;
    border: none;
    font-weight: 600;
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16, 1, 0.3, 1));
    cursor: pointer;
    letter-spacing: 0.2px;
  }

  .cform.home .btn-submit:hover {
    background: #d99950;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(240, 146, 60, 0.25);
  }

  .cform.home .btn-submit i {
    transition: transform 0.25s ease;
    font-size: 14px;
  }

 .cform.home .btn-submit:hover i {
    transform: translate(3px, -2px);
  }

 .cform.home .form-note {
    text-align: center;
    font-size: 11.5px;
    color: #726e6b;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

 .cform.home .form-note i {
    color: var(--accent-gold, #e5a962);
    font-size: 13px;
  }

/* ── FOOTER ── */
/* ── FOOTER SECTION EXCLUSIVES ── */
  footer {
    background-color: #110f0e; /* Semantic deep dark canvas backdrop */
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
  }

  .ft-brand p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin: 16px 0 24px;
  }

  .ft-col-h {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    font-weight: 700;
  }

  .ft-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .ft-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
    width: fit-content;
  }

  .ft-links a:hover {
    color: var(--accent-gold, #e5a962);
  }

  /* Sub-footer Layout Bottom Rule Elements */
  .ft-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 16px;
  }

  .ft-bot a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .ft-bot a:hover {
    color: var(--accent-gold, #e5a962);
  }

  /* ── SCROLL TO TOP ACCELERATOR ── */
  #stBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gold, #e5a962);
    color: #110f0e;
    border: none;
    display: grid;
    place-items: center;
    font-size: 18px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 500;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(229, 169, 98, 0.3);
  }

  #stBtn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #stBtn:hover {
    background: #d99950;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(229, 169, 98, 0.45);
  }
/* responsive */
@media(max-width:1024px){
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .ev-grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:repeat(3,1fr);gap:28px}
  .steps::before{display:none}
  .test-grid{grid-template-columns:1fr 1fr}
  .g-grid{grid-template-columns:repeat(3,1fr)}
  .g-item:nth-child(1){grid-column:span 2}
  .ft-top{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links,.nav-tel,.nav-right .btn-a{display:none}
  .burger{display:flex}
  .hero-inner{grid-template-columns:1fr;padding-top:calc(var(--nav-h) + 50px);text-align:center}
  .hero-h em{display:block}
  .hero-btns,.hero-stats{justify-content:center}
  .hero-right{justify-content:center}
  .about-in,.why-in,.contact-in{grid-template-columns:1fr;gap:44px}
  .about-imgs{padding-bottom:20px}
  .about-img-sm{right:0}
  .about-badge{left:0}
  .why-right{grid-template-columns:1fr 1fr}
  .svc-grid,.ev-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .test-grid{grid-template-columns:1fr}
  .g-grid{grid-template-columns:1fr 1fr}
  .g-item:nth-child(1){grid-column:span 2}
  .g-item:nth-child(6){grid-column:span 2}
  .form-row{grid-template-columns:1fr}
  .ft-top{grid-template-columns:1fr 1fr;gap:28px}
  .ev-head,.g-head{flex-direction:column;align-items:flex-start;gap:14px}
}
@media(max-width:480px){
  .hero-h{font-size:44px}
  .why-right,.steps{grid-template-columns:1fr}
  .ft-top{grid-template-columns:1fr}
  .g-grid{grid-template-columns:1fr}
  .g-item:nth-child(n){grid-column:span 1}
}






/* about page csss */


  /* ── PAGE HERO ── */
  .ab-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-h, 90px);
  }

  .ab-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .ab-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.55) contrast(1.05);
  }

  .ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(13,11,10,0.75) 0%,
      rgba(13,11,10,0.55) 50%,
      rgba(13,11,10,0.92) 100%
    );
  }

  .ab-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }

  .ab-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .ab-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
  }

  .ab-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.25s;
  }

  .ab-breadcrumb a:hover { color: var(--accent-gold); }
  .ab-breadcrumb i { font-size: 10px; }
  .ab-breadcrumb span { color: var(--accent-gold); }

  .ab-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .ab-scroll-cue span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  .ab-scroll-line {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(var(--accent-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%       { opacity: 1;   transform: scaleY(1);   }
  }

  /* ── STATS BAR ── */
  .ab-statsbar {
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.055);
    border-bottom: 1px solid rgba(255,255,255,0.055);
    padding: 0;
    overflow: hidden;
  }

  .ab-stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16,1,0.3,1));
  }

  .ab-stat-item.border-0 { border-right: none; }
  .ab-stat-item:hover { background: rgba(229,169,98,0.04); }

  .ab-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 600;
    color: #fff;
    line-height: 1;
  }

  .ab-stat-num em {
    color: var(--accent-gold);
    font-style: normal;
  }

  .ab-stat-lbl {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
    font-weight: 500;
  }

  .ab-stat-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.28);
    margin-top: 4px;
    letter-spacing: 0.3px;
  }

  @media (max-width: 575.98px) {
    .ab-stat-item {
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
  }

  /* ── STORY ── */
  .ab-story {
    padding: 110px 0;
    background-color: var(--bg-dark, #0d0b0a);
    overflow: hidden;
  }

  .ab-timeline {
    display: flex;
    flex-direction: column;
  }

  .ab-tl-item {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .ab-tl-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(229,169,98,0.7);
    min-width: 52px;
    flex-shrink: 0;
    padding-top: 2px;
    line-height: 1;
  }

  .ab-tl-ttl {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
  }

  .ab-tl-txt {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
  }

  /* ── MISSION / VISION / VALUES (light bg) ── */
  .ab-mvv {
    padding: 110px 0;
    background-color: #fcfbfa;
    color: #110f0e;
    overflow: hidden;
  }

  .ab-mvv-card {
    border-radius: 18px;
    padding: 36px 30px;
    border: 1.5px solid rgba(17,15,14,0.08);
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16,1,0.3,1));
  }

  .ab-mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(240,146,60,0.3));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }

  .ab-mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(84,83,83,0.1);
    border-color: rgba(240,146,60,0.25);
  }

  .ab-mvv-card:hover::before { transform: scaleX(1); }

  .ab-mvv-card.ab-mvv-featured {
    border-color: rgba(229,169,98,0.3);
    background: linear-gradient(160deg, rgba(229,169,98,0.06), rgba(229,169,98,0.01));
  }

  .ab-mvv-ico {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: rgba(229,169,98,0.08);
    border: 1px solid rgba(229,169,98,0.2);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: var(--transition-lux);
  }

  .ab-mvv-card:hover .ab-mvv-ico {
    background: rgba(229,169,98,0.16);
    transform: scale(1.05);
  }

  .ab-mvv-ico i {
    font-size: 24px;
    color: var(--accent-gold);
  }

  .ab-mvv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #110f0e;
    margin-bottom: 12px;
  }

  .ab-mvv-text {
    font-size: 13.5px;
    color: #555250;
    line-height: 1.8;
    margin: 0;
  }

  .ab-mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .ab-mvv-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555250;
    line-height: 1.5;
  }

  .ab-mvv-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 6px;
  }

  /* ── TEAM ── */
  .ab-team {
    padding: 110px 0;
    background-color: var(--bg-dark, #0d0b0a);
    overflow: hidden;
  }

  .ab-team-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.022);
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16,1,0.3,1));
  }

  .ab-team-card:hover {
    border-color: rgba(229,169,98,0.25);
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  }

  .ab-tc-img {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

  .ab-tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }

  .ab-team-card:hover .ab-tc-img img { transform: scale(1.06); }

  .ab-tc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,11,10,0.7) 0%, transparent 60%);
    transition: background 0.4s;
  }

  .ab-team-card:hover .ab-tc-overlay {
    background: linear-gradient(0deg, rgba(13,11,10,0.85) 0%, rgba(13,11,10,0.3) 100%);
  }

  .ab-tc-socials {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-lux);
  }

  .ab-team-card:hover .ab-tc-socials {
    opacity: 1;
    transform: translateY(0);
  }

  .ab-tc-soc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
  }

  .ab-tc-soc:hover {
    background: rgba(229,169,98,0.25);
    border-color: var(--accent-gold);
  }

  .ab-tc-soc i { font-size: 14px; color: #fff; }

  .ab-tc-body { padding: 22px; }

  .ab-tc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
  }

  .ab-tc-role {
    font-size: 11.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .ab-tc-bio {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
  }

  /* ── CULTURE (light bg) ── */
  .ab-culture {
    padding: 110px 0;
    background-color: #fcfbfa;
    overflow: hidden;
  }

  .ab-culture-mosaic {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .ab-cm-main {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 260px;
  }

  .ab-cm-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .ab-cm-main:hover img { transform: scale(1.04); }

  .ab-cm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ab-cm-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 140px;
  }

  .ab-cm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .ab-cm-item:hover img { transform: scale(1.06); }

  .ab-cm-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(13,11,10,0.75);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 10.5px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* ── AWARDS ── */
  .ab-awards {
    padding: 110px 0;
    background-color: var(--bg-dark, #0d0b0a);
    overflow: hidden;
  }

  .ab-award-card {
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-lux, all 0.4s cubic-bezier(0.16,1,0.3,1));
  }

  .ab-award-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229,169,98,0.22);
    background: rgba(229,169,98,0.04);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }

  .ab-award-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(229,169,98,0.2), rgba(229,169,98,0.08));
    border: 1px solid rgba(229,169,98,0.25);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: var(--transition-lux);
  }

  .ab-award-card:hover .ab-award-ico {
    background: linear-gradient(135deg, rgba(229,169,98,0.35), rgba(229,169,98,0.15));
    transform: scale(1.05) rotate(5deg);
  }

  .ab-award-ico i {
    font-size: 22px;
    color: var(--accent-gold);
  }

  .ab-award-year {
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .ab-award-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  .ab-award-org {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    line-height: 1.4;
  }

  /* ── RESPONSIVE FIXES ── */
  @media (max-width: 991.98px) {
    .ab-cm-grid { grid-template-columns: 1fr 1fr; }
    .ab-cm-item:last-child { display: none; }
  }

  @media (max-width: 767.98px) {
    .ab-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .ab-culture-mosaic .ab-cm-grid { grid-template-columns: 1fr 1fr; }
    .ab-award-card { flex-direction: column; gap: 14px; }
  }

  @media (max-width: 575.98px) {
    .ab-cm-grid { grid-template-columns: 1fr; }
    .ab-cm-item { height: 180px; }
    .ab-cm-item:last-child { display: block; }
  }




  /* contact page css */


/* CONTACT SECTION */
.contact {
    padding: 110px 0;
    background: #0f0f10;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.contact::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(229,169,98,.08),
        transparent 35%);
    pointer-events:none;
}

/* CONTACT INFO */

.ci-lbl{
    color: rgba(255,255,255,.55);
}

.ci-val{
    color:#fff;
}

.ci-ico{
    background: rgba(229,169,98,.08);
    border:1px solid rgba(229,169,98,.15);
}

.ci-ico i{
    color: var(--accent-gold,#e5a962);
}

/* SOCIAL */

.soc{
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.soc i{
    color:#fff;
}

.soc:hover{
    background: rgba(229,169,98,.1);
    border-color: rgba(229,169,98,.25);
}

.soc:hover i{
    color: var(--accent-gold,#e5a962);
}

/* FORM CARD */
/* =====================================================
ASHIYAA EVENTS - PREMIUM CONTACT FORM
===================================================== */

.cform{
position:relative;
overflow:hidden;


background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

backdrop-filter:blur(24px);
-webkit-backdrop-filter:blur(24px);

border:1px solid rgba(255,255,255,.08);

border-radius:32px;

padding:50px;

box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08);

transition:.5s ease;


}

/* Decorative Glow */

.cform::before{
content:'';
position:absolute;


width:300px;
height:300px;

top:-150px;
right:-120px;

background:
    radial-gradient(
        circle,
        rgba(229,169,98,.12),
        transparent 70%
    );

pointer-events:none;


}

.cform::after{
content:'';
position:absolute;


width:200px;
height:200px;

bottom:-100px;
left:-80px;

background:
    radial-gradient(
        circle,
        rgba(229,169,98,.08),
        transparent 70%
    );

pointer-events:none;


}

/* Header */

.cform-header{
position:relative;
z-index:2;
margin-bottom:35px;
}

.cform-title{
font-family:'Cormorant Garamond',serif;
font-size:48px;
font-weight:600;
line-height:1.1;
color:#fff;
margin-bottom:12px;
}

.cform-sub{
max-width:580px;


color:rgba(255,255,255,.68);

font-size:15px;
line-height:1.9;


}

/* Event Tabs */

.ct-type-tabs{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:35px;
}

.ct-tab{
position:relative;


background:#1a1c1f;

border:1px solid rgba(255,255,255,.08);

color:rgba(255,255,255,.75);

padding:13px 20px;

border-radius:100px;

font-size:13px;
font-weight:600;

transition:.4s ease;


}

.ct-tab i{
margin-right:8px;
}

.ct-tab:hover{
transform:translateY(-2px);


border-color:rgba(229,169,98,.35);

color:#fff;


}

.ct-tab.active{
background:
linear-gradient(
135deg,
rgba(229,169,98,.18),
rgba(229,169,98,.08)
);


border-color:rgba(229,169,98,.35);

color:#e5a962;

box-shadow:
    0 10px 25px rgba(229,169,98,.12);


}

/* Form Groups */

.fg{
margin-bottom:22px;
}

.fg label{
display:block;


color:rgba(255,255,255,.85);

font-size:12px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:9px;


}

.req{
color:#e5a962;
}

/* Inputs */

.fg input,
.fg select,
.fg textarea{
width:100%;


background:#1a1c1f;

border:1px solid rgba(255,255,255,.08);

color:#fff;

padding:16px 20px;

border-radius:16px;

font-size:14px;

transition:.35s ease;


}

.fg input::placeholder,
.fg textarea::placeholder{
color:rgba(255,255,255,.35);
}

.fg select{
cursor:pointer;
}

.fg input:hover,
.fg select:hover,
.fg textarea:hover{
border-color:rgba(229,169,98,.15);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus{
outline:none;


border-color:#e5a962;

background:#212326;

box-shadow:
    0 0 0 5px rgba(229,169,98,.10),
    0 0 25px rgba(229,169,98,.08);


}

.fg textarea{
min-height:160px;
resize:none;
}

/* Phone Field */

.fg-phone{
display:flex;
}

.fg-phone-code{
display:flex;
align-items:center;
gap:8px;


background:#1a1c1f;

border:1px solid rgba(255,255,255,.08);
border-right:none;

color:#fff;

padding:16px;

border-radius:16px 0 0 16px;


}

.fg-phone-code img{
border-radius:2px;
}

.fg-phone input{
border-radius:0 16px 16px 0 !important;
}

/* Error Message */

.fg-err{
display:none;
color:#ff9898;
font-size:12px;
margin-top:6px;
}

/* Consent */

.ct-consent{
display:flex;
align-items:flex-start;
gap:12px;


margin:25px 0;


}

.ct-check{
width:18px;
height:18px;
accent-color:#e5a962;
margin-top:2px;
}

.ct-check-lbl{
color:rgba(255,255,255,.65);
font-size:13px;
line-height:1.8;
}

.ct-check-lbl a{
color:#e5a962;
text-decoration:none;
}

.ct-check-lbl a:hover{
text-decoration:underline;
}

/* Submit Button */

.btn-submit{
width:100%;


display:flex;
align-items:center;
justify-content:center;
gap:10px;

border:none;

border-radius:16px;

padding:18px 24px;

background:
    linear-gradient(
        135deg,
        #e5a962,
        #c98942
    );

color:#111;

font-size:15px;
font-weight:700;

transition:.4s ease;


}

.btn-submit:hover{
transform:translateY(-3px);


box-shadow:
    0 18px 40px rgba(229,169,98,.30);


}

.btn-submit i{
transition:.35s ease;
}

.btn-submit:hover i{
transform:translateX(5px);
}

/* Loader */

.ct-spinner{
width:18px;
height:18px;


border:2px solid rgba(0,0,0,.25);
border-top-color:#111;

border-radius:50%;

animation:spin 1s linear infinite;


}

@keyframes spin{
to{
transform:rotate(360deg);
}
}

/* Footer Note */

.form-note{
margin-top:18px;


display:flex;
justify-content:center;
align-items:center;
gap:8px;

color:rgba(255,255,255,.55);

font-size:12px;


}

.form-note i{
color:#e5a962;
}

/* Mobile */

@media(max-width:991px){


.cform{
    padding:35px;
}

.cform-title{
    font-size:38px;
}


}

@media(max-width:767px){


.cform{
    padding:25px;
    border-radius:24px;
}

.cform-title{
    font-size:30px;
}

.ct-type-tabs{
    gap:8px;
}

.ct-tab{
    width:100%;
    justify-content:center;
    text-align:center;
}

.btn-submit{
    padding:16px;
}


}







  
  /* ── HERO ── */
  .ct-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-h, 90px);
  }

  .ct-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .ct-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.5) contrast(1.05);
  }

  .ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(13,11,10,0.65) 0%,
      rgba(13,11,10,0.5) 50%,
      rgba(13,11,10,0.95) 100%
    );
  }

  .ct-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }

  .ct-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 120px;
  }

  .ct-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    margin-bottom: 24px;
  }

  .ct-breadcrumb a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color .25s; }
  .ct-breadcrumb a:hover { color: var(--accent-gold); }
  .ct-breadcrumb i { font-size: 10px; }
  .ct-breadcrumb span { color: var(--accent-gold); }

  .ct-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }

  .ct-hchip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: var(--transition-lux);
    backdrop-filter: blur(10px);
  }

  .ct-hchip i { color: var(--accent-gold); font-size: 13px; }

  .ct-hchip:hover {
    background: rgba(229,169,98,0.12);
    border-color: rgba(229,169,98,0.3);
    color: #fff;
    transform: translateY(-2px);
  }

  .ct-hchip-plain { cursor: default; }
  .ct-hchip-plain:hover { transform: none; background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }

  .ct-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .ct-scroll-cue span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

  .ct-scroll-line {
    width: 1.5px;
    height: 38px;
    background: linear-gradient(var(--accent-gold), transparent);
    animation: ctScrollPulse 2s ease-in-out infinite;
  }

  @keyframes ctScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%       { opacity: 1;   transform: scaleY(1);   }
  }

  /* ── MAIN BODY ── */
  .ct-main {
    padding: 90px 0 80px;
    background-color: var(--bg-dark, #0d0b0a);
    overflow: hidden;
  }

  /* ── INFO CARDS ── */
  .ct-info-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-lux);
    position: relative;
    overflow: hidden;
  }

  .ct-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(229,169,98,0.2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }

  .ct-info-card:hover {
    border-color: rgba(229,169,98,0.2);
    background: rgba(255,255,255,0.04);
    transform: translateY(-5px);
  }

  .ct-info-card:hover::before { transform: scaleX(1); }

  .ct-info-card-gold {
    background: var(--accent-gold);
    border-color: transparent;
  }

  .ct-info-card-gold:hover {
    background: #d9994a;
    border-color: transparent;
  }

  .ct-info-card-gold::before { background: rgba(255,255,255,0.4); }

  .ct-ic-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(229,169,98,0.08);
    border: 1px solid rgba(229,169,98,0.18);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    flex-shrink: 0;
  }

  .ct-ic-ico i { font-size: 19px; color: var(--accent-gold); }

  .ct-ic-ico-dark { background: rgba(17,15,14,0.15); border-color: rgba(17,15,14,0.2); }
  .ct-ic-ico-dark i { color: #110f0e; }

  .ct-ic-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
  }

  .ct-info-card-gold .ct-ic-lbl { color: rgba(17,15,14,0.55); }

  .ct-ic-val {
    font-size: 14.5px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    flex-grow: 1;
    margin-top: 2px;
  }

  .ct-info-card-gold .ct-ic-val { color: #110f0e; }

  .ct-ic-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--accent-gold);
    text-decoration: none;
    margin-top: 10px;
    transition: gap .25s, opacity .25s;
    font-weight: 500;
  }

  .ct-ic-link:hover { gap: 10px; opacity: 0.8; }

  /* ── FORM UPGRADES ── */
  .cform { background: rgba(255,255,255,0.02); border-radius: 22px; padding: 40px; border: 1px solid rgba(255,255,255,0.07); }

  @media (max-width: 575.98px) { .cform { padding: 24px; } }

  .cform-header { margin-bottom: 28px; }

  .cform-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
  }

  .cform-sub { font-size: 13.5px; color: rgba(255,255,255,0.42); }

  /* Event type tab selector */
  .ct-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .ct-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-lux);
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .ct-tab i { font-size: 12px; }

  .ct-tab:hover {
    background: rgba(229,169,98,0.06);
    border-color: rgba(229,169,98,0.2);
    color: rgba(255,255,255,0.8);
  }

  .ct-tab.active {
    background: rgba(229,169,98,0.14);
    border-color: var(--accent-gold);
    color: #fff;
  }

  /* Form fields dark theme */
  .fg label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.2px; }
  .req { color: var(--accent-gold); }

  .fg input, .fg select, .fg textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
  .fg select option { background: #1a1614; color: #fff; }

  .fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(229,169,98,0.1);
    background: rgba(255,255,255,0.06);
  }

  .fg textarea { resize: vertical; }
  .fg-err { font-size: 11.5px; color: #e07070; margin-top: 4px; display: none; }
  .fg.error .fg-err { display: block; }
  .fg.error input, .fg.error select { border-color: #e07070; }

  /* Phone field */
  .fg-phone { position: relative; display: flex; }

  .fg-phone-code {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.09);
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .fg-phone-code img { border-radius: 2px; }
  .fg-phone input { border-radius: 0 10px 10px 0; flex: 1; }

  /* Consent checkbox */
  .ct-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 4px;
  }

  .ct-check {
    width: 18px; height: 18px;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
  }

  .ct-check-lbl {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    cursor: pointer;
  }

  .ct-check-lbl a { color: var(--accent-gold); }

  /* Submit button spinner */
  .ct-spinner {
    width: 14px; height: 14px;
    border: 2px solid rgba(17,15,14,0.3);
    border-top-color: #110f0e;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── SIDEBAR CARDS ── */
  .ct-sidebar-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 26px;
    transition: var(--transition-lux);
  }

  .ct-sidebar-card:hover {
    border-color: rgba(229,169,98,0.15);
    background: rgba(255,255,255,0.035);
  }

  .ct-sb-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .ct-sb-ico {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: rgba(229,169,98,0.07);
    border: 1px solid rgba(229,169,98,0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .ct-sb-ico i { font-size: 18px; color: var(--accent-gold); }
  .ct-sb-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 2px; }
  .ct-sb-sub { font-size: 12px; color: rgba(255,255,255,0.38); }

  /* Office hours */
  .ct-hours-list { display: flex; flex-direction: column; gap: 0; margin: 20px 0 16px; }

  .ct-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13.5px;
  }

  .ct-hour-row:last-child { border-bottom: none; }
  .ct-day { color: rgba(255,255,255,0.55); }
  .ct-time { color: #fff; font-weight: 500; }
  .ct-time-closed { color: rgba(255,255,255,0.35); font-weight: 400; font-style: italic; }

  .ct-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
  }

  .ct-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #5ec97a;
    box-shadow: 0 0 6px rgba(94,201,122,0.7);
    animation: statusPulse 2s ease-in-out infinite;
  }

  .ct-status-dot.closed { background: rgba(255,255,255,0.3); box-shadow: none; animation: none; }

  @keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  /* Studios */
  .ct-studios { display: flex; flex-direction: column; gap: 0; }

  .ct-studio {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: padding-left .25s;
    cursor: default;
  }

  .ct-studio:last-child { border-bottom: none; }
  .ct-studio:hover { padding-left: 6px; }
  .ct-studio-city { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
  .ct-studio-addr { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }
  .active-studio .ct-studio-city { color: #fff; }

  .ct-hq-badge {
    background: var(--accent-gold);
    color: #110f0e;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.4px;
  }

  /* Social grid */
  .ct-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ct-soc-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    transition: var(--transition-lux);
  }

  .ct-soc-btn:hover {
    background: rgba(229,169,98,0.07);
    border-color: rgba(229,169,98,0.2);
    transform: translateY(-3px);
  }

  .ct-soc-btn i { font-size: 20px; color: var(--accent-gold); margin-bottom: 4px; }
  .ct-soc-btn span { font-size: 13px; font-weight: 500; color: #fff; }
  .ct-soc-btn small { font-size: 11px; color: rgba(255,255,255,0.35); }

  /* ── MAP SECTION ── */
  .ct-map-section {
    position: relative;
    height: 600px;
    display: flex;
    overflow: hidden;
  }

  .ct-map-panel {
    position: relative;
    z-index: 10;
    width: 360px;
    flex-shrink: 0;
    background: rgba(13,11,10,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-right: 1px solid rgba(229,169,98,0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
  }

  .ct-mp-inner { padding: 44px 36px; }

  .ct-mp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .ct-mp-title em { font-style: italic; color: var(--accent-gold); }

  .ct-mp-divider {
    width: 40px; height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    margin: 18px 0 26px;
  }

  .ct-mp-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

  .ct-mp-row { display: flex; align-items: flex-start; gap: 14px; }

  .ct-mp-ico {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(229,169,98,0.08);
    border: 1px solid rgba(229,169,98,0.18);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .ct-mp-ico i { font-size: 15px; color: var(--accent-gold); }
  .ct-mp-lbl { font-size: 10.5px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; font-weight: 600; }
  .ct-mp-val { font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.5; }

  .ct-mp-actions { display: flex; flex-direction: column; gap: 10px; }

  .ct-map-frame {
    flex: 1;
    position: relative;
    overflow: hidden;
  }

  .ct-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.88);
  }

  .ct-map-pin-card {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: rgba(13,11,10,0.92);
    border: 1px solid rgba(229,169,98,0.25);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .ct-mpc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(229,169,98,0.7);
    flex-shrink: 0;
    animation: statusPulse 2s ease-in-out infinite;
  }

  .ct-mpc-body strong { display: block; font-size: 13px; font-weight: 600; color: #fff; }
  .ct-mpc-body span { font-size: 11.5px; color: rgba(255,255,255,0.45); }

  /* ── FAQ ── */
  .ct-faq {
    padding: 110px 0;
    background-color: var(--bg-dark, #0d0b0a);
    overflow: hidden;
  }

  .ct-faq-card {
    border-radius: 16px;
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.022);
    height: 100%;
    transition: var(--transition-lux);
    position: relative;
    overflow: hidden;
  }

  .ct-faq-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
    border-radius: 0 2px 2px 0;
  }

  .ct-faq-card:hover {
    border-color: rgba(229,169,98,0.2);
    background: rgba(255,255,255,0.035);
    transform: translateY(-4px);
    padding-left: 32px;
  }

  .ct-faq-card:hover::before { transform: scaleY(1); }

  .ct-faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
  }

  .ct-faq-q i { font-size: 17px; color: var(--accent-gold); flex-shrink: 0; margin-top: 2px; }

  .ct-faq-a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.48);
    line-height: 1.8;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1199.98px) {
    .ct-map-panel { width: 320px; }
    .ct-mp-inner { padding: 36px 28px; }
  }

  @media (max-width: 991.98px) {
    .ct-map-section {
      flex-direction: column;
      height: auto;
    }
    .ct-map-panel { width: 100%; border-right: none; border-bottom: 1px solid rgba(229,169,98,0.12); }
    .ct-mp-inner { padding: 36px; }
    .ct-mp-actions { flex-direction: row; flex-wrap: wrap; }
    .ct-map-frame { height: 400px; position: relative; }
    .ct-map-frame iframe { position: absolute; }
  }

  @media (max-width: 767.98px) {
    .ct-hero-chips { gap: 8px; }
    .ct-hchip { font-size: 12px; padding: 7px 14px; }
    .ct-mp-inner { padding: 28px 20px; }
    .ct-map-frame { height: 320px; }
    .ct-map-pin-card { bottom: 16px; right: 16px; }
  }

  @media (max-width: 575.98px) {
    .ct-social-grid { grid-template-columns: 1fr; }
    .ct-type-tabs .ct-tab span { display: none; }
  }




  /* project page css */
  
  /* ── HERO ── */
  .ev-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-h, 90px);
  }
  .ev-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .ev-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) contrast(1.05);
  }
  .ev-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,11,10,0.72) 0%, rgba(13,11,10,0.55) 50%, rgba(13,11,10,0.92) 100%);
  }
  .ev-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }
  .ev-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 100px;
  }

  /* ── FILTER ROW ── */
  .evp-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }
  .evp-filter {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    transition: var(--transition-lux);
    cursor: pointer;
  }
  .evp-filter.active,
  .evp-filter:hover {
    background: rgba(229,169,98,0.15);
    border-color: var(--accent-gold);
    color: #ffffff;
  }

  /* ── UPCOMING SECTION ── */
  .evp-upcoming {
    padding: 110px 0;
    background: var(--bg-dark);
    overflow: hidden;
  }

  /* hide/show for filter */
  .ev-item.hidden { display: none !important; }

  /* ── EVENT CARDS ── */
  .evp-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-lux);
    display: flex;
    flex-direction: column;
  }
  .evp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,169,98,0.28);
    box-shadow: 0 24px 56px rgba(0,0,0,0.45);
  }

  /* Featured (tall) card */
  .evp-card--featured {
    height: 100%;
  }
  .evp-card--featured .evp-card-img-wrap {
    height: 320px;
  }

  /* Horizontal card layout */
  .evp-card--horizontal {
    flex-direction: row;
  }
  .evp-card-img-wrap--sm {
    width: 160px;
    min-width: 160px;
    height: auto !important;
    flex-shrink: 0;
  }
  .evp-card-img-wrap--med {
    height: 200px;
  }
  .evp-card-body--sm {
    padding: 18px !important;
  }
  .evp-card-title--sm {
    font-size: 16px !important;
    margin-bottom: 0;
  }

  /* Image wrapper */
  .evp-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
  }
  .evp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .evp-card:hover .evp-card-img { transform: scale(1.05); }
  .evp-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13,11,10,0.8) 100%);
  }

  /* Badges */
  .evp-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 3;
  }
  .evp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    padding: 4px 11px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }
  .evp-cat-wedding  { background: rgba(220,100,150,0.85); color: #fff; }
  .evp-cat-corporate{ background: rgba(60,130,200,0.85);  color: #fff; }
  .evp-cat-concert  { background: rgba(120,80,200,0.85);  color: #fff; }
  .evp-cat-social   { background: rgba(229,169,98,0.9);   color: #110f0e; }
  .evp-hot-badge {
    background: var(--accent-gold);
    color: #110f0e;
    font-size: 10px;
    padding: 4px 11px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  /* Date pill */
  .evp-date-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(17,15,14,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    z-index: 3;
  }
  .evp-date-pill--sm { padding: 6px 10px; }
  .evp-date-d {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .evp-date-pill--sm .evp-date-d { font-size: 18px; }
  .evp-date-m {
    font-size: 10px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .evp-date-y {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
  }

  /* Card body */
  .evp-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .evp-card-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .evp-card-loc i { color: var(--accent-gold); font-size: 11px; }
  .evp-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .evp-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .evp-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }
  .evp-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 18px;
    margin-top: auto;
  }
  .evp-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
  }
  .evp-price-lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
  }
  .evp-link-btn {
    font-size: 12px;
    color: rgba(255,255,255,0.48);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    text-decoration: none;
  }
  .evp-link-btn:hover { color: var(--accent-gold); }

  /* ── PORTFOLIO SECTION ── */
  .evp-portfolio {
    padding: 110px 0;
    background: #fcfbfa;
    overflow: hidden;
  }
  .evp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .evp-pf-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    min-height: 240px;
  }
  .evp-pf-item--tall {
    grid-row: span 2;
    min-height: 500px;
  }
  .evp-pf-item--wide {
    grid-column: span 2;
    min-height: 260px;
  }
  .evp-pf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    display: block;
  }
  .evp-pf-item:hover img { transform: scale(1.05); }
  .evp-pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,11,10,0.92) 0%, rgba(13,11,10,0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.4s ease;
  }
  .evp-pf-item:hover .evp-pf-overlay {
    background: linear-gradient(to top, rgba(13,11,10,0.97) 0%, rgba(13,11,10,0.6) 60%, rgba(13,11,10,0.15) 100%);
  }
  .evp-pf-body { width: 100%; }
  .evp-pf-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229,169,98,0.2);
    border: 1px solid rgba(229,169,98,0.35);
    color: var(--accent-gold);
    font-size: 10px;
    padding: 4px 11px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .evp-pf-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .evp-pf-item--tall .evp-pf-title { font-size: 24px; }
  .evp-pf-detail {
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .evp-pf-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .evp-pf-item:hover .evp-pf-desc { max-height: 120px; }
  .evp-pf-stats {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .evp-pf-item:hover .evp-pf-stats { max-height: 80px; }
  .evp-pf-stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
  }
  .evp-pf-stat-l {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  /* ── STATS BAR ── */
  .evp-statsbar {
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.055);
    border-bottom: 1px solid rgba(255,255,255,0.055);
    padding: 0;
    overflow: hidden;
  }

  /* ── QUOTE SECTION ── */
  .evp-quote {
    padding: 90px 0;
    background: var(--bg-dark);
    text-align: center;
  }
  .evp-quote-icon {
    font-size: 64px;
    color: rgba(229,169,98,0.2);
    display: block;
    margin-bottom: 20px;
    line-height: 1;
  }
  .evp-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .evp-filter-row { justify-content: flex-start; }
    .evp-portfolio-grid { grid-template-columns: 1fr 1fr; }
    .evp-pf-item--tall { grid-row: span 1; min-height: 300px; }
    .evp-pf-item--wide { grid-column: span 2; }
    .evp-card--horizontal { flex-direction: column; }
    .evp-card-img-wrap--sm { width: 100%; height: 180px !important; min-width: unset; }
  }
  @media (max-width: 767px) {
    .evp-portfolio-grid { grid-template-columns: 1fr; }
    .evp-pf-item--wide,
    .evp-pf-item--tall { grid-column: span 1; grid-row: span 1; min-height: 240px; }
    .evp-pf-desc { max-height: 80px; }
    .evp-pf-stats { max-height: 60px; }
    .evp-filter-row { gap: 6px; }
    .evp-filter { padding: 6px 13px; font-size: 11px; }
  }



  /* service page css */


    /* ── HERO ── */
  .svc-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-h, 90px);
  }
  .svc-hero-media { position: absolute; inset: 0; z-index: 0; }
  .svc-hero-media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    filter: brightness(0.5) contrast(1.08);
  }
  .svc-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(13,11,10,0.9) 0%, rgba(13,11,10,0.6) 55%, rgba(13,11,10,0.88) 100%);
  }
  .svc-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }
  .svc-hero-inner {
    position: relative; z-index: 2;
    padding-top: 40px; padding-bottom: 100px;
  }

  /* ── SECTION SHELLS ── */
  .sp-section { padding: 110px 0; overflow: hidden; }
  .sp-dark  { background-color: var(--bg-dark, #0d0b0a); }
  .sp-light { background-color: #fcfbfa; }

  /* ── MARQUEE DIVIDER ── */
  .sp-marquee-wrap {
    background: var(--accent-gold);
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .sp-marquee {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: spm 28s linear infinite;
    align-items: center;
  }
  .sp-marquee span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #110f0e;
    white-space: nowrap;
    letter-spacing: 0.3px;
  }
  .sp-dot { font-size: 10px !important; opacity: 0.5; }
  @keyframes spm { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── EVENT TYPE GRID ── */
  .sp-event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  /* Featured large card */
  .sp-ev-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.022);
    transition: var(--transition-lux);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .sp-ev-card:hover { transform: translateY(-6px); border-color: rgba(229,169,98,0.28); }
  .sp-ev-img-wrap { position: relative; height: 280px; overflow: hidden; flex-shrink: 0; }
  .sp-ev-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .sp-ev-card:hover .sp-ev-img-wrap img { transform: scale(1.05); }
  .sp-ev-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(13,11,10,0.85) 100%);
  }
  .sp-ev-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
  .sp-ev-ico {
    width: 50px; height: 50px; border-radius: 13px;
    background: rgba(229,169,98,0.08);
    border: 1px solid rgba(229,169,98,0.2);
    display: grid; place-items: center;
    margin-bottom: 6px;
  }
  .sp-ev-ico i { font-size: 22px; color: var(--accent-gold); }
  .sp-ev-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; font-weight: 700;
    color: rgba(229,169,98,0.4);
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .sp-ev-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600; color: #fff;
    margin-bottom: 12px; line-height: 1.25;
  }
  .sp-ev-desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 16px; flex-grow: 1; }
  .sp-ev-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
  .sp-ev-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--accent-gold);
    text-decoration: none; text-transform: uppercase; letter-spacing: 0.8px;
    transition: gap 0.2s;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 18px; margin-top: auto;
  }
  .sp-ev-cta:hover { gap: 14px; color: #fff; }

  /* Stack of mini horizontal cards */
  .sp-ev-stack { display: flex; flex-direction: column; gap: 16px; }
  .sp-ev-mini {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.022);
    transition: var(--transition-lux);
    flex: 1;
  }
  .sp-ev-mini:hover { transform: translateX(4px); border-color: rgba(229,169,98,0.22); }
  .sp-ev-mini-img { position: relative; width: 130px; min-width: 130px; overflow: hidden; }
  .sp-ev-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .sp-ev-mini:hover .sp-ev-mini-img img { transform: scale(1.06); }
  .sp-ev-mini-ico {
    position: absolute; bottom: 10px; left: 10px;
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(229,169,98,0.85);
    display: grid; place-items: center; z-index: 2;
  }
  .sp-ev-mini-ico i { font-size: 15px; color: #110f0e; }
  .sp-ev-mini-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
  .sp-ev-mini-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600; color: #fff;
    margin-bottom: 6px; line-height: 1.3;
  }
  .sp-ev-mini-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 12px; flex-grow: 1; }

  /* Small tile cards */
  .sp-ev-tile {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-lux);
  }
  .sp-ev-tile::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(229,169,98,0.3));
    transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
  }
  .sp-ev-tile:hover { transform: translateY(-5px); border-color: rgba(229,169,98,0.22); }
  .sp-ev-tile:hover::before { transform: scaleX(1); }
  .sp-ev-tile-ico {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(229,169,98,0.07); border: 1px solid rgba(229,169,98,0.18);
    display: grid; place-items: center; margin-bottom: 8px;
  }
  .sp-ev-tile-ico i { font-size: 20px; color: var(--accent-gold); }
  .sp-ev-tile-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; font-weight: 700;
    color: rgba(229,169,98,0.35);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
  }
  .sp-ev-tile-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px;
  }
  .sp-ev-tile-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 14px; }
  .sp-ev-tile-tags { display: flex; flex-wrap: wrap; gap: 6px; }
/* ==========================================
   TILE BACKGROUND IMAGE EFFECT
========================================== */

.sp-ev-tile{
    position: relative;
    overflow: hidden;
}

/* Desktop Background Image */
.sp-ev-tile-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.sp-ev-tile-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    opacity: 1;
    transform: scale(1.25);
    transition: all .6s ease;
}

/* Dark Luxury Overlay */
.sp-ev-tile-bg::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13,11,10,.55) 0%,
        rgba(13,11,10,.82) 100%
    );
}

/* Keep content above background */
.sp-ev-tile-content{
    position: relative;
    z-index: 2;
}

/* Hover Effect */
.sp-ev-tile:hover .sp-ev-tile-bg img{
    transform: scale(1.35);
    opacity: .25;
}

/* Mobile image hidden on desktop */
.sp-ev-tile-mobile-img{
    display: none;
}

/* ==========================================
   MOBILE VIEW
========================================== */

@media (max-width: 991px){

    .sp-ev-tile{
        padding: 0;
    }

    /* Hide blurred background */
    .sp-ev-tile-bg{
        display: none;
    }

    /* Show image on top */
    .sp-ev-tile-mobile-img{
        display: block;
        position: relative;
        z-index: 2;
    }

    .sp-ev-tile-mobile-img img{
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        border-radius: 18px 18px 0 0;
    }

    .sp-ev-tile-content{
        padding: 26px;
    }

    .sp-ev-tile::before{
        z-index: 3;
    }
}
  /* ── BENTO GRID ── */
  .sp-services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 16px;
}
.sp-bento-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(17,15,14,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-lux);
}
.sp-bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(84,83,83,0.1);
    border-color: rgba(240,146,60,0.3);
}
.sp-bento-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(240,146,60,0.3));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; z-index: 1;
}
.sp-bento-item:hover::before { transform: scaleX(1); }

/* First item — large feature card, 2 cols x 2 rows */
.sp-bento-lg { grid-column: span 2; grid-row: span 2; }

/* Last item — full-width banner with side-by-side image + content */
.sp-bento-wide {
    grid-column: 1 / -1;
    flex-direction: row;
}
.sp-bento-wide .sp-bento-img {
    flex: 0 0 320px;
    min-height: 220px;
    height: auto;
}
.sp-bento-wide .sp-bento-body {
    padding: 30px 36px;
    justify-content: center;
}
.sp-bento-wide .sp-bento-title { font-size: 24px; }
.sp-bento-wide .sp-bento-bullets {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 4px;
}

.sp-bento-img { overflow: hidden; flex-shrink: 0; }
.sp-bento-lg .sp-bento-img { height: 240px; }
.sp-bento-item:not(.sp-bento-lg):not(.sp-bento-wide) .sp-bento-img { height: 150px; }
.sp-bento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sp-bento-item:hover .sp-bento-img img { transform: scale(1.04); }

.sp-bento-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.sp-bento-lg .sp-bento-body { padding: 32px; }

.sp-bento-ico {
    width: 50px; height: 50px; border-radius: 13px;
    background: rgba(240,146,60,0.07); border: 1px solid rgba(240,146,60,0.18);
    display: grid; place-items: center; margin-bottom: 16px;
    transition: var(--transition-lux);
}
.sp-bento-item:hover .sp-bento-ico { background: rgba(240,146,60,0.15); transform: scale(1.05); }
.sp-bento-ico i { font-size: 22px; color: var(--accent-gold); }

.sp-bento-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: #110f0e;
    margin-bottom: 12px; line-height: 1.3;
}
.sp-bento-lg .sp-bento-title { font-size: 26px; }
.sp-bento-desc { font-size: 13.5px; color: #555250; line-height: 1.75; margin-bottom: 18px; }
.sp-bento-bullets { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.sp-bb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4a4745; }
.sp-bb i { font-size: 14px; color: var(--accent-gold); flex-shrink: 0; }

/* Tablet */
@media (max-width: 767px) {
    .sp-services-bento { grid-template-columns: repeat(2, 1fr); }
    .sp-bento-wide { flex-direction: column; }
    .sp-bento-wide .sp-bento-img { flex: none; height: 180px; min-height: 0; }
    .sp-bento-wide .sp-bento-bullets { flex-direction: column; }
}

/* Mobile */
@media (max-width: 575px) {
    .sp-services-bento { grid-template-columns: 1fr; }
    .sp-bento-lg { grid-column: span 1; grid-row: span 1; }
    .sp-bento-lg .sp-bento-img { height: 200px; }
}
.sp-tile-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    border-radius:50px;
    border:1px solid rgba(240,146,60,.25);

    background:rgba(240,146,60,.08);
    color:#ffffff;

    font-size:12px;
    font-weight:600;
    text-decoration:none;

    transition:all .3s ease;
}

.sp-tile-btn:hover{
    background:var(--accent-gold);
    border-color:var(--accent-gold);
    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(240,146,60,.25);
}

.sp-service-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.sp-service-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--accent-gold),
        #d8822d
    );

    color:#fff;
    text-decoration:none;

    font-size:12px;
    font-weight:600;
    letter-spacing:.3px;

    transition:.3s ease;
}

.sp-service-btn:hover{
    color:#fff;
    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(240,146,60,.25);
}

.sp-service-icon{
    width:40px;
    height:40px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.3s ease;
}

.sp-service-icon i{
    font-size:16px;
}

.sp-service-icon.whatsapp{
    background:#25D366;
}

.sp-service-icon.call{
    background:#212529;
}

.sp-service-icon:hover{
    color:#fff;

    transform:translateY(-2px) scale(1.05);
}



  /* ── SPECIAL MOMENTS ── */
  .sp-moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .sp-moment-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.022);
    display: flex; flex-direction: column;
    transition: var(--transition-lux);
  }
  .sp-moment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,169,98,0.28);
    box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  }
  .sp-moment-img-wrap {
    position: relative; height: 220px; overflow: hidden; flex-shrink: 0;
  }
  .sp-moment-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .sp-moment-card:hover .sp-moment-img-wrap img { transform: scale(1.06); }
  .sp-moment-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(13,11,10,0.75) 100%);
  }
  .sp-moment-num {
    position: absolute; bottom: 14px; right: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 700;
    color: rgba(229,169,98,0.25); line-height: 1;
    z-index: 2;
  }
  .sp-moment-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .sp-moment-ico {
    width: 42px; height: 42px; border-radius: 11px;
    background: rgba(229,169,98,0.08); border: 1px solid rgba(229,169,98,0.2);
    display: grid; place-items: center; margin-bottom: 14px;
    transition: var(--transition-lux);
  }
  .sp-moment-card:hover .sp-moment-ico { background: rgba(229,169,98,0.16); transform: scale(1.05); }
  .sp-moment-ico i { font-size: 18px; color: var(--accent-gold); }
  .sp-moment-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: #fff;
    margin-bottom: 10px; line-height: 1.3;
  }
  .sp-moment-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 18px; flex-grow: 1; }
  .sp-moment-features { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
  .sp-moment-features span {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; color: rgba(255,255,255,0.5);
  }
  .sp-moment-features i { color: var(--accent-gold); font-size: 13px; flex-shrink: 0; }

  /* ── PROCESS OVERRIDE for light bg ── */
  .sp-process-alt {
    background-color: #fcfbfa;
  }
  .sp-process-alt .process-timeline-track::before {
    background: linear-gradient(90deg, transparent, rgba(240,146,60,0.35) 20%, rgba(240,146,60,0.1) 80%, transparent);
  }
  .sp-step-lgt .step-ring {
    background: #fcfbfa;
    border-color: rgba(240,146,60,0.3);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1199px) {
    .sp-services-bento { grid-template-columns: repeat(2, 1fr); }
    .sp-bento-lg { grid-column: span 2; }
    .sp-bento-wide { grid-column: span 2; }
  }
  @media (max-width: 991px) {
    .sp-event-grid { grid-template-columns: 1fr; }
    .sp-ev-card.sp-ev-featured { height: auto; }
    .sp-ev-stack { display: grid; grid-template-columns: 1fr 1fr; }
    .sp-moments-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 767px) {
    .sp-services-bento { grid-template-columns: 1fr; }
    .sp-bento-lg,
    .sp-bento-wide { grid-column: span 1; }
    .sp-moments-grid { grid-template-columns: 1fr; }
    .sp-ev-stack { grid-template-columns: 1fr; }
    .sp-ev-mini { flex-direction: column; }
    .sp-ev-mini-img { width: 100%; min-width: unset; height: 160px; }
  }
  @media (max-width: 575px) {
    .sp-ev-tile-tags { gap: 4px; }
  }






  /* ============================
          gallery page css        
  =============================== */



    /* ── HERO ── */
  .gal-hero {
    position: relative; min-height: 88vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: var(--nav-h, 90px);
  }
  .gal-hero-media { position: absolute; inset: 0; z-index: 0; }
  .gal-hero-media img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
    filter: brightness(0.45) contrast(1.1);
  }
  .gal-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(170deg, rgba(13,11,10,0.88) 0%, rgba(13,11,10,0.55) 55%, rgba(13,11,10,0.9) 100%);
  }
  .gal-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }
  .gal-hero-inner { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 100px; }

  /* Hero stats strip */
  .gal-hero-stats {
    display: inline-flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 20px 36px;
    margin-top: 40px; backdrop-filter: blur(12px);
    flex-wrap: wrap; justify-content: center;
  }
  .gal-hs-item { text-align: center; padding: 0 28px; }
  .gal-hs-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
  .gal-hs-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 600; color: #fff; line-height: 1;
  }
  .gal-hs-num em { color: var(--accent-gold); font-style: normal; }
  .gal-hs-lbl { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 5px; }

  /* ── FILTER BAR ── */
  .gal-filter-bar {
    position: sticky; top: var(--nav-h-scrolled, 70px); z-index: 100;
    background: rgba(13,11,10,0.94); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
  }
  .gal-filter-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 14px 0; flex-wrap: wrap;
  }
  .gal-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
  .gal-tab {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5); border-radius: 100px;
    padding: 7px 16px; font-size: 12px; font-weight: 500;
    letter-spacing: 0.4px; cursor: pointer;
    transition: var(--transition-lux);
  }
  .gal-tab i { font-size: 11px; }
  .gal-tab:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
  .gal-tab.active {
    background: rgba(229,169,98,0.15); border-color: var(--accent-gold);
    color: #fff;
  }
  .gal-view-toggle { display: flex; gap: 4px; flex-shrink: 0; }
  .gal-view-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: transparent; border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45); cursor: pointer; font-size: 14px;
    display: grid; place-items: center;
    transition: var(--transition-lux);
  }
  .gal-view-btn.active,
  .gal-view-btn:hover { background: rgba(229,169,98,0.12); border-color: var(--accent-gold); color: #fff; }

  /* ── GALLERY SECTION ── */
  .gal-section { padding: 60px 0 80px; background: var(--bg-dark); }
  .gal-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

  /* ── GALLERY GRID ── */
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
    transition: all 0.4s ease;
  }
  .gal-grid.masonry-view {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }

  /* Size variants */
  .gal-item--lg   { grid-column: span 2; grid-row: span 2; }
  .gal-item--wide { grid-column: span 2; }
  .gal-item--tall { grid-row: span 2; }

  /* Base item */
  .gal-item {
    position: relative; border-radius: 14px; overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
  }
  .gal-item:hover { transform: scale(1.015); border-color: rgba(229,169,98,0.25); z-index: 2; }
  .gal-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    display: block;
  }
  .gal-item:hover img { transform: scale(1.07); }

  /* Overlay */
  .gal-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,11,10,0.92) 0%, rgba(13,11,10,0.3) 50%, transparent 100%);
    opacity: 0; transition: opacity 0.35s ease;
    display: flex; flex-direction: column;
    justify-content: space-between; padding: 16px;
  }
  .gal-item:hover .gal-item-overlay { opacity: 1; }

  .gal-item-meta { margin-top: auto; }
  .gal-item-cat {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; padding: 3px 10px; border-radius: 100px;
    font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 6px;
  }
  .gal-cat-wedding    { background: rgba(220,100,150,0.85); color: #fff; }
  .gal-cat-engagement { background: rgba(130,80,200,0.85);  color: #fff; }
  .gal-cat-corporate  { background: rgba(60,130,200,0.85);  color: #fff; }
  .gal-cat-social     { background: rgba(229,169,98,0.9);   color: #110f0e; }
  .gal-cat-concert    { background: rgba(200,60,80,0.85);   color: #fff; }
  .gal-cat-special    { background: rgba(40,160,120,0.85);  color: #fff; }

  .gal-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; color: #fff;
    margin: 0 0 4px; line-height: 1.3;
  }
  .gal-item--lg .gal-item-title { font-size: 22px; }
  .gal-item-detail { font-size: 11.5px; color: rgba(255,255,255,0.55); margin: 0; }

  .gal-zoom-btn {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 14px; cursor: pointer;
    display: grid; place-items: center;
    transition: var(--transition-lux);
  }
  .gal-zoom-btn:hover { background: rgba(229,169,98,0.3); border-color: var(--accent-gold); }

  /* No results */
  .gal-no-results {
    text-align: center; padding: 80px 20px;
    color: rgba(255,255,255,0.3);
  }
  .gal-no-results i { font-size: 48px; display: block; margin-bottom: 16px; }
  .gal-no-results p { font-size: 15px; margin-bottom: 20px; }

  /* Load more */
  .gal-load-more { text-align: center; margin-top: 48px; }
  .gal-load-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65); padding: 13px 28px; border-radius: 100px;
    font-size: 13px; cursor: pointer; transition: var(--transition-lux);
  }
  .gal-load-btn:hover { border-color: var(--accent-gold); color: #fff; }
  .gal-load-btn i { font-size: 16px; }
  .gal-load-hint { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 12px; }

  /* Hidden items (filter) */
  .gal-item.gal-hidden {
    display: none;
  }

  /* ── VIDEO REEL ── */
  .gal-reel { padding: 110px 0; background: var(--bg-dark); }
  .gal-reel-stats { display: flex; gap: 28px; flex-wrap: wrap; }
  .gal-rs-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600; color: var(--accent-gold); line-height: 1;
  }
  .gal-rs-lbl { font-size: 11.5px; color: rgba(255,255,255,0.4); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
  .gal-reel-player {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 16/9; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  }
  .gal-reel-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gal-reel-overlay {
    position: absolute; inset: 0;
    background: rgba(13,11,10,0.45);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 20px;
    transition: background 0.3s;
  }
  .gal-reel-player:hover .gal-reel-overlay { background: rgba(13,11,10,0.3); }
  .gal-reel-player.playing .gal-reel-overlay { display: none; }
  .gal-play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--accent-gold); color: #110f0e;
    display: grid; place-items: center;
    font-size: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(229,169,98,0.4);
  }
  .gal-reel-player:hover .gal-play-btn { transform: scale(1.1); box-shadow: 0 12px 40px rgba(229,169,98,0.55); }
  .gal-reel-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.7);
    background: rgba(13,11,10,0.6); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; padding: 6px 16px; backdrop-filter: blur(8px);
  }
  .gal-reel-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    display: none;
  }
  .gal-reel-player.playing .gal-reel-thumb { display: none; }
  .gal-reel-player.playing .gal-reel-video { display: block; }

  /* ── SPOTLIGHT GRID ── */
  .gal-spotlight { padding: 110px 0; background: #fcfbfa; }
  .gal-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gal-cat-card {
    position: relative; border-radius: 18px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
    transition: var(--transition-lux);
    border: 1px solid rgba(17,15,14,0.08);
  }
  .gal-cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(84,83,83,0.15); }
  .gal-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .gal-cat-card:hover img { transform: scale(1.06); }
  .gal-cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,11,10,0.88) 0%, rgba(13,11,10,0.2) 60%, transparent 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s;
  }
  .gal-cat-card:hover .gal-cat-overlay { background: linear-gradient(to top, rgba(13,11,10,0.95) 0%, rgba(13,11,10,0.4) 70%, transparent 100%); }
  .gal-cat-ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(229,169,98,0.15); border: 1px solid rgba(229,169,98,0.3);
    display: grid; place-items: center; margin-bottom: 10px;
    transform: translateY(8px); opacity: 0;
    transition: var(--transition-lux);
  }
  .gal-cat-ico i { font-size: 18px; color: var(--accent-gold); }
  .gal-cat-card:hover .gal-cat-ico { opacity: 1; transform: translateY(0); }
  .gal-cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: #fff;
    margin-bottom: 4px; text-align: center;
  }
  .gal-cat-count { font-size: 12px; color: var(--accent-gold); text-align: center; }

  /* ── LIGHTBOX ── */
  .gal-lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(7,6,5,0.96); backdrop-filter: blur(16px);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
  }
  .gal-lightbox.open { display: flex; }
  .gal-lb-inner {
    position: relative; max-width: 960px; width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
  }
  .gal-lb-img-wrap {
    position: relative; width: 100%;
    border-radius: 16px; overflow: hidden;
    max-height: 75vh;
    background: rgba(255,255,255,0.03);
  }
  .gal-lb-img-wrap img {
    width: 100%; max-height: 75vh;
    object-fit: contain; display: block;
    transition: opacity 0.3s;
  }
  .gal-lb-loader {
    position: absolute; inset: 0;
    display: none; align-items: center; justify-content: center;
    background: rgba(13,11,10,0.6);
  }
  .gal-lb-loader.show { display: flex; }
  .gal-lb-spin {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid rgba(229,169,98,0.2);
    border-top-color: var(--accent-gold);
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .gal-lb-caption { text-align: center; }
  .gal-lb-caption h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500; color: #fff; margin: 0 0 6px;
  }
  .gal-lb-caption p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
  .gal-lb-close,
  .gal-lb-prev,
  .gal-lb-next {
    position: absolute; z-index: 10;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    color: #fff; font-size: 18px; cursor: pointer;
    display: grid; place-items: center;
    transition: var(--transition-lux);
  }
  .gal-lb-close:hover,
  .gal-lb-prev:hover,
  .gal-lb-next:hover { background: rgba(229,169,98,0.2); border-color: var(--accent-gold); }
  .gal-lb-close { top: -56px; right: 0; }
  .gal-lb-prev  { top: 50%; left: -60px; transform: translateY(-50%); }
  .gal-lb-next  { top: 50%; right: -60px; transform: translateY(-50%); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1199px) {
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
    .gal-lb-prev { left: -50px; }
    .gal-lb-next { right: -50px; }
  }
  @media (max-width: 991px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gal-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-hero-stats { gap: 0; }
    .gal-hs-item { padding: 0 16px; }
  }
  @media (max-width: 767px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gal-item--lg { grid-column: span 2; }
    .gal-item--tall { grid-row: span 1; }
    .gal-filter-inner { gap: 10px; }
    .gal-lb-prev { left: 4px; }
    .gal-lb-next { right: 4px; }
    .gal-lb-prev, .gal-lb-next { top: auto; bottom: -56px; transform: none; }
    .gal-lb-prev { left: calc(50% - 52px); }
    .gal-lb-next { right: auto; left: calc(50% + 8px); }
    .gal-cat-grid { grid-template-columns: 1fr 1fr; }
    
  }
  @media (max-width: 767px) {

    .gal-hero-stats{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }

    .gal-hs-div{
        display: none;
    }

    .gal-hs-item{
        text-align: center;
        padding: 15px 10px;
    }
}
  @media (max-width: 480px) {
    .gal-grid { grid-template-columns: 1fr; }
    .gal-item--lg, .gal-item--wide { grid-column: span 1; }
    .gal-cat-grid { grid-template-columns: 1fr; }
    .gal-hero-stats { flex-direction: column; gap: 16px; }
    .gal-hs-div { width: 60px; height: 1px; }
    .gal-filter-tabs { gap: 4px; }
    .gal-tab { padding: 6px 12px; font-size: 11px; }
  }
