/* =========================================================
   SELECT MY VENUE — HOMEPAGE / AI PLANNER
   Complete CSS for the exact supplied index.html
   No HTML changes required.
   ========================================================= */

:root{
  --bg:#031817;
  --bg-2:#041f1d;
  --panel:#062522;
  --panel-2:#082d29;
  --panel-soft:rgba(7,43,39,.78);
  --line:rgba(45,214,193,.20);
  --line-strong:rgba(45,214,193,.38);
  --text:#f3fbfa;
  --muted:#8fb8b3;
  --muted-2:#648e88;
  --teal:#19d8bd;
  --teal-2:#0fc8b0;
  --gold:#f3c84b;
  --danger:#ff8d8d;
  --container:100%;
  --radius:20px;
  --shadow:0 24px 70px rgba(0,0,0,.28);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  min-width:320px;
  color:var(--text);
  background:
    radial-gradient(circle at 90% 4%,rgba(25,216,189,.08),transparent 24%),
    radial-gradient(circle at 6% 40%,rgba(16,132,119,.07),transparent 26%),
    linear-gradient(180deg,#021412 0%,#031b19 46%,#021613 100%);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:14px;
  line-height:1.5;
  overflow-x:hidden;
}
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;opacity:.14;
  background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,black,transparent 82%);
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{border:0}
::selection{color:#001b17;background:var(--teal)}

h1,h2,h3,h4{line-height:1.08;letter-spacing:-.035em}
h1{font-size:clamp(44px,5.4vw,76px)}
h2{font-size:clamp(31px,3.5vw,48px)}
h3{font-size:20px}
p{color:var(--muted)}

/* ================= HEADER ================= */
.site-header{
  position:sticky;top:0;z-index:1000;height:74px;
  background:rgba(2,19,17,.90);
  border-bottom:1px solid rgba(48,211,190,.14);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
}
.header-inner{width:min(100%,var(--container));height:100%;margin:auto;padding:0 26px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;width:190px;height:68px;flex-shrink:0}
.brand img{width:178px;max-height:62px;object-fit:contain;object-position:left center;filter:drop-shadow(0 6px 18px rgba(0,0,0,.25))}
#mainNav{display:flex;align-items:center;justify-content:flex-end;gap:28px;margin-left:auto}
#mainNav a{position:relative;color:#c6d9d6;font-size:13px;font-weight:750;transition:.2s ease}
#mainNav a{white-space:nowrap}
#mainNav a:hover,#mainNav a.active{color:#fff}
#mainNav a:not(.nav-cta)::after{content:"";position:absolute;left:0;right:0;bottom:-7px;height:2px;border-radius:99px;background:var(--teal);transform:scaleX(0);transition:.2s ease}
#mainNav a:hover::after,#mainNav a.active::after{transform:scaleX(1)}
.nav-cta{padding:10px 18px;border:1px solid rgba(25,216,189,.42);border-radius:999px;color:var(--teal)!important;background:rgba(25,216,189,.06)}
.nav-cta:hover{background:var(--teal);color:#00211c!important}
/* Premium CTA attention pulse */
.nav-cta{
  animation: smvCtaPulse 4.5s ease-in-out infinite;
}

@keyframes smvCtaPulse{
  0%, 72%, 100%{
    box-shadow:
      inset 0 0 22px rgba(15,216,190,.03);
  }

  82%{
    box-shadow:
      0 0 10px rgba(25,216,189,.18),
      0 0 24px rgba(25,216,189,.10),
      inset 0 0 22px rgba(15,216,190,.05);
  }

  88%{
    box-shadow:
      0 0 18px rgba(25,216,189,.30),
      0 0 36px rgba(25,216,189,.14),
      inset 0 0 22px rgba(15,216,190,.06);
  }
}
.menu-toggle{display:none;width:42px;height:42px;border-radius:11px;background:transparent;border:1px solid var(--line);color:var(--teal);cursor:pointer;font-size:20px}

/* ================= COMMON ================= */
.section-kicker{color:var(--teal);font-size:10px;font-weight:900;letter-spacing:.16em;text-transform:uppercase}
.section-heading{width:min(100%,var(--container));margin:0 auto 28px;padding:0 28px;display:flex;justify-content:space-between;align-items:flex-end;gap:42px}
.section-heading>div{min-width:0}
.section-heading h2{margin-top:9px}
.section-heading h2 span{color:var(--teal)}
.section-heading>p{max-width:500px;font-size:13px;line-height:1.75}
.primary-btn{min-height:52px;padding:0 22px;border-radius:12px;background:linear-gradient(135deg,#1bd9c0,#11c9b2);color:#02211c;font-size:13px;font-weight:900;white-space:nowrap;cursor:pointer;box-shadow:0 10px 28px rgba(20,211,185,.13);transition:.2s ease}
.primary-btn:hover{transform:translateY(-2px);box-shadow:0 15px 35px rgba(20,211,185,.23)}
.primary-btn:disabled{opacity:.65;cursor:wait;transform:none}
.secondary-btn{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 17px;border:1px solid rgba(25,216,189,.34);border-radius:999px;color:var(--teal);background:rgba(25,216,189,.025);font-size:12px;font-weight:800;cursor:pointer;transition:.2s ease}
.secondary-btn:hover{background:rgba(25,216,189,.09);border-color:rgba(25,216,189,.6);transform:translateY(-1px)}
.field{min-width:0}
.field label,.planner-field label,.planner-extra label{display:block;margin:0 0 6px 2px;color:#8fbab5;font-size:9px;font-weight:900;letter-spacing:.11em;text-transform:uppercase}
.field input,.field select,.field textarea,.planner-field input,.planner-field select,.planner-extra textarea{
  width:100%;color:#f3fbfa;background:#03231f;border:1px solid rgba(72,175,160,.18);outline:none;border-radius:12px;transition:.2s ease;
}
.field input,.field select,.planner-field input,.planner-field select{height:52px;padding:0 14px}
.field textarea,.planner-extra textarea{padding:12px 14px;resize:vertical}
.field input::placeholder,.field textarea::placeholder,.planner-field input::placeholder,.planner-extra textarea::placeholder{color:#648f89}
.field input:focus,.field select:focus,.field textarea:focus,.planner-field input:focus,.planner-field select:focus,.planner-extra textarea:focus{border-color:rgba(25,216,189,.62);box-shadow:0 0 0 3px rgba(25,216,189,.07)}

/* ================= HERO ================= */
.hero{position:relative;min-height:690px;padding:78px 28px 58px;overflow:hidden;border-bottom:1px solid rgba(50,210,190,.12)}
.hero::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:
    linear-gradient(90deg,rgba(1,18,16,.97) 0%,rgba(1,18,16,.83) 38%,rgba(1,18,16,.45) 70%,rgba(1,18,16,.72) 100%),
    linear-gradient(180deg,rgba(1,18,16,.18),rgba(1,18,16,.68)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2200&q=88") center/cover no-repeat;
  filter:saturate(1.08) contrast(1.02);
  transform:scale(1.02);
}
.hero::after{content:"";position:absolute;inset:0;z-index:0;background:radial-gradient(circle at 82% 40%,rgba(25,216,189,.13),transparent 30%),linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 100%);pointer-events:none}
.hero-inner{position:relative;z-index:2;width:min(100%,var(--container));margin:0 auto;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:35px;min-height:330px}
.hero-copy{max-width:760px}
.ai-badge{display:inline-flex;align-items:center;gap:8px;margin-bottom:17px;padding:7px 13px;border:1px solid rgba(25,216,189,.38);border-radius:999px;background:rgba(4,40,35,.65);color:#d9f8f3;font-size:9px;font-weight:900;letter-spacing:.11em}
.ai-badge span{width:7px;height:7px;border-radius:50%;background:var(--teal);box-shadow:0 0 13px rgba(25,216,189,.75)}
.hero .eyebrow{margin-bottom:11px;color:#9bc8c2;font-size:10px;font-weight:900;letter-spacing:.18em}
.hero h1{max-width:720px;margin-bottom:18px;font-weight:900;letter-spacing:-.055em;line-height:.98;text-shadow:0 8px 30px rgba(0,0,0,.3)}
.hero h1 span{color:var(--teal)}
.hero-text{max-width:620px;margin-bottom:22px;font-size:14px;line-height:1.75;color:#a5c2be}
.hero-actions{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin-top:24px}.hero-actions .primary-btn,.hero-actions .secondary-btn{min-height:48px;display:inline-flex;align-items:center;justify-content:center;padding:0 22px}
.hero-orbit{position:relative;width:min(100%,500px);height:390px;margin-left:auto;display:grid;place-items:center}
.orbit{position:absolute;border:1px solid rgba(35,220,196,.16);border-radius:50%;box-shadow:0 0 45px rgba(25,216,189,.04)}
.orbit-1{width:270px;height:270px}.orbit-2{width:350px;height:350px}.orbit-3{width:430px;height:430px}
.venue-core{width:108px;height:108px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(25,216,189,.5);background:radial-gradient(circle,rgba(25,216,189,.24),rgba(5,42,36,.92));color:var(--teal);font-size:48px;box-shadow:0 0 0 20px rgba(25,216,189,.025),0 0 55px rgba(25,216,189,.16);z-index:2}
.orbit-icon{position:absolute;width:45px;height:45px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(25,216,189,.28);background:rgba(3,30,27,.82);color:#d7f7f2;font-size:19px;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.icon-top{top:8px;left:50%;transform:translateX(-50%)}.icon-right{right:8px;top:50%;transform:translateY(-50%)}.icon-left{left:8px;top:50%;transform:translateY(-50%)}.icon-bottom{bottom:8px;left:50%;transform:translateX(-50%)}
.search-card{position:relative;z-index:4;width:min(100%,var(--container));margin:0 auto;padding:15px;display:grid;grid-template-columns:1.05fr 1.15fr .78fr .82fr auto;gap:11px;align-items:end;border:1px solid var(--line-strong);border-radius:18px;background:rgba(4,31,27,.88);box-shadow:0 22px 60px rgba(0,0,0,.25);backdrop-filter:blur(13px)}
.search-card .primary-btn{height:52px}
.hero-form-message{position:relative;z-index:4;width:min(100%,var(--container));margin:8px auto 0;min-height:18px;font-size:12px}
.micro-note{position:relative;z-index:4;width:min(100%,var(--container));margin:9px auto 0;color:#78a9a2;font-size:10px}

/* ================= TRUST ================= */
.trust-strip{width:min(100%,var(--container));margin:auto;padding:15px 28px;display:grid;grid-template-columns:repeat(4,1fr);gap:12px;border-bottom:1px solid rgba(50,209,188,.10)}
.trust-strip>div{display:flex;align-items:center;justify-content:center;gap:9px;color:#8db2ae;font-size:10px;font-weight:700}
.trust-strip>div>span:last-child{display:flex;flex-direction:column}
.trust-icon{width:28px;height:28px;display:grid;place-items:center;border-radius:9px;color:var(--teal);background:rgba(25,216,189,.07);font-size:12px;font-weight:900}
.trust-strip strong{color:#d6efeb;font-size:11px}.trust-strip small{color:#6e9993;font-size:9px}

/* ================= POPULAR EVENTS ================= */
.popular-section{width:min(100%,var(--container));margin:auto;padding:44px 28px 30px}
.popular-section>.section-kicker{margin-bottom:15px}
.event-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.event-card{position:relative;min-height:150px;padding:22px 17px 18px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;border:1px solid rgba(42,200,182,.17);border-radius:17px;background:#06231f;cursor:pointer;isolation:isolate;transition:.24s ease}
.event-card::before{content:"";position:absolute;inset:0;z-index:-2;background-size:cover;background-position:center;filter:saturate(1.12) contrast(1.03);transition:.35s ease}
.event-card::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(2,17,15,.10),rgba(2,17,15,.88) 84%)}
.event-card:nth-child(1)::before{background-image:url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=900&q=85")}
.event-card:nth-child(2)::before{background-image:url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=900&q=85")}
.event-card:nth-child(3)::before{background-image:url("https://images.unsplash.com/photo-1520857014576-2c4f4c972b57?auto=format&fit=crop&w=900&q=85")}
.event-card:nth-child(4)::before{background-image:url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=900&q=85")}
.event-card:nth-child(5)::before{background-image:url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=85")}
.event-card:hover{transform:translateY(-4px);border-color:rgba(25,216,189,.52);box-shadow:0 18px 45px rgba(0,0,0,.24)}
.event-card:hover::before{transform:scale(1.06)}
.event-symbol{width:34px;height:34px;display:grid;place-items:center;margin-bottom:auto;border:1px solid rgba(255,255,255,.18);border-radius:10px;background:rgba(2,20,18,.46);backdrop-filter:blur(6px);color:#fff;font-size:14px}
.event-card h3{font-size:17px;color:#fff}.event-card p{margin-top:4px;color:#b5cfcb;font-size:10px}.slider-dots{display:flex;justify-content:center;gap:6px;margin-top:15px}.slider-dots i{width:6px;height:6px;border-radius:50%;background:#315c56}.slider-dots i.selected{width:18px;border-radius:99px;background:var(--teal)}

/* ================= FEATURE ROW ================= */
.feature-row{width:min(100%,var(--container));margin:auto;padding:35px 28px;display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.feature-card{position:relative;min-height:280px;padding:26px;border:1px solid rgba(44,205,186,.16);border-radius:19px;background:linear-gradient(145deg,rgba(7,43,38,.88),rgba(3,27,24,.92));overflow:hidden}
.feature-card h2{margin:9px 0 13px;font-size:30px}.feature-card h2 span{color:var(--teal)}.feature-card>p{font-size:12px;line-height:1.75;max-width:430px}.feature-card .secondary-btn{margin-top:20px}
.feature-visual{position:absolute;right:22px;bottom:22px;width:78px;height:78px;display:grid;place-items:center;border-radius:22px;border:1px solid rgba(25,216,189,.18);color:var(--teal);background:rgba(25,216,189,.06);font-size:28px;transform:rotate(-7deg)}
.steps-mini{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:center;gap:8px;margin:24px 0 18px}.steps-mini>div{display:flex;flex-direction:column;align-items:center;text-align:center;gap:3px}.steps-mini b{font-size:16px;color:var(--teal)}.steps-mini strong{font-size:9px;color:#7da9a3}.steps-mini small{font-size:8px;color:#b4cdca}.steps-mini em{font-style:normal;color:#416e68;font-size:20px}.check-list{list-style:none;display:grid;gap:9px;margin-top:18px}.check-list li{position:relative;padding-left:22px;color:#bdd2cf;font-size:11px}.check-list li::before{content:"✓";position:absolute;left:0;top:0;width:15px;height:15px;display:grid;place-items:center;border-radius:50%;background:var(--teal);color:#00221d;font-size:9px;font-weight:900}.match-mini{margin-top:18px;padding:12px;border:1px solid rgba(25,216,189,.12);border-radius:13px;background:rgba(1,19,17,.36)}.match-mini small{display:block;color:#6e9993;font-size:8px;font-weight:900;letter-spacing:.1em}.match-mini b{display:block;margin:5px 0 9px;color:#c9e4df;font-size:10px}.match-mini p{display:flex;justify-content:space-between;margin-top:5px;color:#91b5b0;font-size:9px}.match-mini strong{color:var(--teal)}

/* ================= AI PLANNER ================= */
.ai-planner-section{width:100%;padding:54px 0 60px;background:linear-gradient(180deg,rgba(2,18,16,.25),rgba(4,30,26,.72));border-top:1px solid rgba(45,207,188,.10);border-bottom:1px solid rgba(45,207,188,.10)}
.ai-planner-section>.section-heading{margin-bottom:22px}
.ai-planner-card,.ai-results{width:min(100%,var(--container));margin:0 auto;padding:0 28px}
.ai-planner-card{padding-top:0}
.planner-header{padding:12px 15px;display:flex;align-items:center;justify-content:space-between;border:1px solid rgba(45,210,190,.18);border-bottom:0;border-radius:17px 17px 0 0;background:rgba(5,36,32,.78)}
.planner-header>div{display:flex;align-items:center;gap:8px}.planner-header strong{font-size:10px;letter-spacing:.1em}.planner-live-dot{width:7px;height:7px;border-radius:50%;background:var(--teal);box-shadow:0 0 12px rgba(25,216,189,.75)}.planner-status{color:#6f9a94;font-size:9px}
.planner-grid{padding:18px;display:grid;grid-template-columns:repeat(4,1fr);gap:12px;border:1px solid rgba(45,210,190,.18);border-top:0;background:rgba(3,25,22,.72)}
.planner-extra{padding:0 18px 16px;border:1px solid rgba(45,210,190,.18);border-top:0;background:rgba(3,25,22,.72)}
.planner-extra textarea{min-height:74px}
.planner-actions{padding:15px 18px;display:flex;flex-wrap:wrap;gap:9px;border:1px solid rgba(45,210,190,.18);border-top:0;border-radius:0 0 17px 17px;background:rgba(3,25,22,.72)}
.planner-message{min-height:20px;padding:8px 2px;font-size:11px}.planner-message.success,.form-message.success,.hero-form-message.success{color:#75e8d5}.planner-message.error,.form-message.error,.hero-form-message.error{color:#ff9d9d}
.ai-results{padding-top:18px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}
.ai-result-card{padding:18px;border:1px solid rgba(44,203,184,.16);border-radius:17px;background:linear-gradient(145deg,rgba(6,40,35,.83),rgba(3,25,22,.91));box-shadow:0 15px 45px rgba(0,0,0,.12)}
.ai-result-card:first-child{grid-column:span 2}
.result-card-header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px;color:#d6ece8;font-size:10px;font-weight:900;letter-spacing:.08em}.score-badge,.intent-badge{padding:5px 9px;border:1px solid rgba(25,216,189,.25);border-radius:999px;color:var(--teal);background:rgba(25,216,189,.06);font-size:9px}
.score-display{display:flex;align-items:center;gap:18px}.big-score{width:82px;height:82px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(25,216,189,.35);background:radial-gradient(circle,rgba(25,216,189,.13),rgba(4,32,28,.92));color:var(--teal);font-size:28px;font-weight:900}.score-display strong{display:block;color:#f0faf8;font-size:15px}.score-display p{margin-top:4px;font-size:10px;line-height:1.6}
.budget-result{display:flex;align-items:baseline;gap:10px}.budget-result strong{font-size:25px;color:#f6f1d5}.budget-result span{font-size:10px;color:#718f8a}.budget-breakdown{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}.budget-breakdown>div,.intent-grid>div{padding:10px;border:1px solid rgba(255,255,255,.055);border-radius:11px;background:rgba(0,0,0,.11)}.budget-breakdown small,.intent-grid small{display:block;color:#668e88;font-size:8px;font-weight:900;letter-spacing:.09em}.budget-breakdown strong,.intent-grid strong{display:block;margin-top:3px;color:#c8dfdc;font-size:10px}
.recommendation-content p{font-size:11px;line-height:1.7}.recommendation-list{display:flex;flex-wrap:wrap;gap:7px}.recommendation-placeholder{color:#789b96;font-size:10px}.recommendation-item{padding:8px 10px;border:1px solid rgba(25,216,189,.16);border-radius:999px;background:rgba(25,216,189,.035);color:#acd0cb;font-size:9px}.recommendation-item strong{color:var(--teal);font-size:10px}
.intent-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.timeline-list{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.timeline-item{display:flex;gap:8px}.timeline-dot{flex:0 0 26px;width:26px;height:26px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(25,216,189,.24);color:var(--teal);font-size:9px}.timeline-item strong{display:block;color:#c7dedb;font-size:9px}.timeline-item p{margin-top:3px;font-size:8px;line-height:1.45}.timeline-placeholder{font-size:10px;color:#789b96}
.event-checklist{display:grid;grid-template-columns:repeat(2,1fr);gap:5px 18px}.event-checklist label{display:flex;align-items:flex-start;gap:8px;padding:6px;color:#9bbab6;font-size:9px;cursor:pointer}.event-checklist input{margin-top:2px;accent-color:var(--teal)}.event-checklist input:checked+span{text-decoration:line-through;color:#58736f}.ai-final-card{grid-column:span 2;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px;border:1px solid rgba(25,216,189,.25);border-radius:18px;background:linear-gradient(120deg,rgba(8,57,49,.88),rgba(3,29,25,.92))}.ai-final-card h3{margin:7px 0 5px;font-size:23px}.ai-final-card h3 span{color:var(--teal)}.ai-final-card p{font-size:10px}.ai-final-card .primary-btn{flex:0 0 auto}

/* ================= ENQUIRY — HIGH PRIORITY ================= */
.enquiry-section{width:min(100%,var(--container));margin:0 auto;padding:58px 28px 68px;scroll-margin-top:88px;position:relative}
.enquiry-section::before{content:"TOP PRIORITY • CUSTOMER ENQUIRY";display:inline-flex;margin-bottom:10px;padding:5px 9px;border:1px solid rgba(25,216,189,.24);border-radius:999px;color:var(--teal);background:rgba(25,216,189,.05);font-size:8px;font-weight:900;letter-spacing:.12em}
.enquiry-section .section-heading{padding:0;margin:0 auto 20px}.enquiry-section .form-card{margin-top:0}
.form-card{padding:25px;border:1px solid rgba(45,207,188,.25);border-radius:20px;background:linear-gradient(145deg,rgba(6,42,37,.91),rgba(3,25,22,.95));box-shadow:var(--shadow)}
.form-section-title{margin:2px 0 14px;padding-bottom:9px;color:#bcd8d4;border-bottom:1px solid rgba(45,193,176,.11);font-size:10px;font-weight:900;letter-spacing:.10em;text-transform:uppercase}
.form-grid.four{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:22px}.form-grid.five{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-bottom:20px}
.form-card .field input,.form-card .field select{height:52px}.form-card .field textarea{min-height:110px}
.planner-summary-box{margin:6px 0 20px;padding:16px;border:1px solid rgba(25,216,189,.12);border-radius:14px;background:rgba(1,20,18,.32)}.planner-summary-box p{font-size:11px;line-height:1.65}.planner-summary-preview{margin:11px 0;padding:12px;border:1px dashed rgba(25,216,189,.16);border-radius:11px;color:#8eaaa6;font-size:10px;line-height:1.7;white-space:pre-wrap}.requirements-row{display:grid;grid-template-columns:1fr 300px;gap:16px;align-items:end}.requirements-row .submit-wrap{display:flex;justify-content:flex-end}.form-submit{width:100%;min-height:58px}.form-message{min-height:20px;margin-top:8px;font-size:11px}.form-note{margin-top:6px;color:#648b86;font-size:9px}

/* ================= ABOUT ================= */
.about-section{width:min(100%,var(--container));margin:auto;padding:70px 28px;display:grid;grid-template-columns:1.05fr .95fr;gap:45px;align-items:center}.about-copy h2{margin:10px 0 18px}.about-copy h2 span{display:block;color:var(--teal)}.about-copy p{max-width:650px;margin-bottom:12px;font-size:12px;line-height:1.8}.about-points{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}.about-points span{padding:7px 10px;border:1px solid rgba(25,216,189,.14);border-radius:999px;color:#9fc2bd;background:rgba(25,216,189,.03);font-size:9px}.about-image{position:relative;min-height:330px;overflow:hidden;border:1px solid rgba(25,216,189,.22);border-radius:20px;background:url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1200&q=88") center/cover}.image-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(1,17,15,.08),rgba(1,17,15,.82))}.about-image span{position:absolute;left:22px;bottom:20px;color:#fff;font-size:10px;font-weight:900;letter-spacing:.15em}

/* ================= CONTACT ================= */
.contact-section{width:min(100%,var(--container));margin:auto;padding:62px 28px 70px;border-top:1px solid rgba(47,205,186,.11);text-align:center}.contact-section h2{margin:9px 0 9px}.contact-section h2 span{color:var(--teal)}.contact-section>p{max-width:580px;margin:0 auto 25px;font-size:12px;line-height:1.7}.contact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;text-align:left}.contact-card{min-width:0;padding:18px;border:1px solid rgba(46,190,175,.17);border-radius:16px;background:linear-gradient(145deg,rgba(6,43,38,.86),rgba(3,28,25,.92));transition:.2s ease}.contact-card:hover{transform:translateY(-3px);border-color:rgba(25,216,189,.48);box-shadow:0 15px 40px rgba(0,0,0,.2)}.contact-card b{width:36px;height:36px;display:grid;place-items:center;margin-bottom:13px;border-radius:10px;color:var(--teal);background:rgba(25,216,189,.08);font-size:16px}.contact-card strong{display:block;color:#d8ece9;font-size:12px}.contact-card span{display:block;margin-top:4px;overflow:hidden;color:#9bc0ba;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.contact-card small{display:block;margin-top:7px;color:#638d87;font-size:8px}

/* ================= FOOTER ================= */
.site-footer{border-top:1px solid rgba(47,205,186,.12);background:#021311}.footer-inner{width:min(100%,var(--container));margin:auto;padding:40px 28px 20px}.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:35px;margin-bottom:30px}.footer-link-group{display:flex;flex-direction:column;gap:7px}.footer-link-group h4{margin-bottom:4px;color:#d7ebe8;font-size:10px;text-transform:uppercase;letter-spacing:.11em}.footer-link-group a{width:max-content;color:#719b95;font-size:10px;transition:.2s ease}.footer-link-group a:hover{color:var(--teal)}.footer-bottom{padding-top:17px;display:flex;justify-content:space-between;gap:15px;border-top:1px solid rgba(45,180,166,.10);color:#5d817c;font-size:9px}.footer-final-logo{display:flex;justify-content:center;margin-top:22px}.footer-final-logo img{width:130px;opacity:.72}

/* ================= TOAST ================= */
.toast-message{position:fixed;right:22px;bottom:22px;z-index:3000;max-width:390px;padding:11px 15px;border:1px solid rgba(25,216,189,.34);border-radius:12px;color:#d9f8f3;background:#062d27;box-shadow:0 15px 45px rgba(0,0,0,.3);font-size:11px;font-weight:700;opacity:0;transform:translateY(12px);pointer-events:none;transition:.25s ease}.toast-message.show{opacity:1;transform:translateY(0)}

/* ================= MOBILE ================= */
@media(max-width:1120px){
  #mainNav{gap:18px}.hero-inner{grid-template-columns:1fr}.hero-orbit{display:none}.hero-copy{max-width:850px}.search-card{grid-template-columns:repeat(2,1fr)}.event-grid{grid-template-columns:repeat(3,1fr)}.feature-row{grid-template-columns:1fr 1fr}.feature-card:last-child{grid-column:span 2}.planner-grid{grid-template-columns:repeat(2,1fr)}.form-grid.four{grid-template-columns:repeat(2,1fr)}.form-grid.five{grid-template-columns:repeat(3,1fr)}.contact-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1060px){
  .site-header{height:68px}.header-inner{padding:0 18px}.menu-toggle{display:block}
  #mainNav{position:absolute;left:12px;right:12px;top:72px;display:none;flex-direction:column;align-items:stretch;gap:2px;padding:9px;border:1px solid rgba(35,203,183,.18);border-radius:14px;background:rgba(2,24,21,.98);box-shadow:0 20px 55px rgba(0,0,0,.35)}#mainNav.open{display:flex}#mainNav a{padding:11px 12px}.nav-cta{text-align:center}
}
@media(max-width:820px){
  .site-header{height:68px}.header-inner{padding:0 18px}.brand{width:155px;height:62px}.brand img{width:150px;max-height:56px}.menu-toggle{display:block}
  #mainNav{position:absolute;left:12px;right:12px;top:72px;display:none;flex-direction:column;align-items:stretch;gap:2px;padding:9px;border:1px solid rgba(35,203,183,.18);border-radius:14px;background:rgba(2,24,21,.98);box-shadow:0 20px 55px rgba(0,0,0,.35)}#mainNav.open{display:flex}#mainNav a{padding:11px 12px}.nav-cta{text-align:center}
  .hero{min-height:auto;padding:58px 20px 44px}.hero-inner{min-height:auto}.hero h1{font-size:clamp(40px,9vw,62px)}.hero-text{font-size:13px}.search-card{padding:13px}.trust-strip{padding:14px 20px;grid-template-columns:repeat(2,1fr)}.popular-section,.feature-row,.enquiry-section,.about-section,.contact-section{padding-left:20px;padding-right:20px}.section-heading{padding-left:20px;padding-right:20px;display:block}.section-heading>p{margin-top:12px}.feature-row{padding-top:25px}.ai-planner-card,.ai-results{padding-left:20px;padding-right:20px}.ai-results{grid-template-columns:1fr}.ai-result-card:first-child,.ai-final-card{grid-column:auto}.intent-grid{grid-template-columns:repeat(2,1fr)}.timeline-list{grid-template-columns:repeat(2,1fr)}.ai-final-card{display:block}.ai-final-card .primary-btn{margin-top:15px}.requirements-row{grid-template-columns:1fr}.about-section{grid-template-columns:1fr}.about-image{min-height:280px}
}
@media(max-width:620px){
  body{font-size:13px}.hero{padding-top:48px}.ai-badge{font-size:8px}.hero h1{font-size:clamp(38px,12vw,54px)}.search-card{grid-template-columns:1fr}.trust-strip{grid-template-columns:1fr}.event-grid{grid-template-columns:1fr 1fr}.event-card{min-height:145px}.feature-row{grid-template-columns:1fr}.feature-card:last-child{grid-column:auto}.planner-grid{grid-template-columns:1fr}.planner-actions{flex-direction:column}.planner-actions .primary-btn,.planner-actions .secondary-btn{width:100%}.budget-breakdown{grid-template-columns:1fr 1fr}.event-checklist{grid-template-columns:1fr}.timeline-list{grid-template-columns:1fr}.form-grid.four,.form-grid.five{grid-template-columns:1fr}.contact-grid{grid-template-columns:1fr}.footer-links{grid-template-columns:1fr 1fr}.footer-bottom{flex-direction:column}.ai-final-card h3{font-size:20px}
}
@media(max-width:390px){.event-grid{grid-template-columns:1fr}.footer-links{grid-template-columns:1fr}.hero h1{font-size:37px}}

@media(max-width:520px){.hero-actions{align-items:stretch;flex-direction:column}.hero-actions .primary-btn,.hero-actions .secondary-btn{width:100%}}

/* =========================================================
   LIVE VERIFIED VENUE SHOWCASE
   ========================================================= */

.home-venues-section{
  width:min(100%,var(--container));
  margin:0 auto;
  padding:62px 28px 70px;
  border-bottom:1px solid rgba(50,210,190,.10);
  scroll-margin-top:86px;
}

.home-venues-heading{
  padding:0;
  margin-bottom:25px;
}

.home-venues-heading-actions{
  max-width:520px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
}

.home-venues-heading-actions p{
  max-width:355px;
  font-size:12px;
  line-height:1.7;
}

.home-venue-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,360px));
  justify-content:center;
  gap:18px;
}

.home-venue-card{
  min-width:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(45,214,193,.18);
  border-radius:21px;
  background:linear-gradient(145deg,rgba(7,43,38,.96),rgba(3,25,22,.98));
  box-shadow:0 22px 58px rgba(0,0,0,.23);
  transition:transform .23s ease,border-color .23s ease,box-shadow .23s ease;
}

.home-venue-card:hover{
  transform:translateY(-5px);
  border-color:rgba(45,214,193,.42);
  box-shadow:0 30px 68px rgba(0,0,0,.31);
}

.home-venue-media{
  position:relative;
  min-height:195px;
  overflow:hidden;
  background:
    radial-gradient(circle at 75% 18%,rgba(25,216,189,.24),transparent 35%),
    linear-gradient(145deg,#0c3934,#041e1b);
}

.home-venue-media img{
  width:100%;
  height:195px;
  object-fit:cover;
  transition:transform .45s ease;
}

.home-venue-card:hover .home-venue-media img{
  transform:scale(1.045);
}

.home-venue-image-fallback{
  min-height:195px;
  display:grid;
  place-items:center;
  color:rgba(231,249,246,.72);
  font-size:48px;
}

.home-venue-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 48%,rgba(2,19,17,.76));
}

.home-venue-badges{
  position:absolute;
  z-index:2;
  top:13px;
  left:13px;
  right:13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:9px;
}

.home-venue-badge{
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(2,20,18,.72);
  color:#f1fbf9;
  font-size:9px;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}

.home-venue-badge.verified{
  border-color:rgba(45,214,193,.34);
  color:#77ead9;
}

.home-venue-content{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:18px;
}

.home-venue-content h3{
  overflow-wrap:anywhere;
  color:#f4fbfa;
  font-size:20px;
}

.home-venue-location{
  margin-top:7px;
  color:#8db3ad;
  font-size:11px;
}

.home-venue-facts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:14px 0 12px;
}

.home-venue-fact{
  padding:11px;
  border:1px solid rgba(45,214,193,.09);
  border-radius:11px;
  background:rgba(255,255,255,.025);
}

.home-venue-fact span,.home-venue-fact strong{
  display:block;
}

.home-venue-fact span{
  color:#638f88;
  font-size:8px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.home-venue-fact strong{
  margin-top:4px;
  color:#d9ece9;
  font-size:11px;
}

.home-venue-features{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  min-height:28px;
}

.home-venue-features span{
  padding:6px 8px;
  border-radius:8px;
  background:rgba(25,216,189,.07);
  color:#9fc8c2;
  font-size:9px;
  font-weight:750;
}

.home-venue-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
  margin-top:19px;
}

.home-venue-actions .primary-btn,
.home-venue-actions .secondary-btn{
  width:100%;
  min-height:44px;
  border-radius:11px;
  padding:0 12px;
  font-size:11px;
}

.home-venue-loading,
.home-venue-empty{
  grid-column:1/-1;
  min-height:210px;
  padding:34px;
  display:grid;
  place-items:center;
  align-content:center;
  gap:12px;
  border:1px solid rgba(45,214,193,.14);
  border-radius:21px;
  background:rgba(7,43,38,.46);
  text-align:center;
}

.home-venue-loading span{
  width:32px;
  height:32px;
  border:3px solid rgba(25,216,189,.15);
  border-top-color:var(--teal);
  border-radius:50%;
  animation:smvVenueSpin .8s linear infinite;
}

.home-venue-loading strong,.home-venue-empty strong{
  color:#d8ece8;
  font-size:13px;
}

.home-venue-empty p{
  max-width:500px;
  font-size:11px;
  line-height:1.7;
}

@keyframes smvVenueSpin{to{transform:rotate(360deg)}}

@media(max-width:980px){
  .home-venue-grid{grid-template-columns:repeat(auto-fit,minmax(280px,360px))}
  .home-venues-heading-actions{max-width:430px;align-items:flex-end;flex-direction:column}
}

@media(max-width:820px){
  .home-venues-section{padding-left:20px;padding-right:20px}
  .home-venues-heading-actions{max-width:none;margin-top:14px;align-items:flex-start}
}

@media(max-width:620px){
  .home-venue-grid{grid-template-columns:1fr}
  .home-venue-media,.home-venue-media img,.home-venue-image-fallback{min-height:190px;height:190px}
  .home-venues-heading-actions{display:block}
  .home-venues-heading-actions .secondary-btn{margin-top:14px}
}

@media(max-width:390px){
  .home-venue-facts,.home-venue-actions{grid-template-columns:1fr}
}

/* =========================================================
   SELECT MY VENUE — CUSTOMER-FRIENDLY FINAL POLISH
   Keeps the existing HTML unchanged.
========================================================= */

/* Main page flow: put the real customer enquiry immediately
   after the hero/trust area, before Popular Events. */
main{
  display:flex;
  flex-direction:column;
}
.hero{order:1}
.trust-strip{order:2}
.enquiry-section{order:3}
.home-venues-section{order:4}
.popular-section{order:5}
.feature-row{order:6}
.ai-planner-section{order:7}
.about-section{order:8}
.contact-section{order:9}

/* Slightly larger, easier-to-read overall typography */
body{font-size:15px}
.section-kicker{font-size:11px}
.field label,.planner-field label,.planner-extra label{font-size:10px}
.field input,.field select,.planner-field input,.planner-field select{font-size:14px}
.field input,.field select,.planner-field input,.planner-field select{height:54px}
.primary-btn{font-size:14px;min-height:54px}
.secondary-btn{font-size:13px;min-height:44px}

/* Larger premium logo */
.brand{width:300px;height:82px}
.brand img{width:280px;max-height:78px}

/* Hero: make the celebration image clearer and more prominent */
.hero{min-height:540px;padding:54px 28px 42px}
.hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:#f4eee5;
}
.hero-slide{
  position:absolute;
  inset:-2%;
  opacity:0;
  background-position:72% center;
  background-size:cover;
  background-repeat:no-repeat;
  filter:saturate(1.02) contrast(1.03) brightness(1.08);
  will-change:opacity,transform;
  animation:smvHeroSideSlide 28s cubic-bezier(.55,.08,.35,1) infinite both;
}
.hero-slide-1{
  background-image:url("assets/hero/hero-bright-wedding-v2.webp");
  background-position:74% center;
  animation-delay:-1s;
}
.hero-slide-2{
  background-image:url("assets/hero/hero-bright-celebration-v2.webp");
  background-position:78% center;
  animation-delay:6s;
}
.hero-slide-3{
  background-image:url("assets/hero/hero-bright-garden-v2.webp");
  background-position:78% center;
  animation-delay:13s;
}
.hero-slide-4{
  background-image:url("assets/hero/hero-bright-engagement-v2.webp");
  background-position:76% center;
  animation-delay:20s;
}
@keyframes smvHeroSideSlide{
  0%{opacity:0;transform:translateX(16%) scale(1.025)}
  5%{opacity:1;transform:translateX(0) scale(1.025)}
  23%{opacity:1;transform:translateX(-2%) scale(1.055)}
  29%{opacity:0;transform:translateX(-16%) scale(1.07)}
  100%{opacity:0;transform:translateX(-16%) scale(1.07)}
}
.hero::before{
  z-index:1;
  background:
    linear-gradient(90deg,rgba(1,18,16,.91) 0%,rgba(1,18,16,.72) 38%,rgba(1,18,16,.16) 70%,rgba(1,18,16,.06) 100%),
    linear-gradient(180deg,rgba(1,18,16,.02),rgba(1,18,16,.22));
  filter:none;
  transform:none;
}
.hero::after{z-index:1;background:radial-gradient(circle at 80% 42%,rgba(255,255,255,.16),transparent 34%),linear-gradient(90deg,transparent 52%,rgba(255,255,255,.05) 100%)}
.hero h1{font-size:clamp(44px,4.8vw,68px)}
.hero-text{font-size:14px}

/* Make the real enquiry feel like the main customer action */
.enquiry-section{
  padding-top:42px;
  padding-bottom:48px;
}
.enquiry-section::before{
  content:"START HERE • CUSTOMER ENQUIRY";
  font-size:9px;
  margin-bottom:12px;
}
.enquiry-section .section-heading{margin-bottom:18px}
.enquiry-section .section-heading h2{font-size:clamp(32px,3.5vw,50px)}
.form-card{padding:28px;border-radius:22px}
.form-section-title{font-size:11px;margin-bottom:15px}
.form-card .field input,.form-card .field select{height:54px;font-size:14px}
.form-card .field label{font-size:10px}
.form-note{font-size:10px}
.form-submit{min-height:60px;font-size:15px}

/* Popular Events: clearer image cards, less dark overlay */
.popular-section{padding-top:36px}
.popular-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:35px;margin-bottom:22px}
.popular-heading h2{margin-top:9px;font-size:clamp(30px,3.3vw,46px);line-height:1.08}
.popular-heading h2 span{display:block;color:var(--teal)}
.popular-heading>p{max-width:420px;font-size:12px;line-height:1.75}
.event-grid{gap:16px}
.event-card{min-height:185px;padding:20px 18px 18px}
.event-card::after{background:linear-gradient(180deg,rgba(2,17,15,.02) 0%,rgba(2,17,15,.22) 38%,rgba(2,17,15,.78) 100%)}
.event-card h3{font-size:18px;text-shadow:0 2px 12px rgba(0,0,0,.55)}
.event-card p{font-size:11px;color:#d1e3df;text-shadow:0 2px 10px rgba(0,0,0,.55)}
.event-symbol{width:38px;height:38px;font-size:15px;background:rgba(2,20,18,.34)}

/* Give the feature cards a little more breathing room */
.feature-card{min-height:300px;padding:28px}
.feature-card h2{font-size:31px}
.feature-card>p{font-size:13px}
.check-list li{font-size:12px}

/* AI planner remains functional, but visually secondary to enquiry */
.ai-planner-section{padding-top:48px}
.ai-planner-section .section-heading h2{font-size:clamp(30px,3.3vw,46px)}
.planner-header strong{font-size:11px}
.planner-status{font-size:10px}
.planner-grid{gap:13px;padding:20px}
.planner-extra{padding-left:20px;padding-right:20px}
.planner-actions{padding:16px 20px}

/* More attractive contact cards — simple, clean, premium */
.contact-section{padding-top:58px;padding-bottom:74px}
.contact-section>p{font-size:13px;max-width:620px}
.contact-grid{gap:16px}
.contact-card{
  min-height:188px;
  padding:22px;
  border-radius:19px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 100% 0%,rgba(25,216,189,.12),transparent 38%),
    linear-gradient(145deg,rgba(8,53,47,.95),rgba(3,28,25,.98));
  box-shadow:0 14px 38px rgba(0,0,0,.16);
}
.contact-card::after{
  content:"";
  position:absolute;
  right:-35px;
  bottom:-45px;
  width:120px;
  height:120px;
  border-radius:50%;
  border:1px solid rgba(25,216,189,.10);
  pointer-events:none;
}
.contact-card b{
  width:46px;
  height:46px;
  margin-bottom:16px;
  border-radius:13px;
  background:linear-gradient(145deg,rgba(25,216,189,.18),rgba(25,216,189,.05));
  border:1px solid rgba(25,216,189,.18);
  font-size:19px;
}
.contact-card strong{font-size:14px}
.contact-card span{font-size:11px;color:#b3d3ce;margin-top:6px}
.contact-card small{font-size:9px;margin-top:9px;color:#77a39d}

/* Slightly larger footer presence */
.site-footer{padding-bottom:4px}
.footer-inner{padding-top:44px;padding-bottom:24px}
.footer-link-group h4{font-size:11px}
.footer-link-group a{font-size:11px}
.footer-bottom{font-size:10px}
.footer-final-logo{margin-top:28px}
.footer-final-logo img{width:155px;opacity:.84}

/* Desktop: keep the enquiry heading and action area prominent */
@media(min-width:1121px){
  .enquiry-section .section-heading{align-items:center}
  .enquiry-section .section-heading>p{font-size:13px}
}

/* Tablet */
@media(max-width:1120px){
  .brand{width:200px}
  .brand img{width:188px}
  .event-card{min-height:175px}
}

/* Mobile */
@media(max-width:820px){
  .brand{width:175px;height:62px}
  .brand img{width:170px;max-height:58px}
  .hero{min-height:auto;padding-top:58px}
  .hero h1{font-size:clamp(42px,10vw,62px)}
  .hero-text{font-size:14px}
  .enquiry-section{padding-top:34px}
  .event-card{min-height:170px}
  .popular-heading{display:block}
  .popular-heading>p{margin-top:13px}
  .contact-card{min-height:175px}
}

@media(max-width:620px){
  body{font-size:14px}
  .brand{width:160px}
  .brand img{width:155px;max-height:55px}
  .hero h1{font-size:clamp(38px,11.5vw,54px)}
  .hero-text{font-size:13px}
  .enquiry-section .section-heading h2{font-size:32px}
  .form-card{padding:20px}
  .event-card{min-height:160px}
  .popular-heading h2{font-size:32px}
  .contact-card{min-height:165px}
  .footer-final-logo img{width:145px}
}

/* =========================================================
   SELECT MY VENUE — FINAL CUSTOMER CONFIRMATION + BRAND POLISH
   Only final overrides. Existing working design remains intact.
========================================================= */

/* Slightly larger header logo without making the header bulky */
.brand{width:300px;height:80px}
.brand img{width:280px;max-height:74px}

/* Light green enquiry success confirmation */
.form-message.success,
.hero-form-message.success,
.planner-message.success {
  display: block;
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid #86efac;
  border-radius: 13px;
  color: #166534;
  background: #dcfce7;
  box-shadow:
    0 8px 24px rgba(34, 197, 94, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

.form-message.success::before,
.hero-form-message.success::before {
  content: "✓ ";
  color: #15803d;
  font-weight: 900;
}

/* Floating WhatsApp — visible but clean */
.floating-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:2500;
  display:flex;
  align-items:center;
  gap:9px;
  min-height:50px;
  padding:7px 14px 7px 8px;
  border:1px solid rgba(92,240,196,.42);
  border-radius:999px;
  color:#eafff9;
  background:linear-gradient(135deg,rgba(8,68,55,.97),rgba(4,40,34,.97));
  box-shadow:0 14px 38px rgba(0,0,0,.30),0 0 25px rgba(25,216,189,.10);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  font-size:11px;
  font-weight:900;
  transition:.22s ease;
}
.floating-whatsapp:hover{
  transform:translateY(-3px) scale(1.02);
  border-color:rgba(92,240,196,.70);
  box-shadow:0 18px 45px rgba(0,0,0,.34),0 0 32px rgba(25,216,189,.16);
}
.floating-whatsapp-icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#00251f;
  background:#56e8bf;
  font-size:16px;
}
.floating-whatsapp-text{white-space:nowrap}

@media(max-width:820px){
  .brand{width:190px;height:64px}
  .brand img{width:180px;max-height:60px}
  .floating-whatsapp{right:14px;bottom:14px}
}

@media(max-width:620px){
  .brand{width:172px}
  .brand img{width:165px;max-height:57px}
  .floating-whatsapp{right:12px;bottom:12px;min-height:48px;padding-right:11px}
  .floating-whatsapp-text{display:none}
  .floating-whatsapp-icon{width:38px;height:38px}
}

/* =========================================================
   AUTO ENQUIRY POPUP
   Select My Venue
========================================================= */

.enquiry-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(3, 15, 16, 0.72);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


.enquiry-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}


.enquiry-popup {
  position: relative;

  width: min(620px, 100%);

  max-height: calc(100vh - 40px);

  overflow-y: auto;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(10, 36, 36, 0.98),
      rgba(5, 24, 25, 0.98)
    );

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.03);

  transform: translateY(20px) scale(0.97);

  transition:
    transform 0.35s ease;

  scrollbar-width: thin;
}


.enquiry-popup-overlay.show .enquiry-popup {
  transform: translateY(0) scale(1);
}


.popup-content {
  padding: 38px 40px 30px;
}


.popup-close {
  position: absolute;

  top: 16px;
  right: 18px;

  width: 36px;
  height: 36px;

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 50%;

  background: rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.75);

  font-size: 25px;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.popup-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: rotate(90deg);
}


.popup-badge {
  display: inline-flex;

  align-items: center;
  gap: 7px;

  margin-bottom: 12px;

  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.09);

  color: #d7b86a;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.2px;
}


.popup-content h2 {
  margin: 0;

  max-width: 500px;

  color: #fff;

  font-size: clamp(28px, 4vw, 40px);

  line-height: 1.08;

  letter-spacing: -1px;
}


.popup-content h2 span {
  display: block;

  color: #d7b86a;
}


.popup-subtitle {
  max-width: 510px;

  margin: 14px 0 25px;

  color: rgba(255,255,255,0.68);

  font-size: 14px;

  line-height: 1.65;
}


.popup-form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}


.popup-field {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.popup-field label {
  color: rgba(255,255,255,0.58);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;
}


.popup-field input,
.popup-field select {
  width: 100%;

  min-height: 48px;

  padding: 0 14px;

  border-radius: 11px;

  border: 1px solid rgba(255,255,255,0.10);

  background: rgba(255,255,255,0.055);

  color: #fff;

  outline: none;

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


.popup-field input::placeholder {
  color: rgba(255,255,255,0.35);
}


.popup-field select option {
  color: #111;
  background: #fff;
}


.popup-field input:focus,
.popup-field select:focus {
  border-color: rgba(215,184,106,0.7);

  background: rgba(255,255,255,0.08);

  box-shadow:
    0 0 0 3px rgba(215,184,106,0.08);
}


.popup-submit-btn {
  width: 100%;

  min-height: 52px;

  margin-top: 20px;

  border: 0;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #d7b86a,
      #b8954b
    );

  color: #071b1b;

  font-family: inherit;

  font-size: 14px;

  font-weight: 900;

  letter-spacing: 0.2px;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(215,184,106,0.18);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.popup-submit-btn span {
  margin-left: 6px;

  font-size: 17px;
}


.popup-submit-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 35px rgba(215,184,106,0.26);
}


.popup-submit-btn:active {
  transform: translateY(0);
}


.popup-trust {
  margin: 12px 0 0;

  text-align: center;

  color: rgba(255,255,255,0.42);

  font-size: 10px;

  line-height: 1.5;
}


.popup-later {
  display: block;

  margin: 14px auto 0;

  padding: 5px 10px;

  border: 0;

  background: transparent;

  color: rgba(255,255,255,0.42);

  font-family: inherit;

  font-size: 11px;

  cursor: pointer;

  transition:
    color 0.2s ease;
}


.popup-later:hover {
  color: rgba(255,255,255,0.78);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .enquiry-popup-overlay {
    align-items: flex-end;

    padding: 10px;
  }


  .enquiry-popup {
    width: 100%;

    max-height: calc(100vh - 20px);

    border-radius: 22px 22px 18px 18px;
  }


  .popup-content {
    padding: 32px 20px 22px;
  }


  .popup-content h2 {
    font-size: 28px;
  }


  .popup-subtitle {
    font-size: 13px;

    margin-bottom: 20px;
  }


  .popup-form-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .popup-field input,
  .popup-field select {
    min-height: 46px;
  }


  .popup-submit-btn {
    margin-top: 17px;
  }

}


/* Prevent background scrolling while popup is open */

body.popup-open {
  overflow: hidden;
}

/* =========================================================
   FLOATING AI ASSISTANT — ABOVE WHATSAPP
   ========================================================= */

.smv-ai-chat-button {
  position: fixed !important;
  right: 24px !important;
  bottom: 96px !important;
  z-index: 9998 !important;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 13px 18px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #0d7f78,
    #075653
  );

  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(20, 184, 166, 0.18);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.smv-ai-chat-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(20, 184, 166, 0.25);
}
/* =========================================================
   SELECT MY VENUE — FINAL AI + WHATSAPP POSITION FIX
   ========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2500;
}

.smv-ai-chat-button {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 9998;
}

.smv-ai-chat-panel {
  position: fixed;
  right: 20px;
  bottom: 145px;
  z-index: 9999;
}


/* MOBILE */
@media (max-width: 600px) {

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .smv-ai-chat-button {
    right: 12px;
    bottom: 72px;
  }

  .smv-ai-chat-panel {
    right: 12px;
    bottom: 128px;
    width: calc(100vw - 24px);
    height: min(570px, calc(100vh - 145px));
  }
}

/* =========================================================
   COMPACT HERO + DISTINCT ENQUIRY EXPERIENCE
   Final layout overrides; form fields and submission logic remain unchanged.
   ========================================================= */

.hero-inner {
  min-height: 360px;
}

.hero-orbit {
  height: 310px;
  transform: scale(.80);
  transform-origin: center right;
  opacity: .76;
}

.enquiry-section {
  width: min(calc(100% - 48px), var(--container));
  margin: 26px auto;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(55, 224, 200, .23);
  border-radius: 27px;
  background:
    radial-gradient(circle at 0 0, rgba(25, 216, 189, .16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(224, 185, 91, .08), transparent 31%),
    linear-gradient(145deg, rgba(7, 48, 42, .96), rgba(2, 24, 22, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.enquiry-section::before {
  background: rgba(25, 216, 189, .10);
  border-color: rgba(73, 229, 207, .38);
}

.enquiry-section .form-card {
  border-color: rgba(74, 222, 201, .24);
  background:
    linear-gradient(145deg, rgba(4, 33, 30, .94), rgba(2, 20, 18, .98));
  box-shadow: 0 18px 52px rgba(0, 0, 0, .23);
}

@media (min-width: 1121px) {
  .enquiry-section {
    display: grid;
    grid-template-columns: minmax(245px, .43fr) minmax(0, 1.57fr);
    grid-template-areas:
      "badge badge"
      "heading form";
    column-gap: 27px;
    row-gap: 15px;
    align-items: start;
  }

  .enquiry-section::before {
    grid-area: badge;
    justify-self: start;
    margin: 0;
  }

  .enquiry-section .section-heading {
    grid-area: heading;
    display: block;
    margin: 8px 0 0;
    padding: 0 4px;
  }

  .enquiry-section .section-heading h2 {
    font-size: clamp(32px, 3.25vw, 47px);
    line-height: 1.04;
  }

  .enquiry-section .section-heading > p {
    max-width: 310px;
    margin-top: 18px;
    color: #9fc1bc;
    font-size: 12px;
    line-height: 1.75;
  }

  .enquiry-section .form-card {
    grid-area: form;
    padding: 20px;
    border-radius: 20px;
  }

  .enquiry-section .form-section-title {
    margin-bottom: 10px;
    padding-bottom: 7px;
    font-size: 9px;
  }

  .enquiry-section .form-grid.four,
  .enquiry-section .form-grid.five {
    gap: 9px;
    margin-bottom: 14px;
  }

  .enquiry-section .form-card .field input,
  .enquiry-section .form-card .field select {
    height: 48px;
    font-size: 13px;
  }

  .enquiry-section .planner-summary-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 14px;
    margin: 3px 0 14px;
    padding: 12px;
  }

  .enquiry-section .planner-summary-box .form-section-title,
  .enquiry-section .planner-summary-box > p,
  .enquiry-section .planner-summary-preview {
    grid-column: 1;
  }

  .enquiry-section .planner-summary-box > p {
    font-size: 10px;
    line-height: 1.45;
  }

  .enquiry-section .planner-summary-preview {
    max-height: 68px;
    margin: 5px 0 0;
    padding: 9px;
    overflow: auto;
  }

  .enquiry-section .planner-summary-box .secondary-btn {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    white-space: nowrap;
  }

  .enquiry-section .form-card .field textarea {
    min-height: 82px;
  }

  .enquiry-section .requirements-row {
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 12px;
  }

  .enquiry-section .form-submit {
    min-height: 54px;
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: 500px;
    padding-top: 52px;
    padding-bottom: 38px;
  }

  .hero-inner {
    min-height: 350px;
  }

  .enquiry-section {
    width: min(calc(100% - 32px), var(--container));
    padding: 26px 22px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 470px;
    padding: 42px 18px 32px;
  }

  .hero-inner {
    min-height: 345px;
  }

  .hero h1 {
    max-width: 94%;
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .hero-slide {
    background-position: 78% center;
    filter: saturate(1.02) contrast(1.04) brightness(1.12);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(1,18,16,.88) 0%, rgba(1,18,16,.69) 48%, rgba(1,18,16,.16) 100%),
      linear-gradient(180deg, rgba(1,18,16,.02), rgba(1,18,16,.25));
  }

  .hero::after {
    background:
      radial-gradient(circle at 86% 32%, rgba(255,255,255,.17), transparent 32%),
      linear-gradient(90deg, transparent 56%, rgba(255,255,255,.06) 100%);
  }

  .hero-text {
    max-width: 92%;
    color: #c4dcd8;
  }

  .enquiry-section {
    width: calc(100% - 20px);
    margin: 16px auto;
    padding: 24px 16px;
    border-radius: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}

/* FINAL FLOATING BUTTON SPACING */

.smv-ai-chat-button {
  bottom: 92px;
}

.smv-ai-chat-panel {
  bottom: 153px;
}

@media (max-width: 600px) {
  .smv-ai-chat-button {
    bottom: 82px;
  }

  .smv-ai-chat-panel {
    bottom: 138px;
  }
}

/* =========================================================
   SELECT MY VENUE — FINAL AI ASSISTANT OVERRIDE
   ========================================================= */

#smvFinalAIAssistant{
  position:relative;
  z-index:10000;
}


/* =========================================================
   FLOATING AI BUTTON
   ========================================================= */

.smv-final-ai-button{
  position:fixed;

  right:20px;

  /*
     WhatsApp is already at bottom:20px.
     Therefore AI sits ABOVE WhatsApp.
  */
  bottom:84px;

  z-index:9998;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;

  min-height:50px;

  padding:7px 17px 7px 8px;

  border:1px solid rgba(92,240,196,.42);

  border-radius:999px;

  color:#ecfffa;

  background:
    linear-gradient(
      135deg,
      rgba(10,111,104,.98),
      rgba(4,64,59,.98)
    );

  box-shadow:
    0 14px 38px rgba(0,0,0,.30),
    0 0 25px rgba(25,216,189,.12);

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  font-family:inherit;
  font-size:12px;
  font-weight:900;

  cursor:pointer;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}


.smv-final-ai-button:hover{

  transform:
    translateY(-3px)
    scale(1.02);

  border-color:
    rgba(92,240,196,.72);

  box-shadow:
    0 18px 45px rgba(0,0,0,.35),
    0 0 32px rgba(25,216,189,.18);

}


.smv-final-ai-icon{

  width:36px;
  height:36px;

  display:grid;
  place-items:center;

  border-radius:50%;

  color:#032a24;

  background:#56e8bf;

  font-size:17px;

  box-shadow:
    0 0 18px rgba(86,232,191,.25);

}


/* =========================================================
   AI PANEL
   ========================================================= */

.smv-final-ai-panel{

  position:fixed;

  right:20px;

  bottom:145px;

  width:
    min(
      390px,
      calc(100vw - 30px)
    );

  height:
    min(
      570px,
      calc(100vh - 170px)
    );

  z-index:9999;

  display:none;

  flex-direction:column;

  overflow:hidden;

  border:
    1px solid
    rgba(92,240,196,.20);

  border-radius:20px;

  background:
    linear-gradient(
      145deg,
      rgba(7,43,40,.98),
      rgba(2,24,22,.99)
    );

  box-shadow:
    0 25px 70px rgba(0,0,0,.48),
    0 0 45px rgba(20,184,166,.12);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

}


.smv-final-ai-panel.open{

  display:flex;

}


/* =========================================================
   HEADER
   ========================================================= */

.smv-final-ai-header{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:15px;

  padding:17px 18px;

  border-bottom:
    1px solid
    rgba(255,255,255,.08);

  background:
    rgba(255,255,255,.025);

}


.smv-final-ai-header strong{

  display:block;

  color:#ffffff;

  font-size:15px;

  font-weight:900;

}


.smv-final-ai-header small{

  display:block;

  margin-top:4px;

  color:#79aaa3;

  font-size:10px;

  letter-spacing:.05em;

}


.smv-final-ai-close{

  width:32px;
  height:32px;

  flex:0 0 32px;

  border:0;

  border-radius:50%;

  color:#cce5e1;

  background:
    rgba(255,255,255,.07);

  font-size:20px;

  line-height:1;

  cursor:pointer;

}


.smv-final-ai-close:hover{

  background:
    rgba(255,255,255,.13);

}


/* =========================================================
   CONVERSATION
   ========================================================= */

.smv-final-ai-conversation{

  flex:1;

  overflow-y:auto;

  padding:18px;

  scrollbar-width:thin;

  scrollbar-color:
    rgba(25,216,189,.25)
    transparent;

}


.smv-final-ai-message{

  display:flex;

  gap:8px;

  margin-bottom:14px;

}


.smv-final-ai-message.ai{

  align-items:flex-start;

}


.smv-final-ai-message.user{

  justify-content:flex-end;

}


.smv-final-ai-avatar{

  width:28px;
  height:28px;

  flex:0 0 28px;

  display:grid;
  place-items:center;

  border-radius:50%;

  color:#042a24;

  background:#56e8bf;

  font-size:12px;

  font-weight:900;

}


.smv-final-ai-bubble{

  max-width:82%;

  padding:12px 13px;

  border:
    1px solid
    rgba(92,240,196,.13);

  border-radius:
    4px
    15px
    15px
    15px;

  color:#b8d2ce;

  background:
    rgba(255,255,255,.045);

  font-size:11px;

  line-height:1.65;

}


.smv-final-ai-bubble strong{

  display:block;

  margin-bottom:5px;

  color:#ecfffb;

  font-size:12px;

}


.smv-final-ai-bubble p{

  margin:
    6px 0
    0;

}


.smv-final-ai-bubble ul{

  margin:
    7px 0
    0;

  padding-left:18px;

}


.smv-final-ai-bubble li{

  margin-bottom:3px;

}


.smv-final-ai-user-bubble{

  max-width:78%;

  padding:10px 13px;

  border-radius:
    15px
    4px
    15px
    15px;

  color:#032b25;

  background:
    linear-gradient(
      135deg,
      #56e8bf,
      #20cfae
    );

  font-size:11px;

  font-weight:800;

  line-height:1.5;

}


/* =========================================================
   QUICK SUGGESTIONS
   ========================================================= */

.smv-final-ai-suggestions{

  display:flex;

  flex-wrap:wrap;

  gap:7px;

  margin:
    5px
    0
    14px
    36px;

}


.smv-final-ai-suggestions button{

  padding:7px 10px;

  border:
    1px solid
    rgba(255,255,255,.10);

  border-radius:999px;

  color:#cfe7e3;

  background:
    rgba(255,255,255,.045);

  font-family:inherit;

  font-size:10px;

  font-weight:700;

  cursor:pointer;

  transition:.2s ease;

}


.smv-final-ai-suggestions button:hover{

  border-color:
    rgba(25,216,189,.40);

  color:#ffffff;

  background:
    rgba(25,216,189,.08);

}


/* =========================================================
   INPUT
   ========================================================= */

.smv-final-ai-form{

  display:flex;

  gap:8px;

  padding:12px;

  border-top:
    1px solid
    rgba(255,255,255,.08);

  background:
    rgba(0,0,0,.10);

}


.smv-final-ai-form input{

  min-width:0;

  flex:1;

  height:44px;

  padding:
    0
    13px;

  border:
    1px solid
    rgba(255,255,255,.10);

  border-radius:12px;

  outline:none;

  color:#ffffff;

  background:
    rgba(255,255,255,.055);

  font-family:inherit;

  font-size:12px;

}


.smv-final-ai-form input::placeholder{

  color:
    rgba(255,255,255,.40);

}


.smv-final-ai-form input:focus{

  border-color:
    rgba(25,216,189,.55);

  box-shadow:
    0 0 0 3px
    rgba(25,216,189,.07);

}


.smv-final-ai-form button{

  width:44px;
  height:44px;

  flex:0 0 44px;

  border:0;

  border-radius:12px;

  color:#032b25;

  background:#56e8bf;

  font-size:19px;

  font-weight:900;

  cursor:pointer;

}


.smv-final-ai-form button:hover{

  background:#6af0cb;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:620px){

  .smv-final-ai-button{

    right:12px;

    bottom:72px;

    min-height:48px;

    padding:
      5px
      12px
      5px
      7px;

  }


  .smv-final-ai-icon{

    width:38px;
    height:38px;

  }


  .smv-final-ai-panel{

    right:12px;

    bottom:130px;

    width:
      calc(100vw - 24px);

    height:
      min(
        570px,
        calc(100vh - 150px)
      );

    border-radius:18px;

  }

}

/* =========================================================
   SELECT MY VENUE — FLOATING WHATSAPP ICON
   ========================================================= */

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.floating-whatsapp-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  color: currentColor;
}

.floating-whatsapp:hover .floating-whatsapp-icon {
  transform: scale(1.08);
}

@media (max-width: 600px) {

  .floating-whatsapp-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

}

/* =========================================================
   SELECT MY VENUE — FINAL LOGO SIZE FIX
   Fit logo inside existing header
   Keep navigation centered
   ========================================================= */

.site-header .header-inner {
  align-items: center !important;
}

/* Keep the brand centered */
.site-header .brand {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  padding: 0 !important;
}

/* Logo fits inside the header without overflowing */
.site-header .main-logo {
  height: 78px !important;
  width: auto !important;
  max-height: 78px !important;
  max-width: 500px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Keep navigation vertically centered */
.site-header nav {
  align-self: center !important;
}

/* =========================================================
   SELECT MY VENUE — FINAL LOGO SIZE / BACKGROUND FIX
   Header + Footer
   ========================================================= */

/* HEADER — keep all existing header content centered */
.site-header {
  display: flex;
  align-items: center;
}

/* Header logo */
.site-header .brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header .main-logo {
  display: block;
  width: 430px;          /* increase horizontal size */
  max-width: none;
  height: 72px;          /* fills header vertically */
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

/* FOOTER — same background as existing footer */
.site-footer .footer-final-logo {
  display: flex;
  align-items: center;
  background: transparent;
}

.site-footer .footer-final-logo img {
  display: block;
  width: 380px;          /* horizontal footer logo */
  max-width: none;
  height: 70px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .site-header .main-logo {
    width: 320px;
    height: 64px;
    max-height: 64px;
  }

  .site-footer .footer-final-logo img {
    width: 300px;
    height: 60px;
    max-height: 60px;
  }

}


@media (max-width: 600px) {

  .site-header .main-logo {
    width: 260px;
    height: 58px;
    max-height: 58px;
  }

  .site-footer .footer-final-logo img {
    width: 250px;
    height: 55px;
    max-height: 55px;
  }

}

/* =========================================================
   SELECT MY VENUE — FINAL LOGO FIX
   HORIZONTAL SIZE + HEADER/FOOTER BACKGROUND BLEND
   ========================================================= */

/* ---------------- HEADER ---------------- */

.site-header .header-inner {
  display: flex;
  align-items: center;
}

/* Keep the header itself exactly as it is */
.site-header {
  background: rgba(1, 20, 17, .88);
}

/* Give logo more horizontal room */
.site-header .brand {
  width: 420px !important;
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

/* Larger horizontal logo */
.site-header .brand img,
.site-header .main-logo {
  width: 410px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 76px !important;
  object-fit: contain !important;
  object-position: left center !important;

  /*
     Your current PNG still contains an opaque black
     background. SCREEN makes that black background
     visually disappear and lets the header show through.
  */
  mix-blend-mode: screen !important;

  filter: drop-shadow(0 5px 12px rgba(0,0,0,.18));
}


/* ---------------- FOOTER ---------------- */

/*
   Keep footer background consistent with the existing
   Select My Venue dark theme.
*/
footer,
.site-footer {
  background: #011411 !important;
}

/* Footer logo container */
.site-footer .footer-final-logo,
footer .footer-final-logo {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

/* Footer logo */
.site-footer .footer-final-logo img,
footer .footer-final-logo img {
  width: 380px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 72px !important;
  object-fit: contain !important;
  object-position: left center !important;

  /* Remove visual black rectangle */
  mix-blend-mode: screen !important;

  filter: drop-shadow(0 5px 12px rgba(0,0,0,.18));
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .site-header .brand {
    width: 350px !important;
  }

  .site-header .brand img,
  .site-header .main-logo {
    width: 340px !important;
    max-height: 70px !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {

  .site-header .brand {
    width: 280px !important;
    height: 68px !important;
  }

  .site-header .brand img,
  .site-header .main-logo {
    width: 270px !important;
    max-height: 64px !important;
  }

  .site-footer .footer-final-logo img,
  footer .footer-final-logo img {
    width: 300px !important;
    max-width: 100% !important;
  }

}


@media (max-width: 600px) {

  .site-header .brand {
    width: 240px !important;
  }

  .site-header .brand img,
  .site-header .main-logo {
    width: 230px !important;
    max-height: 60px !important;
  }

  .site-footer .footer-final-logo img,
  footer .footer-final-logo img {
    width: 260px !important;
    max-width: 100% !important;
  }

}

/* Keep the full desktop navigation inside medium-width screens. */
@media (min-width: 1121px) and (max-width: 1499px) {
  .site-header .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header .brand {
    width: clamp(270px, 22vw, 330px) !important;
  }

  .site-header .brand img,
  .site-header .main-logo {
    width: 100% !important;
    max-height: 68px !important;
  }

  #mainNav {
    gap: clamp(10px, 1.15vw, 18px);
  }

  #mainNav a {
    font-size: clamp(10px, .86vw, 12px);
  }
}
