/* Saturangam360 Academy — Coming Soon */

:root {
  --brand-maroon: #7A1635;
  --brand-maroon-dark: #4B0D24;
  --brand-gold: #D6A23A;
  --brand-gold-soft: #E5C97A;
  --cream: #F8F1E3;
  --cream-light: #FFF9EE;
  --text-dark: #1F1B18;
  --muted-text: #5F5148;
  --border-soft: #E8D8B8;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
  --shadow-soft: 0 4px 20px rgba(31, 27, 24, 0.08);
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Page shell ── */

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ── Hero ── */

.hero {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--cream);
  background-image:
    linear-gradient(
      90deg,
      var(--cream) 0%,
      rgba(248, 241, 227, 0.97) 30%,
      rgba(248, 241, 227, 0.85) 42%,
      rgba(248, 241, 227, 0.55) 52%,
      rgba(248, 241, 227, 0.2) 65%,
      transparent 78%
    ),
    url('../images/home-bg-image.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vh, 2rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 2vh, 1.5rem);
  display: flex;
  flex-direction: column;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.8vh, 2rem);
  min-width: 0;
}

.hero__main {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vh, 1.5rem);
}

.hero__aside-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Brand ── */

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 88px;
  height: auto;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-maroon);
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.brand__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
}

/* ── Hero copy ── */

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-maroon);
  margin: 0 0 0.6rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--brand-maroon);
  margin: 0 0 0.75rem;
}

.hero__title .highlight {
  color: var(--brand-maroon);
}

.hero__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-text);
  max-width: 480px;
  margin: 0;
}

/* ── Quote ── */

.hero__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--brand-maroon);
  text-align: center;
}

.hero__quote-deco {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand-maroon);
  opacity: 0.85;
  font-style: normal;
}

.hero__quote-text {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0.35rem 0;
}

.hero__quote-rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--brand-gold);
  margin: 0.5rem auto 0;
  opacity: 0.7;
}

.hero__quote-deco--close {
  margin-top: 0.15rem;
  font-size: 2rem;
}

/* ── Countdown ── */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  max-width: 400px;
}

.countdown__item {
  background: var(--cream-light);
  border: 1px solid var(--brand-gold);
  border-radius: 8px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.countdown__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--brand-maroon);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.countdown__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

/* ── Features ── */

.features__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-maroon);
  margin: 0 0 1rem;
}

.features__heading-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: var(--brand-gold);
  opacity: 0.5;
}

.features__heading-text {
  white-space: nowrap;
}

.features__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.25rem 0.5rem;
}

.feature__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.45rem;
  color: var(--brand-gold);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__label {
  font-size: 0.7rem;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ── Enquiry form ── */

@keyframes enquiry-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.enquiry {
  background: rgba(255, 249, 238, 0.92);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.enquiry--floating {
  position: relative;
}

.enquiry__intro {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.enquiry__intro-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--brand-gold);
}

.enquiry__intro-text {
  font-size: 0.88rem;
  color: var(--muted-text);
  margin: 0;
  line-height: 1.45;
}

.enquiry__intro-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.enquiry__form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  width: 100%;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9a8f84;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--brand-gold);
  outline-offset: 1px;
  border-color: var(--brand-gold);
}

.form-group textarea {
  min-height: 2.75rem;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.35rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--brand-maroon);
  color: #fff;
}

.btn--primary:hover:not(:disabled) {
  background: var(--brand-maroon-dark);
}

.btn--whatsapp {
  background: transparent;
  color: var(--brand-maroon);
  border: 1px solid var(--brand-maroon);
}

.btn--whatsapp:hover {
  background: rgba(122, 22, 53, 0.06);
}

.form-response {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  min-height: 1.25em;
}

.form-response--success {
  color: #2d6a2d;
}

.form-response--error {
  color: var(--brand-maroon);
}

/* ── Footer ── */

.footer {
  flex-shrink: 0;
  background: var(--brand-maroon);
  color: #fff;
  padding: 0.75rem clamp(1rem, 2vw, 1.5rem);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  padding: 0 1rem;
}

.footer__contact-item:first-child {
  padding-left: 0;
}

.footer__contact-item + .footer__contact-item {
  border-left: 1px solid rgba(214, 162, 58, 0.45);
}

.footer__contact-item a {
  color: #fff;
  text-decoration: none;
}

.footer__contact-item a:hover {
  text-decoration: underline;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand-gold);
  stroke: var(--brand-gold);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__social-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer__social-list {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--brand-gold);
  border-radius: 50%;
  color: var(--brand-gold);
  text-decoration: none;
  transition: background 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer__social-link svg {
  width: 14px;
  height: 14px;
}

.footer__copyright-inline {
  display: none;
}

.footer__social-link--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.footer__bottom {
  display: none;
}

/* ══════════════════════════════════════════
   LAPTOP / LARGE SCREEN (mockup layout)
   ══════════════════════════════════════════ */

@media (min-width: 1024px) {
  .page {
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .hero {
    min-height: 0;
    overflow: hidden;
    background-image:
      linear-gradient(
        90deg,
        var(--cream) 0%,
        rgba(248, 241, 227, 0.97) 28%,
        rgba(248, 241, 227, 0.88) 42%,
        rgba(248, 241, 227, 0.55) 55%,
        rgba(248, 241, 227, 0.15) 72%,
        transparent 85%
      ),
      url('../images/home-bg-image.png');
  }

  .hero__inner {
    min-height: 0;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero__content {
    justify-content: center;
    min-height: 0;
    height: 100%;
    gap: clamp(1.75rem, 3.5vh, 2.75rem);
    padding: clamp(0.5rem, 1.5vh, 1rem) 0;
  }

  .hero__main {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .hero__aside-meta {
    gap: 1.25rem;
    padding-left: clamp(0.5rem, 1.5vw, 1rem);
    border-left: 1px solid rgba(214, 162, 58, 0.35);
  }

  .brand {
    margin-bottom: 0;
  }

  .logo-img {
    width: 100px;
  }

  .brand__name {
    font-size: 1.2rem;
  }

  .brand__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }

  .brand__tagline::before,
  .brand__tagline::after {
    content: '';
    width: 1.75rem;
    height: 1px;
    background: var(--brand-gold);
    opacity: 0.55;
  }

  .hero__lead {
    margin-bottom: 0;
  }

  .hero__title {
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    margin-bottom: 0.85rem;
  }

  .hero__desc {
    font-size: 0.92rem;
    max-width: 480px;
  }

  .countdown {
    max-width: none;
    margin-top: 0;
  }

  .hero__quote {
    position: static;
    transform: none;
    max-width: none;
    text-align: left;
    padding-top: 0.25rem;
  }

  .hero__quote-deco {
    font-size: 2.25rem;
    color: var(--brand-gold);
    opacity: 0.9;
  }

  .hero__quote-deco--open {
    text-align: left;
  }

  .hero__quote-deco--close {
    font-size: 1.75rem;
    text-align: right;
  }

  .hero__quote-text {
    font-size: 0.95rem;
    color: var(--brand-maroon);
    margin: 0.25rem 0;
  }

  .hero__quote-rule {
    margin: 0.5rem 0 0;
  }

  .features {
    width: 100%;
    flex-shrink: 0;
  }

  .features__heading {
    justify-content: flex-start;
    margin-bottom: 1.15rem;
  }

  .features__heading-line:first-child {
    display: none;
  }

  .features__heading-line:last-child {
    max-width: none;
    flex: 1;
  }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
    justify-items: center;
  }

  .feature {
    max-width: 140px;
  }

  .feature__icon {
    width: 36px;
    height: 36px;
    color: var(--brand-gold);
  }

  .feature__label {
    font-size: 0.72rem;
  }

  /* Floating enquiry card */
  .enquiry--floating {
    align-self: center;
    width: 100%;
    max-width: 340px;
    padding: 1.35rem 1.4rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 252, 245, 0.96);
    border: 1px solid rgba(214, 162, 58, 0.45);
    box-shadow:
      0 8px 32px rgba(75, 13, 36, 0.12),
      0 2px 8px rgba(31, 27, 24, 0.06);
    backdrop-filter: blur(8px);
    animation: enquiry-float 5s ease-in-out infinite;
    z-index: 3;
  }

  .enquiry__intro {
    margin-bottom: 1.1rem;
  }

  .enquiry__intro-icon {
    width: 42px;
    height: 42px;
    padding: 0.5rem;
    background: var(--brand-maroon);
    color: #fff;
    border-radius: 50%;
  }

  .enquiry__intro-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
  }

  .enquiry__intro-text strong {
    font-size: 1rem;
  }

  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .form-group--compact {
    flex: none;
    min-width: 0;
    max-width: none;
  }

  .form-group--message {
    flex: none;
    min-width: 0;
    max-width: none;
  }

  .form-actions {
    flex-direction: column;
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .form-actions .btn {
    width: 100%;
  }

  .btn--whatsapp {
    display: none;
  }

  .footer__social-label {
    display: none;
  }

  .footer__copyright-inline {
    display: none;
  }
}

@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .enquiry--floating {
    animation: none;
  }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .hero__inner {
    padding-top: 0.85rem;
    padding-bottom: 0.5rem;
    gap: 1.25rem;
  }

  .hero__content {
    gap: 1.25rem;
    padding: 0;
  }

  .hero__main {
    gap: 1rem;
  }

  .logo-img {
    width: 84px;
  }

  .hero__title {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
  }

  .hero__desc {
    font-size: 0.85rem;
  }

  .countdown__item {
    padding: 0.55rem 0.35rem;
  }

  .countdown__value {
    font-size: 1.5rem;
  }

  .features__heading {
    margin-bottom: 0.75rem;
  }

  .features__grid {
    gap: 0.65rem 0.85rem;
  }

  .feature__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }

  .feature__label {
    font-size: 0.65rem;
  }

  .enquiry--floating {
    padding: 1rem 1.15rem 1.15rem;
    animation-duration: 6s;
  }

  .enquiry__intro {
    margin-bottom: 0.85rem;
  }

  .form-grid {
    gap: 0.55rem;
  }
}

/* ── Tablet ── */

@media (min-width: 769px) and (max-width: 1023px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__main {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1.5rem;
  }

  .hero__aside-meta {
    min-width: 200px;
    padding-left: 1rem;
    border-left: 1px solid rgba(214, 162, 58, 0.35);
  }

  .hero__quote {
    text-align: left;
  }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-group--message {
    grid-column: 1 / -1;
  }

  .form-actions {
    grid-column: 1 / -1;
  }
}

/* ── Mobile ── */

@media (max-width: 768px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__main {
    gap: 1.25rem;
  }

  .hero__lead {
    text-align: center;
  }

  .brand {
    flex-direction: column;
    justify-content: center;
  }

  .logo-img {
    width: 96px;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .countdown {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__quote {
    margin: 0 auto;
  }

  .features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .form-group--compact label.visually-hidden {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .form-group--compact input,
  .form-group--compact select,
  .form-group--compact textarea {
    margin-top: 0;
  }

  .form-group--compact input::placeholder,
  .form-group--compact textarea::placeholder {
    color: transparent;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
  }

  .footer__contact {
    flex-direction: column;
    width: 100%;
  }

  .footer__contact-item {
    padding: 0;
    border-left: none !important;
    justify-content: center;
  }

  .footer__social {
    flex-direction: column;
  }

  .footer__bottom {
    display: block;
    text-align: center;
    padding-top: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.85;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
  }
}
