/* ============================================
   CLAUDIA MASON SALES - COMPLETE STYLESHEET
   ============================================ */

:root {
  --navy: #0B1D3A;
  --navy-light: #132B50;
  --white: #FAFAFA;
  --blue: #2D7FF9;
  --gray-light: #F3F4F6;
  --gray-dark: #9AA5B4;
  --text: #E8ECF1;
  --text-muted: #9AA5B4;
  --border: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

/* Navigation */
nav {
  background: var(--navy);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

nav .logo {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav .links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav .links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
  }

  nav .links.active {
    display: flex;
  }

  nav .links a {
    font-size: 1.2rem;
  }
}

nav a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--blue);
}

.cta-btn {
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--blue);
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-btn:hover {
  background: #1A6BE0;
  border-color: #1A6BE0;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 127, 249, 0.3);
}

/* Hero Section */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-split {
  flex-direction: row;
  text-align: left;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero .subheading {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 0 2rem;
  opacity: 0.95;
}

.hero .subheading a {
  color: var(--blue);
}

.hero .cta-btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero .subheading {
    margin: 0 auto 2rem;
  }
}

/* Proof Bar */
.proof-bar {
  background: var(--navy-light);
  padding: 2rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-bar .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-logos .logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 4rem 2rem;
}

section.alt {
  background: var(--navy-light);
}

/* Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tiles */
.tile {
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tile:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.tile h3 {
  margin-bottom: 1rem;
}

.tile p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.tile .cta-btn {
  align-self: flex-start;
}

/* Tiles with Alternative Background */
section.alt .tile {
  background: var(--navy);
  border: 1px solid var(--border);
}

/* About Section Specific */
.about-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--blue);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.stat-box .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-box .label {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

/* Forms */
form {
  max-width: 600px;
  margin: 2rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--navy-light);
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 127, 249, 0.15);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

button:hover {
  background: #1A6BE0;
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--blue);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

footer .links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
}

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

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

footer .copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thank-you h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.thank-you p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.thank-you .cta-btn {
  margin: 1rem 0.5rem;
}

/* Services Page */
.service-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.service-card .eyebrow {
  color: var(--blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card .best-for {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-card ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.service-card li {
  margin-bottom: 0.75rem;
}

/* Contact Page */
.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  flex: 1;
}

.contact-options {
  flex: 1;
}

.contact-tile {
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-tile h4 {
  margin-bottom: 0.5rem;
}

.contact-tile a,
.contact-tile p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Calendly Embed */
.calendly-container {
  width: 100%;
  min-height: 800px;
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  /* nav .links handled by hamburger menu styles above */

  section {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .hero .subheading {
    font-size: 1rem;
  }

  .proof-logos {
    gap: 1rem;
  }

  .proof-logos .logo-text {
    font-size: 0.85rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .grid {
    gap: 1.5rem;
  }

  .tile {
    padding: 1.5rem;
  }

  footer {
    padding: 2rem 1rem;
  }

  footer .links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .cta-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .proof-logos {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  section {
    padding: 1.5rem 1rem;
  }
}

/* Print Styles */
@media print {
  nav,
  footer {
    display: none;
  }

  section {
    page-break-inside: avoid;
  }
}
