:root {
  --radius: 0.75rem;
  --background: oklch(0.995 0.002 250);
  --foreground: oklch(0.18 0.04 265);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.04 265);
  --primary: oklch(0.24 0.07 270);
  --primary-foreground: oklch(0.985 0.005 90);
  --primary-deep: oklch(0.16 0.06 270);
  --accent: oklch(0.82 0.13 88);
  --accent-foreground: oklch(0.18 0.04 265);
  --secondary: oklch(0.97 0.01 250);
  --muted: oklch(0.965 0.008 250);
  --muted-foreground: oklch(0.48 0.025 260);
  --border: oklch(0.91 0.012 255);
  --gradient-hero: linear-gradient(135deg, oklch(0.16 0.06 270) 0%, oklch(0.28 0.08 270) 60%, oklch(0.4 0.1 270) 100%);
  --gradient-gold: linear-gradient(135deg, oklch(0.86 0.13 90) 0%, oklch(0.72 0.15 75) 100%);
  --gradient-navy-gold: linear-gradient(120deg, oklch(0.2 0.07 270) 0%, oklch(0.24 0.07 270) 55%, oklch(0.55 0.13 85) 100%);
  --shadow-elegant: 0 24px 60px -24px oklch(0.16 0.06 270 / 0.35);
  --shadow-card: 0 6px 20px -8px oklch(0.16 0.06 270 / 0.18);
  --shadow-gold: 0 18px 48px -18px oklch(0.72 0.15 75 / 0.55);
  --transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-logo {
  height: 2.8rem;
  width: auto;
  max-width: 180px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 800;
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.site-nav a {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 0.8rem;
  color: rgba(26, 26, 60, 0.8);
  transition: all var(--transition);
}

.site-nav a:hover {
  background: rgba(247, 243, 233, 0.45);
  color: var(--primary);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.phone-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}

.button-primary,
.button-hero {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.button-navy {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.button-whatsapp {
  background: #25d366;
  color: white;
}

.button:hover {
  transform: translateY(-1px);
}

.block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-bar {
  display: block;
  width: 1.35rem;
  height: 0.18rem;
  background: var(--primary);
  border-radius: 999px;
  margin: 0.22rem auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 1.25rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu a {
  padding: 0.88rem 1rem;
  border-radius: 1rem;
  transition: background var(--transition);
}

.mobile-menu a:hover {
  background: rgba(247, 243, 233, 0.25);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: radial-gradient(circle at 15% 20%, rgba(255, 214, 88, 0.45), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(71, 59, 110, 0.6), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 236, 171, 0.18);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin: 1.5rem 0 1rem;
  font-size: clamp(2.8rem, 4vw, 4.75rem);
  line-height: 0.95;
  max-width: 14ch;
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0;
  max-width: 39rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-image-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  width: min(220px, 100%);
  padding: 1.2rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-card);
}

.hero-badge .badge-label {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 247, 216, 0.8);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge .badge-value {
  margin-top: 0.85rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-badge .badge-text {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: rgba(26, 26, 60, 0.65);
}

.section {
  padding: 5.25rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.65);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: radial-gradient(circle at 20% 20%, rgba(255, 214, 88, 0.35), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(85, 85, 153, 0.3), transparent 55%);
}

.hero-content {
  position: relative;
  max-width: 48rem;
}

.hero-content .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 236, 171, 0.16);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1.1;
}

.hero-content p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.section-heading .eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
}

.section-heading p {
  margin-top: 1rem;
  color: rgba(26, 26, 60, 0.74);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  border-radius: 1.75rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.classes-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.class-card {
  border-radius: 1.75rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), transparent);
  border-radius: 0 0 0 100%;
}

.class-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.class-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.class-icon {
  font-size: 2.2rem;
}

.class-code {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.class-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.class-card > p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(26, 26, 60, 0.72);
  position: relative;
  z-index: 1;
}

.class-details {
  flex-grow: 1;
  margin: 1rem 0;
  position: relative;
  z-index: 1;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26, 26, 60, 0.08);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.detail-row strong {
  color: var(--primary);
}

.class-details p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(26, 26, 60, 0.74);
}

.class-card .button {
  margin-top: 1.2rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.mv-card {
  rounded-2xl border border-border bg-card p-10 shadow-card-soft;
  border-radius: 2rem;
  border: 1px solid rgba(26, 26, 60, 0.08);
  background: white;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mv-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.mv-card p {
  margin: 0;
  color: rgba(26, 26, 60, 0.74);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.value-item {
  border-radius: 1.5rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.value-item div:last-child {
  font-weight: 600;
  color: var(--primary);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.17), rgba(255, 255, 255, 0.45));
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 1.25rem 0 0.85rem;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(26, 26, 60, 0.74);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.service-card {
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 26, 60, 0.08);
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.service-card-primary {
  /* Inherited from .service-card */
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  background: rgba(34, 62, 112, 0.08);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-card-primary h3,
.service-card-highlight h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.75rem;
}

.service-card-primary p,
.service-card-highlight p {
  margin: 0;
  color: rgba(26, 26, 60, 0.75);
  line-height: 1.85;
}

.service-card-primary ul,
.service-card-highlight ul {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: rgba(26, 26, 60, 0.78);
}

.service-card-primary ul li,
.service-card-highlight ul li {
  margin-bottom: 0.8rem;
}

.service-card-highlight {
  background: var(--gradient-navy-gold);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card-highlight ul {
  color: rgba(255, 255, 255, 0.85);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-foreground);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.service-card-highlight .badge-tag {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.service-icon-contrast {
  background: rgba(255, 255, 255, 0.16);
}

.service-image {
  margin-top: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-elegant);
  height: 240px;
  flex-shrink: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.55), transparent 60%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  border-radius: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.section-cta {
  padding: 5.5rem 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 3rem 2.2rem;
  border-radius: 2rem;
  text-align: center;
  background: var(--gradient-navy-gold);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 55%);
}

.cta-card h2,
.cta-card p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.cta-card p {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-link {
  margin-top: 1.5rem;
  text-align: center;
}

.cta-link a {
  color: var(--accent);
  font-size: 0.95rem;
  transition: text-decoration var(--transition);
}

.cta-link a:hover {
  text-decoration: underline;
}

.section-text {
  max-width: 56rem;
  margin: 0 auto;
}

.section-text p {
  margin: 1.25rem 0;
  line-height: 1.85;
  color: rgba(26, 26, 60, 0.82);
  font-size: 1.05rem;
}

.src-types-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.src-type-card {
  border-radius: 1.75rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.src-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.src-code {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 247, 216, 0.8);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.src-icon {
  font-size: 2.5rem;
  margin: 0.8rem 0;
}

.src-type-card h3 {
  margin: 0.8rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.src-type-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 26, 60, 0.74);
}

.target-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.target-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
}

.target-item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.target-item span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.advantage-card {
  border-radius: 1.5rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.advantage-card div:last-child {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.contact-methods-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
  border-radius: 1.75rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  color: rgba(26, 26, 60, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-card p {
  margin: 0.4rem 0;
  font-weight: 600;
  color: var(--primary);
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrapper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.contact-form-box {
  border-radius: 2rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  color: var(--primary);
}

.contact-form-box > p {
  margin: 0 0 2rem;
  color: rgba(26, 26, 60, 0.74);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(26, 26, 60, 0.12);
  border-radius: 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 62, 112, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.sidebar-box.hours {
  background: var(--primary);
  color: var(--primary-foreground);
}

.sidebar-box.whatsapp-promo {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 255, 255, 0.4));
  color: var(--primary);
}

.sidebar-box h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.hour-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sidebar-box p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}

.sidebar-box .button {
  width: 100%;
}

.success-message {
  border-radius: 1rem;
  background: rgba(165, 255, 0, 0.15);
  border: 1px solid rgba(165, 255, 0, 0.35);
  padding: 1.5rem;
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(165, 255, 0, 0.2);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-message p {
  margin: 0;
  font-weight: 600;
  color: var(--primary);
}

.map-container {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 60, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-methods-expanded {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-method {
  border-radius: 1.75rem;
  background: white;
  border: 1px solid rgba(26, 26, 60, 0.08);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  text-align: center;
  position: relative;
}

.contact-method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elegant);
  border-color: rgba(26, 26, 60, 0.15);
}

.contact-method-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-method h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.contact-method p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
  color: rgba(26, 26, 60, 0.72);
}

.contact-method .address {
  font-weight: 600;
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color var(--transition);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.section-heading.text-center {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.text-center h2 {
  margin: 0 0 1rem;
}

.section-heading.text-center p {
  margin: 0;
}

.footer-contact {
  padding: 5rem 0 3rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid h3 {
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.contact-grid a {
  display: block;
  margin-top: 0.55rem;
  color: var(--primary);
}

.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3.5rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer a {
  display: block;
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--accent) !important;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.6rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin: 0;
}

/* Premium Corporate SVG Icons Styling */
.service-icon svg,
.feature-icon svg,
.class-icon svg,
.src-icon svg,
.advantage-icon svg,
.value-icon svg,
.mv-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}

.service-icon svg {
  width: 1.95rem;
  height: 1.95rem;
  stroke: var(--primary);
}

.service-icon-contrast svg {
  stroke: var(--accent);
}

.feature-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: var(--primary);
}

.class-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: var(--primary);
}

.src-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--accent);
}

.advantage-icon svg,
.value-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: var(--primary);
}

.mv-icon svg {
  width: 3rem;
  height: 3rem;
  stroke: var(--primary);
}

/* whatsapp-fab SVG */
.whatsapp-fab svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow-elegant);
  text-decoration: none;
  z-index: 100;
}

.ping {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  100% {
    transform: scale(1.6);
    box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1.5rem;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    padding-bottom: 0;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .section,
  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .header-inner {
    align-items: flex-start;
  }

  .hero-actions,
  .cta-actions,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 1.5rem;
  }
}

/* FAQ Section Styling */
.faq-section {
  background: white;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid rgba(26, 26, 60, 0.08);
  border-radius: 1.25rem;
  background: var(--muted);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--muted-foreground);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
  color: rgba(26, 26, 60, 0.8);
}
