/* ══════════════════════════════════════════════════════════
   English Activator Monika Kotula – British Flag Palette CSS
   Mobile-First Ultra-Ergonomic Edition
   ══════════════════════════════════════════════════════════ */

:root {
  --navy: #00247D;
  --navy-dark: #001A5E;
  --navy-deep: #001242;
  --red: #CF142B;
  --red-hover: #B01024;
  --white: #FFFFFF;
  --bg-light: #F4F6FA;
  --text-dark: #111827;
  --text-muted: #4B5563;
  --border-light: #E5E7EB;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 90px;
}

html.smooth-scroll {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  /* Prevent iOS zoom on input focus */
  font-size: 16px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ════════════════════ NAVIGATION ════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 36, 125, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 84px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 3px solid var(--navy);
  box-shadow: 0 3px 10px rgba(0, 36, 125, 0.15);
  flex-shrink: 0;
  padding: 3px;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--red);
}

/* Desktop Dropdown for Oferta */
.nav-dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 0;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
  color: #6B7280;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 290px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 36, 125, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 36, 125, 0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 1100;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.15s;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
}

.dropdown-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.2;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--red);
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 9999px;
  transition: background-color 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(207, 20, 43, 0.25);
  min-height: 44px;
}

.btn-cta:hover {
  background-color: var(--red-hover);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: scale(0.98);
}

.hamburger-btn {
  display: none;
  background: rgba(0, 36, 125, 0.05);
  border: 1px solid rgba(0, 36, 125, 0.1);
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background-color: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 1.1rem 1.25rem 1.75rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  z-index: 999;
}

.mobile-menu-drawer.active {
  display: block;
  animation: slideDown 0.25s ease-out forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-left: 6px;
}

.mobile-menu-links-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #F8FAFC;
  border: 1px solid rgba(0, 36, 125, 0.08);
  border-radius: 14px;
  padding: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: 10px;
  border-bottom: 1px solid rgba(0, 36, 125, 0.05);
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.15s, color 0.15s;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-link:active {
  background-color: #FFFFFF;
  color: var(--red);
}

.mobile-badge-popular {
  font-size: 0.68rem;
  font-weight: 700;
  background-color: var(--red);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
}

.mobile-arrow {
  color: #9CA3AF;
  flex-shrink: 0;
}

/* Scroll Offset for Section Anchor Targets */
#general-english,
#business-english,
#travel-english,
#consultations,
#busy-english,
#formularz,
#kontakt {
  scroll-margin-top: 96px;
}

/* ════════════════════ HERO SECTION ════════════════════ */
.hero-section {
  background-color: #F8FAFC;
  color: var(--text-dark);
  padding-top: 104px;
  padding-bottom: 72px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 36, 125, 0.06);
  border: 1px solid rgba(0, 36, 125, 0.16);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy) !important;
  margin-bottom: 18px;
}

.hero-title-accent {
  color: var(--red) !important;
  font-style: italic;
}

.hero-logo-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 26px;
  padding: 14px 24px;
  background-color: var(--white);
  border: 1.5px solid rgba(0, 36, 125, 0.14);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 36, 125, 0.08);
  width: fit-content;
}

.hero-logo-img-wrap {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 4px 14px rgba(0, 36, 125, 0.15);
  flex-shrink: 0;
  padding: 3px;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
}

.hero-logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hero-logo-text span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted) !important;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--red);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(207, 20, 43, 0.35);
  transition: background-color 0.2s, transform 0.1s;
  min-height: 52px;
}

.btn-hero-red:hover {
  background-color: var(--red-hover);
  transform: translateY(-2px);
}

.btn-hero-red:active {
  transform: scale(0.98);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 14px;
  transition: background-color 0.2s, color 0.2s;
  min-height: 52px;
}

.btn-hero-outline:hover {
  background-color: var(--navy);
  color: #FFFFFF !important;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(0, 36, 125, 0.12);
  padding-top: 24px;
}

.proof-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy) !important;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted) !important;
}

/* Hero Portrait Frame */
.portrait-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 40px rgba(0, 36, 125, 0.15);
  background-color: var(--navy-dark);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.portrait-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background-color: rgba(0, 26, 94, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.portrait-badge-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF !important;
}

.portrait-badge-role {
  font-size: 0.75rem;
  color: #D1D5DB !important;
}

.rating-pill {
  background-color: var(--red);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ════════════════════ SECTIONS GENERAL ════════════════════ */
.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-navy {
  background-color: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-tag-light {
  color: #FF808F;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title-white {
  color: #FFFFFF !important;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-desc-light {
  color: #D1D5DB !important;
}

/* ════════════════════ ABOUT / VALUES ════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 36, 125, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════ COURSES OFFER ════════════════════ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.course-card {
  background-color: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: var(--white);
}

.course-card-featured {
  border: 2px solid var(--red);
  background-color: #00206D;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.course-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 9999px;
  white-space: nowrap;
}

.course-header {
  margin-bottom: 18px;
}

.course-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
}

.course-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 8px;
}

.course-desc {
  font-size: 0.9rem;
  color: #D1D5DB !important;
  line-height: 1.6;
}

.course-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.course-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #F3F4F6 !important;
  margin-bottom: 10px;
}

.course-item-icon {
  color: #FF808F;
  flex-shrink: 0;
}

.btn-course {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.925rem;
  border-radius: 14px;
  transition: background-color 0.2s;
  min-height: 48px;
}

.btn-course:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-course-red {
  background-color: var(--red);
}

.btn-course-red:hover {
  background-color: var(--red-hover);
}

.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.special-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.special-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.special-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 4px;
}

.special-desc {
  font-size: 0.875rem;
  color: #D1D5DB !important;
  line-height: 1.5;
}

/* ════════════════════ FORMAT & PRICING ════════════════════ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.format-tile {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.format-tile-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--navy);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 8px;
}

.format-tile-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.825rem;
  font-weight: 700;
}

.pill-gray {
  background-color: var(--bg-light);
  color: var(--navy);
  border: 1px solid rgba(0, 36, 125, 0.08);
}

.pill-red {
  background-color: var(--red);
  color: var(--white);
}

.pricing-box {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-box-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 8px;
}

.pricing-box-desc {
  font-size: 0.95rem;
  color: #E5E7EB !important;
  max-width: 600px;
}

/* ════════════════════ GALLERY ════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

/* ════════════════════ CONTACT & MAP ════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background-color: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(207, 20, 43, 0.2);
  color: #FF808F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9CA3AF !important;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF !important;
}

.contact-subtext {
  font-size: 0.875rem;
  color: #D1D5DB !important;
}

.google-review-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--white);
  margin-bottom: 20px;
  transition: border-color 0.2s;
  min-height: 52px;
}

.google-review-btn:hover {
  border-color: var(--red);
}

.map-container {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Form */
.form-card {
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 36, 125, 0.12);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background-color: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(207, 20, 43, 0.3);
  transition: background-color 0.2s, transform 0.1s;
  min-height: 52px;
}

.btn-submit:hover {
  background-color: var(--red-hover);
}

.btn-submit:active {
  transform: scale(0.98);
}

.form-success-alert {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ════════════════════ STICKY MOBILE CONTACT BAR ════════════════════ */
.mobile-sticky-bar {
  display: none;
}

/* ════════════════════ FOOTER ════════════════════ */
.footer {
  background-color: var(--navy-deep);
  color: #9CA3AF;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--white);
}

/* ════════════════════ MOBILE RESPONSIVE ════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .courses-grid, .features-grid, .format-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-box {
    flex-direction: column;
    text-align: center;
  }

  .special-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide desktop navbar actions */
  .nav-menu, .btn-cta {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero section touch tweaks */
  .hero-section {
    padding-top: 92px;
    padding-bottom: 56px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.3rem) !important;
  }

  .hero-logo-banner {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding: 10px 16px;
    gap: 12px;
    width: 100%;
    max-width: 360px;
  }

  .hero-logo-img-wrap {
    width: 90px;
    height: 90px;
    padding: 2px;
  }

  .hero-logo-text strong {
    font-size: 1.15rem;
  }

  .hero-logo-text span {
    font-size: 0.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-red, .btn-hero-outline {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  /* Portrait card touch size */
  .portrait-card {
    max-width: 320px;
    border-radius: 20px;
  }

  .portrait-badge {
    padding: 10px 14px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .form-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .footer {
    padding-bottom: 96px; /* space for sticky mobile bar */
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Sticky Mobile Action Bar */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background-color: rgba(0, 26, 94, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.25);
  }

  .mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--white) !important;
  }

  .mobile-sticky-btn-call {
    background-color: var(--red);
    box-shadow: 0 2px 8px rgba(207, 20, 43, 0.4);
  }

  .mobile-sticky-btn-call:active {
    background-color: var(--red-hover);
  }

  .mobile-sticky-btn-msg {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .mobile-sticky-btn-msg:active {
    background-color: rgba(255, 255, 255, 0.25);
  }
}
