/* ================================================================
   GURUKUL Bangladesh - Theme Stylesheet
   Learn English with Pleasure
   ================================================================ */

/* ============ DEFAULT THEME VARIABLES : GURUKUL Brand ============ */
:root {
  --red: #D2222D;          /* Logo word red */
  --red-dark: #A8121C;
  --maroon: #5C0E14;       /* Deep footer maroon */
  --ink: #151515;          /* Graduation-cap black */
  --navy: #122A44;         /* Poster blue accent */
  --gold: #F6B40E;         /* Announcement gold */
  --green: #2E9E44;
  --blue: #1E63D0;
  --orange: #F08A00;
  --paper: #FBF7F2;
  --line: #EBDFD3;
  --shadow: 0 12px 32px rgba(21, 21, 21, 0.10);

  /* Fonts */
  --font-primary: 'Hind Siliguri', 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', 'Hind Siliguri', sans-serif;
  --font-script: 'Caveat', cursive;
}

/* ============ BASE RESET & TYPOGRAPHY ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

.en {
  font-family: var(--font-heading);
}

.script {
  font-family: var(--font-script);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: .25s ease;
}

ul {
  list-style: none;
}

section {
  padding: 84px 5%;
  scroll-margin-top: 86px;
  position: relative;
}

.wrap {
  max-width: 1180px;
  margin: auto;
}

/* WordPress Standard Classes */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ============ REUSABLE VISUAL UTILITIES ============ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  background: #fff;
  border: 1.5px dashed var(--red);
  padding: .45rem 1.1rem;
  border-radius: 999px;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
}

h2.title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 1rem 0 .6rem;
}

h2.title b {
  color: var(--red);
}

.lead {
  color: #5c5c5c;
  max-width: 640px;
}

.center {
  text-align: center;
}

.center .lead {
  margin: auto;
}

.ribbon {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: .06em;
  padding: .55rem 1.6rem;
  transform: rotate(-2deg);
  clip-path: polygon(0% 18%, 2% 0%, 98% 4%, 100% 22%, 99% 82%, 97% 100%, 2% 96%, 1% 78%);
  box-shadow: 0 8px 20px rgba(210, 34, 45, .35);
}

.dots::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(rgba(210, 34, 45, .35) 1.6px, transparent 1.7px);
  background-size: 15px 15px;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: .25s ease;
  font-family: var(--font-primary);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(210, 34, 45, .35);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.btn-gold:hover {
  transform: translateY(-3px);
}

.ic {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--ink);
  color: #f4f4f4;
  font-size: .85rem;
  padding: .5rem 5%;
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.topbar .ic {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.topbar a:hover {
  color: var(--gold);
}

/* ============ NAVBAR + BRAND LOGO ============ */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: .7rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
}

.logo .cap {
  width: 42px;
  margin: 0 0 -9px 3px;
  position: relative;
  z-index: 2;
}

.logo .word {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--red);
  letter-spacing: .5px;
}

.logo .word i {
  font-style: normal;
  color: var(--ink);
}

.logo .tag {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 3px;
}

.menu,
.primary-menu-container ul {
  display: flex;
  gap: 1.6rem;
  font-weight: 600;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a,
.primary-menu-container ul a {
  position: relative;
  padding: .3rem 0;
  color: var(--ink);
}

.menu a::after,
.primary-menu-container ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: .25s;
}

.menu a:hover::after,
.primary-menu-container ul a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============ HERO SECTION ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding-top: 64px;
  background:
    radial-gradient(circle at 88% 12%, rgba(210, 34, 45, .08), transparent 42%),
    radial-gradient(circle at 6% 88%, rgba(246, 180, 14, .14), transparent 40%),
    var(--paper);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 1.1rem 0 .8rem;
}

.hero h1 b {
  color: var(--red);
  position: relative;
}

.hero h1 b::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 10px;
  background: rgba(246, 180, 14, .45);
  z-index: -1;
}

.tagline-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1.2rem;
  box-shadow: var(--shadow);
}

.tagline-chip::before,
.tagline-chip::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

.hero .cta-row {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 2rem;
}

.stats {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.stat .num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--red);
}

.stat small {
  display: block;
  color: #666;
  font-size: .85rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 440px;
}

.puzzle-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 2.4rem 2rem 2rem;
  margin: 2.4rem auto 0;
  max-width: 400px;
  text-align: center;
  background-image:
    linear-gradient(rgba(21, 21, 21, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, .05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.puzzle-tag {
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .24em;
  color: var(--ink);
}

.puzzle-tag em {
  font-style: normal;
  background: var(--red);
  color: #fff;
  padding: .15rem .5rem;
  border-radius: 4px;
  margin: 0 .3rem;
}

.puzzle-word {
  font-weight: 900;
  font-size: 3.4rem;
  color: var(--red);
  letter-spacing: .04em;
  margin: .4rem 0 .8rem;
  text-shadow: 3px 3px 0 rgba(21, 21, 21, .08);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.chip-row li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  background: #FDEEEE;
  color: var(--red-dark);
  border: 1px solid #F3C2C2;
  border-radius: 999px;
  padding: .3rem .8rem;
}

.chip-row .ic {
  width: 13px;
  height: 13px;
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: .6rem 1rem;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  gap: .5rem;
  align-items: center;
  animation: bob 4s ease-in-out infinite;
}

.fc1 {
  top: 0;
  left: 2%;
}

.fc2 {
  top: 14%;
  right: 0;
  animation-delay: 1s;
}

.fc3 {
  bottom: 4%;
  left: 6%;
  background: var(--red);
  color: #fff;
  border: none;
  animation-delay: 2s;
}

.mega {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .2));
}

.m1 {
  top: 38%;
  left: -4%;
  transform: rotate(-18deg);
}

.m2 {
  bottom: 16%;
  right: -2%;
  transform: rotate(14deg) scaleX(-1);
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============ RUNNING MARQUEE ============ */
.marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: .8rem 0;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 10px 26px rgba(210, 34, 45, .3);
}

.mq-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: mq 26s linear infinite;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .85rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.mq-track span::after {
  content: "★";
  margin-left: 2.6rem;
  color: var(--gold);
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

/* ============ COURSES SECTION ============ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.course {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: .3s ease;
}

.course:hover {
  transform: translateY(-8px);
}

.course .head {
  padding: 1.6rem 1.6rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 2px dashed var(--line);
}

.course .bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.course .bubble .ic {
  width: 26px;
  height: 26px;
}

.course h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.course .head p {
  font-size: .88rem;
  color: #777;
}

.course .body {
  padding: 1.4rem 1.6rem;
  flex: 1;
}

.course .body > p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
}

.learn li {
  display: flex;
  gap: .55rem;
  font-size: .92rem;
  margin-bottom: .5rem;
  align-items: flex-start;
}

.learn .ic {
  width: 16px;
  height: 16px;
  color: var(--green);
  margin-top: 4px;
}

.sched {
  margin-top: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: .55rem;
}

.sched div {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
}

.sched .ic {
  color: var(--red);
}

.course .foot {
  padding: 0 1.6rem 1.6rem;
}

.course .foot .btn {
  width: 100%;
  justify-content: center;
}

.c-green .bubble {
  background: var(--green);
}
.c-blue .bubble {
  background: var(--blue);
}
.c-orange .bubble {
  background: var(--orange);
}

.c-green .foot .btn {
  background: var(--green);
  color: #fff;
}
.c-blue .foot .btn {
  background: var(--blue);
  color: #fff;
}
.c-orange .foot .btn {
  background: var(--orange);
  color: #fff;
}

.course .foot .btn:hover {
  filter: brightness(.9);
  transform: translateY(-2px);
}

/* ============ ROUTINE (BLACK POSTER STYLE) ============ */
.routine {
  background: #0D0D0F;
  color: #fff;
}

.routine .kicker {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.routine .kicker::before {
  background: var(--gold);
}

.routine h2.title b {
  color: var(--gold);
}

.routine .lead {
  color: #bdbdbd;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.slot {
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  position: relative;
  background: rgba(255, 255, 255, .02);
}

.slot .ribbon {
  position: absolute;
  top: -18px;
  left: 24px;
  font-size: .85rem;
  padding: .4rem 1.2rem;
}

.slot ul {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.1rem;
}

.slot li {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(246, 180, 14, .25);
  padding-bottom: 1.1rem;
}

.slot li:last-child {
  border: none;
  padding-bottom: 0;
}

.slot .ico {
  width: 46px;
  height: 46px;
  flex: none;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--red);
}

.slot .ico .ic {
  width: 24px;
  height: 24px;
}

.slot b {
  color: var(--gold);
  font-size: 1.05rem;
}

.slot span {
  color: #e8e8e8;
  font-size: .98rem;
}

.slot .mega2 {
  position: absolute;
  right: 14px;
  top: -14px;
  font-size: 1.6rem;
  transform: rotate(12deg);
}

/* ============ WHY GURUKUL / FEATURES ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}

.tile:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

.tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: .3s ease;
}

.tile:hover::after {
  transform: scaleX(1);
}

.tile .ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #FDEEEE;
  color: var(--red);
  display: grid;
  place-items: center;
}

.tile .ico .ic {
  width: 26px;
  height: 26px;
}

.tile h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.tile p {
  font-size: .88rem;
  color: #666;
}

/* ============ IELTS MODULES ============ */
.modules {
  background: #fff;
}

.mod-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.quote-badge {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 1.2rem;
  transform: rotate(-6deg);
  box-shadow: 0 16px 34px rgba(210, 34, 45, .4);
  border: 6px double #fff;
  outline: 2px dashed var(--red);
  margin-bottom: 1.6rem;
}

.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.mod {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--paper);
  transition: .3s ease;
}

.mod:hover {
  background: #FDEEEE;
  border-color: var(--red);
}

.mod .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
}

.mod .ico .ic {
  width: 24px;
  height: 24px;
}

.mod h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--red);
  margin-bottom: .35rem;
}

.mod p {
  font-size: .88rem;
  color: #666;
}

/* ============ HSC JOURNEY ============ */
.journey {
  background: linear-gradient(160deg, var(--navy), #0B1B2E);
  color: #fff;
}

.journey .kicker {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.journey .kicker::before {
  background: var(--gold);
}

.journey h2.title b {
  color: var(--gold);
}

.journey .lead {
  color: #cfd8e3;
}

.j-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.j-list li {
  display: flex;
  gap: .8rem;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: .9rem;
  font-weight: 600;
}

.j-list .ic {
  color: var(--gold);
}

.signpost {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.signpost::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  background: #8a5a2b;
  border-radius: 4px;
  z-index: 0;
}

.arrow {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  padding: .85rem 2.6rem;
  min-width: 230px;
  text-align: center;
}

.a-right {
  background: var(--green);
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%, 4% 50%);
  transform: translateX(28px);
}

.a-left {
  background: var(--blue);
  clip-path: polygon(14% 0, 100% 0, 96% 50%, 100% 100%, 14% 100%, 0 50%);
  transform: translateX(-28px);
}

.a-right2 {
  background: var(--orange);
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%, 4% 50%);
  transform: translateX(28px);
}

.j-cta {
  margin-top: 2.6rem;
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold);
}

/* ============ STUDENT REVIEWS ============ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.rev {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}

.rev::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 20px;
  font-size: 4.5rem;
  color: #F3C2C2;
  font-family: Georgia, serif;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: .7rem;
}

.rev p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.who {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.who b {
  display: block;
  font-size: .95rem;
}

.who small {
  color: #888;
}

/* ============ CTA CALLOUT ============ */
.cta {
  background: var(--red);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta .ribbon {
  background: var(--ink);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  padding: .8rem 3rem;
  transform: rotate(-2deg);
}

.cta p {
  margin: 1.4rem 0 2rem;
  font-size: 1.05rem;
}

.cta .btn-gold {
  font-size: 1.15rem;
}

/* ============ CONTACT & ENROLL FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.4rem;
  margin-top: 3rem;
}

.info {
  display: grid;
  gap: 1.1rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.info-card .ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
}

.info-card .ico .ic {
  width: 22px;
  height: 22px;
}

.info-card b {
  display: block;
  margin-bottom: .15rem;
}

.info-card p,
.info-card a {
  font-size: .92rem;
  color: #666;
}

.info-card a:hover {
  color: var(--red);
}

form.enroll {
  background: var(--ink);
  border-radius: 22px;
  padding: 2.2rem;
  color: #fff;
  box-shadow: var(--shadow);
}

form.enroll h3 {
  font-size: 1.3rem;
  margin-bottom: .4rem;
}

form.enroll small {
  color: #bbb;
  display: block;
  margin-bottom: 1.4rem;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

form.enroll input,
form.enroll select,
form.enroll textarea {
  width: 100%;
  background: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: .85rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  margin-bottom: 1rem;
  outline: none;
  transition: .2s;
}

form.enroll input:focus,
form.enroll select:focus,
form.enroll textarea:focus {
  border-color: var(--gold);
}

form.enroll .btn {
  width: 100%;
  justify-content: center;
}

/* ============ FOOTER ============ */
footer {
  background: var(--maroon);
  color: #F4E3E3;
  padding: 64px 5% 0;
}

.f-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  max-width: 1180px;
  margin: auto;
}

footer h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

footer li {
  margin-bottom: .6rem;
  font-size: .92rem;
}

footer a:hover {
  color: var(--gold);
}

footer .logo .word {
  color: #fff;
}

footer .logo .tag {
  color: #E8C9C9;
}

footer .logo .cap path,
footer .logo .cap circle {
  fill: #fff;
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 3rem;
  padding: 1.2rem 0;
  text-align: center;
  font-size: .85rem;
  color: #D9B8B8;
}

.f-bottom b {
  color: var(--gold);
}

/* ============ FLOATING ACTION BUTTON (FAB) & TOAST ============ */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(210, 34, 45, .5);
  animation: pulse 2s infinite;
}

.fab .ic {
  width: 26px;
  height: 26px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 34, 45, .55);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(210, 34, 45, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(210, 34, 45, 0);
  }
}

#toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 120px);
  background: var(--ink);
  color: #fff;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  font-weight: 600;
  z-index: 99;
  transition: .4s ease;
}

#toast.show {
  transform: translate(-50%, 0);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ WP ADMIN BAR FIX ============ */
.admin-bar header.nav {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar header.nav {
    top: 46px;
  }
}

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 960px) {
  .hero,
  .mod-wrap,
  .j-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 400px;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu,
  .primary-menu-container ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .menu a,
  .primary-menu-container ul a {
    padding: .8rem 0;
    border-bottom: 1px dashed var(--line);
  }
  .nav.open .menu,
  .nav.open .primary-menu-container ul {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .nav .btn {
    display: none;
  }
  .topbar span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 560px) {
  .f-row,
  .mod-grid {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 64px 6%;
  }
}

