:root {
  --deep: #0c1424;
  --indigo: #182848;
  --gold: #e2c27b;
  --text: #f4f6f8;
  --glass: rgba(255,255,255,0.06);
  --max: 1200px;
  --radius: 18px;
  --header-height: 90px;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(179,136,235,0.15), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(31,111,139,0.2), transparent 40%),
    linear-gradient(135deg, var(--deep), var(--indigo));
  line-height: 1.7;
}

/* HEADINGS */
h1,h2,h3 { font-family: 'Playfair Display', serif; }

.section { padding: 60px 0; } /* reduced vertical spacing */
section { scroll-margin-top: calc(var(--header-height) + 20px); }

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold);
}

/* WRAP CONTAINER */
.wrap { width: 92%; max-width: var(--max); margin: auto; }

/* HEADER */
header {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height: var(--header-height);
  backdrop-filter: blur(12px);
  background: rgba(12,20,36,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
}

.headerContainer {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.logoContainer img {
  height: 80px;
  width: auto;
  display: block;
  box-shadow: 0px 0px 10px 1px var(--indigo);
  border-radius: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: 0.3s ease;
}

nav a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  width: 100%;
  text-align: right;
}
.burgerButton{
  cursor: pointer;
}

/* HERO */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  text-align: center;
  padding-bottom: 20px;
}

.contactInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 25px auto 10px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.contactItem {
  background: linear-gradient(to right, var(--gold), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contactDivider {
  color: var(--gold);
  opacity: 0.5;
}


.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.15rem;
  color: #d5dbe3;
}

a.applyToday {
  display: block;
  color: var(--deep);
  margin: 40px auto;
  width: fit-content;
  background: linear-gradient(135deg,var(--gold),#f5e3b0);
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0px 0px 10px 1px var(--deep);
}
a.applyToday:hover{
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 1px var(--gold);
}
.about{
  background-color: rgba(12,20,36,0.6);
  border: 0px solid var(--deep);
}

/* GLASS CARDS */
.glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* GRID CARDS */
.card-grid {
  display: grid;
  gap: 30px;
}

@media(min-width:768px){
  .card-grid { grid-template-columns: repeat(2,1fr); }
}

@media(min-width:1100px){
  .card-grid { grid-template-columns: repeat(3,1fr); }
}

.card {
  padding: 25px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.pricing{
  background-color: rgba(12,20,36,0.6);
  border: 0px solid var(--deep);
  border-width: 1px 0px 1px 0px;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  gap: 30px;
}

@media(min-width:900px){
  .pricing-grid { grid-template-columns: repeat(3,1fr); }
}

.price-card {
  text-align: center;
  padding: 35px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  transition: 0.3s ease;
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.price-card span {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 15px 0;
}

/* FORM */
form {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

input,textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

input[type=submit] {
  background: linear-gradient(135deg,var(--gold),#f5e3b0);
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 50px 0;
  text-align: center;
  color: #b0b7c3;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footerContainer{
  width: 80%;
  margin: 20px auto;
  background-color: #0c142487;
  padding:10px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.footerNote{
  display: block;
  color: var(--gold);
  width: 100%;
  text-align: center;
  margin:10px auto;
}


.bg{
  width: 100%;
  height:100vh;
  position: fixed;
  background-image: url("tca_background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  filter: blur(15px);
}
.bgTint{
  background-color: var(--deep);
  height: 100vh;
  width: 100%;
  opacity: 0.5;

}
.sub{
  background: linear-gradient(to right, var(--gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ===================== */
/* NEW CLIENT INTAKE FORM */
/* ===================== */

.intake-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, var(--deep), var(--indigo));
}

.intake-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass);
  border-radius: var(--radius);
  padding: 50px 40px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.intake-card h2 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--gold);
}

.intake-subtitle {
  text-align: center;
  opacity: 0.8;
  margin-bottom: 40px;
  color: #d5dbe3;
}

.form-group {
  margin-bottom: 35px;
}

.form-group h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  opacity: 0.9;
  color: var(--gold);
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  flex: 1;
}

.form-field label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  opacity: 0.7;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 1px solid var(--gold);
}

/* Slider */
.range-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.range-wrapper span {
  min-width: 24px;
  text-align: center;
  font-weight: bold;
  color: var(--gold);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #fff);
  color: var(--deep);
  font-weight: 600;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(226,194,123,0.3);
}

/* Intro text */
.form-intro {
  opacity: 0.8;
  margin-bottom: 20px;
  color: #d5dbe3;
}

/* Responsive */
@media (max-width: 700px) {
  .intake-card {
    padding: 35px 25px;
  }

  .form-row {
    flex-direction: column;
  }
}

.mod{
  padding: 160px 0;
}

.legal-section {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 50px 60px;
  background-color: #0c1424d6;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  color: var(--text);
}

.legal-inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-main-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold);
}

.legal-intro {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.85;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h3 {
  margin-bottom: 15px;
  color: #ffffff;
}

.legal-block p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-block ul {
  padding-left: 20px;
  margin-top: 10px;
}

.legal-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.brand-name {
  color: var(--gold);
  font-style: italic;
}

.legal-quote {
  margin-top: 20px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  font-style: italic;
  line-height: 1.6;
}

/* MOBILE NAV */
@media(max-width:768px){
  .menu-toggle {
    display: block;
    color: var(--gold);
  }
  nav ul {
    position: absolute;
    top: var(--header-height);
    left:0;
    width:100%;
    background: rgba(12,20,36,0.98);
    flex-direction: column;
    padding: 20px 0;
    display: none;
    text-align: center;
    gap:0;
  }
  nav ul.active { display: flex; }
  nav ul li { padding: 12px 0; }
  .legal-section {
    padding: 40px 25px;
  }

  .legal-main-title {
    font-size: 1.6rem;
  }

  .contactInfo {
    flex-direction: column;
    gap: 6px;
  }

  .contactDivider {
    display: none;
  }
}

/* ADDITIONAL SPACING ADJUSTMENTS */
.about .card, .coreModalities .card, .hero, .pricing-grid .price-card {
  margin-bottom: 20px;
}


/* Section spacing */
  #divine-blueprint {
    padding: 4rem 1.5rem;
    background-color: rgba(12,20,36,0.6);
  }

  /* Layout container */
  .blueprint-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  /* Image styling */
  .blueprint-image img {
    width: 400px;
    margin:0px auto;
    border-radius: 8px;
    display: block;
    border: 1px solid var(--gold);
    box-shadow: 0px 0px 10px 1px var(--gold);
  }

  /* Text styling */
  .blueprint-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
  }

  .blueprint-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #fff;
    max-width: 480px;
  }
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .blueprint-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .blueprint-content h2 {
      font-size: 1.875rem;
    }

    .blueprint-content p {
      font-size: 1rem;
      margin: 0 auto;
    }
  }