/* ============================================
   Attendily – Custom Styles (Bootstrap 5 Override)
   Brand Green: #5BA71B  |  Accent: #4A9216
   ============================================ */

:root {
  --at-green: #5BA71B;
  --at-green-dark: #4A9216;
  --at-green-light: #e8f5d9;
  --at-green-glow: rgba(91, 167, 27, 0.15);
  --at-dark: #1a1f2e;
  --at-body: #f7f8fa;
  --at-card: #ffffff89;
  --at-text: #333842;
  --at-text-muted: #6c757d;
  --at-border: #e9ecef;
  --at-radius: 12px;
  --at-shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --at-shadow: 0 4px 16px rgba(0,0,0,.07);
  --at-shadow-lg: 0 8px 30px rgba(0,0,0,.1);
  --at-transition: .25s ease;
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--at-text);
  background: var(--at-body);
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--at-dark);
}

a { color: var(--at-green); text-decoration: none; transition: color var(--at-transition); }
a:hover { color: var(--at-green-dark); }

img { max-width: 100%; height: auto; }

/* ---------- Utility ---------- */
.bg-brand { background-color: var(--at-green) !important; }
.text-brand { color: var(--at-green) !important; }
.border-brand { border-color: var(--at-green) !important; }
.bg-brand-light { background-color: var(--at-green-light) !important; }
.section-gap { padding: 80px 0; }
.section-gap-sm { padding: 50px 0; }

.badge-brand {
  background: var(--at-green-light);
  color: var(--at-green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .65rem;
  padding: 4px 14px;
  border-radius: 20px;
}

.badge-brand-no-bg{
  color: var(--at-green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .65rem;
  border-radius: 20px;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--at-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--at-transition);
  box-shadow: 0 2px 8px var(--at-green-glow);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--at-green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--at-green-glow);
}
.btn-brand-outline {
  background: transparent;
  color: var(--at-green);
  border: 1px solid var(--at-green);
  border-radius: 8px;
  padding: 9px 24px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--at-transition);
}
.btn-brand-outline:hover {
  background: var(--at-green);
  color: #fff;
}
.btn-brand-sm { padding: 7px 18px; font-size: .85rem; }

/* ---------- Navbar ---------- */
.at-navbar {
  background: #fff;
  border-bottom: 1px solid var(--at-border);
  padding: 12px 0;
  box-shadow: var(--at-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.at-navbar .navbar-brand img { height: 36px; }
.at-navbar .nav-link {
  color: var(--at-text);
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: .95rem;
  transition: color var(--at-transition);
}
.at-navbar .nav-link:hover,
.at-navbar .nav-link.active { color: var(--at-green); }
.at-navbar .nav-link.active { font-weight: 600; }

/* ---------- Hero ---------- */
.at-hero {
  /* background: linear-gradient(145deg, #f0fae4 0%, #fff 50%, #e8f5d9 100%); */
  background: url('../images/at-hero-bg.png') no-repeat center/cover, linear-gradient(145deg, #f0fae4 0%, #fff 50%, #e8f5d9 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.at-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--at-green-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.at-hero h1 { font-size: 4.2rem; line-height: 1.15; }
.at-hero h1 span { color: var(--at-green); }
.at-hero p.lead { font-size: 1.15rem; color: var(--at-text-muted); max-width: 520px; }

/* custom code */
.feature-img{
  width: 100%;
}

.organiser-section{
  background: url('../images/organiser-section-bg.png') no-repeat center/cover;
}

.profile-card{
    background: #f7f7f7;
    border: 1px solid #ddd;
    height: 220px;
    border-radius: 18px;
    padding: 22px 24px;
    gap: 16px;
    transition: all var(--at-transition);
}

.profile-avatar img{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name{
    font-size: 18px;
    font-weight: 500;
    color: #1c1c1c;
    line-height: 1.1;
}

.profile-role{
    color: #7d7d7d;
    font-size: .75rem;
    line-height: 1rem;
    margin-top: 10px;
}

.profile-stats{
    color: #555;
    font-size: .875rem;
    line-height: 1.25rem;
    margin-top: 10px;
}

.profile-stats strong{
    font-weight: 700;
    color: #222;
}

.profile-link{
    color: #7FAD56;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: .875rem;
    line-height: 1.25rem;
}

.profile-link:hover{
    color: #0f6f3b;
    font-size: .875rem;
    line-height: 1.25rem;
}

.arrow{
    margin-left: 4px;
    transition: transform .2s ease;
}

.profile-link:hover .arrow{
    transform: translateX(3px);
}

.profile-card:hover{
   transform: translateY(-4px);
   box-shadow: var(--at-shadow);
   border-color: var(--at-green);
}

/* Search box in hero */
.at-search-box {
  background: #fff;
  border-radius: var(--at-radius);
  box-shadow: var(--at-shadow);
  padding: 8px;
  display: flex;
  gap: 8px;
  max-width: 600px;
}
.at-search-box input,
.at-search-box select {
  border: 1px solid var(--at-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--at-transition);
}
.at-search-box input:focus,
.at-search-box select:focus { border-color: var(--at-green); }

/* ---------- Section Header ---------- */
.at-section-header { margin-bottom: 40px; }
.at-section-header h2 { font-size: 3rem; margin-bottom: 8px; }
.at-section-header p { color: var(--at-text-muted); font-size: 1.05rem; }
.at-section-header .at-line {
  width: 50px;
  height: 4px;
  background: var(--at-green);
  border-radius: 4px;
  margin-top: 12px;
}

/* ---------- Event Card ---------- */
.at-event-card {
  background: var(--at-card);
  border-radius: var(--at-radius);
  overflow: hidden;
  border: 1px solid var(--at-border);
  box-shadow: var(--at-shadow-sm);
  transition: all var(--at-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.at-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--at-shadow);
  border-color: var(--at-green);
}
.at-event-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.at-event-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.at-event-card:hover .card-img-wrap img { transform: scale(1.05); }

.at-event-card .card-img-wrap .badge-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffffd5;
  color: var(--at-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: var(--at-shadow-sm);
  line-height: 1.3;
  text-align: center;
}
.at-event-card .card-img-wrap .badge-date .day { font-size: 1.2rem; display: block; }
.at-event-card .card-img-wrap .badge-category {
  position: absolute;
  top: 12px;
  right: 12px;
}

.at-event-card .card-body-inner { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.at-event-card .card-body-inner h5 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.at-event-card .card-body-inner h5 a { color: var(--at-dark); }
.at-event-card .card-body-inner h5 a:hover { color: var(--at-green); }

.at-event-card .event-meta {
  font-size: .85rem;
  color: var(--at-text-muted);
  margin-bottom: 12px;
}
.at-event-card .event-meta i { color: var(--at-green); margin-right: 4px; }

.at-event-card .card-footer-inner {
  padding: 14px 20px;
  border-top: 1px solid var(--at-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.at-event-card .card-footer-inner .price { font-weight: 700; color: var(--at-green); }
.at-event-card .card-footer-inner .organiser {
  font-size: .8rem;
  color: var(--at-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.at-event-card .card-footer-inner .organiser img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- Feature Card ---------- */
.at-feature-card {
  background: #279B65;
  border-radius: var(--at-radius);
  padding: 32px 28px;
  border: 1px solid #ffffff1d;
  text-align: center;
  transition: all var(--at-transition);
  height: 100%;
}
.at-feature-card:hover {
  box-shadow: var(--at-shadow);
  border-color: var(--at-green);
}
.at-feature-card .icon-wrap {
  width: 50px;
  height: 50px;
  background: #7ABF17;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #000;
}
.at-feature-card h5 { font-size: 1.05rem; margin-bottom: 10px; }
.at-feature-card p { font-size: .9rem; color: var(--at-text-muted); margin-bottom: 0; }

/* ---------- Stats Bar ---------- */
.at-stats-bar {
  /* background: var(--at-dark); */
  background: url('../images/at-stats-bar.png') no-repeat center/cover, var(--at-dark);
  border-radius: var(--at-radius);
  padding: 40px;
  color: #fff;
}
.at-stats-bar .stat-item h3 { font-size: 2.2rem; color: #ffff; margin-bottom: 4px; }
.at-stats-bar .stat-item p { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 0; }

/* ---------- CTA Section ---------- */
.at-cta {
  /* background: linear-gradient(135deg, var(--at-green) 0%, #3d8c0e 100%); */
  background: url('../images/at-cta-1.png') no-repeat center/cover, var(--at-green);
  border-radius: var(--at-radius);
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  /* height: 500px; */
  color: #fff;
  text-align: center;
}
.at-cta h2 { color: #fff; font-size: 2rem; }
.at-cta p { color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 24px; }
.at-cta .btn { background: #fff; color: #000; font-weight: 400; border: none; }
.at-cta .btn:hover { background: var(--at-green-light); color: var(--at-green-dark); }

/* ---------- Categories Strip ---------- */
.at-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--at-card);
  border: 1px solid var(--at-border);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--at-text);
  transition: all var(--at-transition);
  white-space: nowrap;
}
.at-category-chip:hover {
  border-color: var(--at-green);
  color: var(--at-green);
  background: var(--at-green-light);
  transform: translateY(-2px);
}
.at-category-chip i { font-size: 1.1rem; }

/* ---------- Footer ---------- */
.at-footer {
  background: var(--at-dark);
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;
}
.at-footer h6 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.at-footer ul { list-style: none; padding: 0; }
.at-footer ul li { margin-bottom: 10px; }
.at-footer ul li a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--at-transition); }
.at-footer ul li a:hover { color: var(--at-green); }
.at-footer .footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.at-footer .footer-brand p { font-size: .9rem; max-width: 280px; }
.at-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: .85rem;
}
.at-footer .social-links a {
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  margin-left: 16px;
  transition: color var(--at-transition);
}
.at-footer .social-links a:hover { color: var(--at-green); }

/* ---------- Breadcrumb ---------- */
.at-breadcrumb {
  background: var(--at-green-light);
  padding: 16px 0;
}
.at-breadcrumb .breadcrumb { margin-bottom: 0; font-size: .9rem; }
.at-breadcrumb .breadcrumb-item a { color: var(--at-green); }
.at-breadcrumb .breadcrumb-item.active { color: var(--at-text-muted); }

/* ---------- Filter Sidebar ---------- */
.at-filter-card {
  background: var(--at-card);
  border: 1px solid var(--at-border);
  border-radius: var(--at-radius);
  padding: 24px;
}
.at-filter-card h6 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
  color: var(--at-dark);
}
.at-filter-card .form-check { margin-bottom: 8px; }
.at-filter-card .form-check-input:checked {
  background-color: var(--at-green);
  border-color: var(--at-green);
}

/* ---------- Single Event Page ---------- */
.at-event-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.at-event-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 100%);
}
.at-event-hero .hero-content { position: relative; z-index: 2; padding: 40px 0; color: #fff; width: 100%; }
.at-event-hero .hero-content h1 { color: #fff; font-size: 2.5rem; }

.at-detail-card {
  background: var(--at-card);
  border: 1px solid var(--at-border);
  border-radius: var(--at-radius);
  padding: 28px;
  box-shadow: var(--at-shadow-sm);
}
.at-detail-card h5 { font-size: 1.1rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--at-border); }

.at-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.at-info-row .icon { width: 40px; height: 40px; background: var(--at-green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--at-green); flex-shrink: 0; }
.at-info-row .details strong { display: block; font-size: .9rem; color: var(--at-dark); }
.at-info-row .details span { font-size: .85rem; color: var(--at-text-muted); }

/* Ticket box */
.at-ticket-card {
  background: var(--at-card);
  border: 2px solid var(--at-green);
  border-radius: var(--at-radius);
  overflow: hidden;
}
.at-ticket-card .ticket-header {
  background: var(--at-green);
  color: #fff;
  padding: 16px 24px;
  font-weight: 700;
}
.at-ticket-card .ticket-body { padding: 24px; }
.at-ticket-card .ticket-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--at-border);
}
.at-ticket-card .ticket-option:last-child { border-bottom: none; }
.at-ticket-card .ticket-option .price { font-weight: 700; font-size: 1.1rem; color: var(--at-dark); }
.at-ticket-card .ticket-option select {
  width: 70px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--at-border);
}

/* Speaker Card */
.at-speaker-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--at-card);
  border: 1px solid var(--at-border);
  border-radius: var(--at-radius);
  transition: all var(--at-transition);
}
.at-speaker-card:hover { box-shadow: var(--at-shadow); border-color: var(--at-green); }
.at-speaker-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--at-green-light);
  margin-bottom: 14px;
}
.at-speaker-card h6 { margin-bottom: 4px; font-size: .95rem; }
.at-speaker-card p { font-size: .8rem; color: var(--at-text-muted); margin-bottom: 0; }

/* Gallery */
.at-gallery-item {
  border-radius: var(--at-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.at-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.at-gallery-item:hover img { transform: scale(1.08); }
.at-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s ease;
}
.at-gallery-item:hover::after { background: rgba(0,0,0,.15); }

/* pricing css */
:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(150 15% 8%);
  --surface: hsl(120 20% 97%);
  --muted: hsl(150 10% 96%);
  --muted-foreground: hsl(150 8% 40%);
  --primary: hsl(152 82% 31%);
  --primary-foreground: hsl(0 0% 100%);
  --primary-soft: hsl(152 60% 94%);
  --accent: hsl(84 81% 44%);
  --accent-soft: hsl(84 70% 94%);
  --ink: hsl(150 15% 8%);
  --ink-foreground: hsl(0 0% 100%);
  --border: hsl(150 12% 90%);
  --radius: 0.875rem;
  --shadow-card: 0 1px 2px hsl(150 15% 8% / 0.04), 0 8px 24px -12px hsl(150 15% 8% / 0.08);
  --shadow-bold: 0 20px 60px -20px hsl(152 82% 31% / 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }


.brand {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--primary); color: var(--primary-foreground);
  font-weight: 800;
}
.brand-dot { color: var(--primary); }
.nav-links { display: none; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--foreground); }
.nav-actions { display: none; gap: 0.5rem; }
@media (min-width: 768px) {
  .nav-links, .nav-actions { display: flex; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 40px; padding: 0 1rem;
  font-family: inherit; font-size: 0.875rem; font-weight: 600;
  border: 1px solid transparent; border-radius: 10px;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: hsl(152 82% 27%); transform: translateY(-1px); box-shadow: var(--shadow-bold); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--muted); }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { height: 48px; padding: 0 1.5rem; font-size: 0.95rem; }

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(900px 400px at 80% 0%, hsl(152 70% 92%) 0%, transparent 60%),
    radial-gradient(700px 300px at 0% 100%, hsl(84 80% 92%) 0%, transparent 70%),
    var(--background);
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.4rem 0.8rem; border-radius: 999px;
}
.page-hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 18ch;
}
.page-hero h1 em { font-style: normal; color: var(--primary); }
.page-hero .lede {
  margin-top: 1.25rem; max-width: 60ch;
  font-size: 1.125rem; color: var(--muted-foreground);
}

/* ============ SECTIONS ============ */
section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em; font-weight: 700;
}
.section-head p { margin-top: 0.75rem; color: var(--muted-foreground); font-size: 1.0625rem; }

/* ============ PRICING ============ */
.price-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card.featured {
  background: var(--ink); color: var(--ink-foreground);
  border-color: var(--ink);
  position: relative;
  box-shadow: var(--shadow-bold);
}
.price-card.featured h3 { color: var(--ink-foreground); }
.price-card.featured .price-amount { color: var(--accent); }
.price-card.featured .price-features li { color: hsl(0 0% 100% / 0.75); }
.price-card.featured .price-features li::before { color: var(--accent); }

.price-tag {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--accent); color: var(--ink);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.125rem; font-weight: 700; }
.price-card .price-amount {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
  display: flex; align-items: baseline; gap: 0.4rem;
}
.price-card .price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--muted-foreground); }
.price-card.featured .price-amount span { color: hsl(0 0% 100% / 0.6); }
.price-card .price-desc { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); }
.price-card.featured .price-desc { color: hsl(0 0% 100% / 0.65); }

.price-features { list-style: none; margin: 1.5rem 0; flex: 1; }
.price-features li {
  position: relative; padding-left: 1.75rem; padding-top: 0.5rem; padding-bottom: 0.5rem;
  font-size: 0.9rem; color: var(--foreground);
  border-top: 1px solid var(--border);
}
.price-card.featured .price-features li { border-top-color: hsl(0 0% 100% / 0.1); }
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: "✓"; position: absolute; left: 0.25rem; top: 0.5rem;
  font-weight: 800; color: var(--primary);
}

/* ============ FAQ ============ */
.faq { background: var(--surface); }
.faq-grid { display: grid; gap: 1rem; max-width: 800px; margin: 0 auto; }
details {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.15s;
}
details[open] { border-color: var(--primary); }
summary {
  cursor: pointer; font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; font-size: 1.5rem; color: var(--primary); font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary::after { content: "−"; }
details p { margin-top: 0.75rem; color: var(--muted-foreground); font-size: 0.95rem; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-info h3 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem;
}
.contact-info p { color: var(--muted-foreground); margin-bottom: 2rem; }

.contact-item {
  display: flex; gap: 1rem; padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: 1px solid var(--border); }
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  font-size: 1.25rem;
}
.contact-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.9rem; color: var(--muted-foreground); margin: 0; }

.contact-form {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-foreground);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit; font-size: 0.95rem;
  background: var(--background); color: var(--foreground);
  border: 1px solid var(--border); border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(152 82% 31% / 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--primary); color: var(--primary-foreground);
  text-align: center;
}
.cta-band h2 { color: var(--primary-foreground); font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-band p { margin-top: 0.75rem; color: hsl(0 0% 100% / 0.85); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary {
  margin-top: 1.75rem;
  background: var(--ink); color: var(--ink-foreground);
}
.cta-band .btn-primary:hover { background: hsl(0 0% 0%); }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: var(--ink-foreground); padding: 3rem 0 1.5rem; }
.site-footer .row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
}
.site-footer p { color: hsl(0 0% 100% / 0.55); font-size: 0.85rem; }
.site-footer a { color: hsl(0 0% 100% / 0.7); font-size: 0.85rem; }
.site-footer a:hover { color: var(--accent); }
.foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* end of pricing */

/* ---------- Organiser Page ---------- */
.at-organiser-header {
  background: linear-gradient(135deg, var(--at-green-light) 0%, #fff 100%);
  padding: 60px 0;
}
.at-organiser-header .avatar {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--at-shadow);
}
.at-organiser-header .org-meta { font-size: .9rem; color: var(--at-text-muted); }
.at-organiser-header .org-meta i { color: var(--at-green); margin-right: 4px; }

.at-tab-nav .nav-link {
  color: var(--at-text-muted);
  font-weight: 500;
  border: none;
  padding: 12px 24px;
  border-bottom: 2px solid transparent;
  transition: all var(--at-transition);
}
.at-tab-nav .nav-link.active,
.at-tab-nav .nav-link:hover {
  color: var(--at-green);
  border-bottom-color: var(--at-green);
  background: transparent;
}

/* ---------- Pagination ---------- */
.at-pagination .page-link {
  border-radius: 8px;
  margin: 0 3px;
  border: 1px solid var(--at-border);
  color: var(--at-text);
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 14px;
}
.at-pagination .page-item.active .page-link {
  background: var(--at-green);
  border-color: var(--at-green);
  color: #fff;
}
.at-pagination .page-link:hover { border-color: var(--at-green); color: var(--at-green); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .at-hero h1 { font-size: 2.4rem; }
  .at-hero { padding: 60px 0 50px; }
  .at-search-box { flex-wrap: wrap; }
  .at-search-box input, .at-search-box select { flex: 1 1 100%; }
  .section-gap { padding: 50px 0; }
}
@media (max-width: 767.98px) {
  .at-hero h1 { font-size: 1.9rem; }
  .at-event-hero .hero-content h1 { font-size: 1.8rem; }
  .at-stats-bar { padding: 24px; }
  .at-stats-bar .stat-item h3 { font-size: 1.6rem; }
  .at-cta { padding: 40px 20px; }
  .at-cta h2 { font-size: 1.5rem; }
}
