/* ============================================================
   NM LAKE MARY LLC — Coastal Professional Design System
   Colors: Deep Sea Teal #0F4C5C | Warm Sand #E8DCC8
           White #FAFAFA | Coral #E07A5F | Dark Slate #1A2B3C
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --teal: #0F4C5C;
  --teal-dark: #0A3643;
  --teal-light: #156A7E;
  --sand: #E8DCC8;
  --sand-dark: #D4C5A9;
  --sand-light: #F2ECE0;
  --white: #FAFAFA;
  --coral: #E07A5F;
  --coral-dark: #C96A52;
  --slate: #1A2B3C;
  --slate-light: #243447;
  --text: #2D2D2D;
  --text-light: #666;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,43,60,0.08);
  --shadow-md: 0 4px 20px rgba(26,43,60,0.12);
  --shadow-lg: 0 8px 40px rgba(26,43,60,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--coral-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(15,76,92,0.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--coral);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--white);
}

.hero-left {
  flex: 1;
  background: var(--teal);
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-left .container {
  max-width: 580px;
  margin: 0 0 0 auto;
  padding-right: 80px;
}

.hero-right {
  flex: 1;
  background: var(--sand-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -80px;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  top: 120px;
  right: 40px;
  background: var(--coral);
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--coral);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 460px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Geometric Pattern */
.geo-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.geo-circle--coral {
  background: var(--coral);
}

.geo-circle--teal {
  background: var(--teal);
}

.geo-circle--sand {
  background: var(--sand-dark);
}

.geo-circle--1 { width: 200px; height: 200px; top: 15%; left: 20%; }
.geo-circle--2 { width: 120px; height: 120px; top: 45%; left: 50%; }
.geo-circle--3 { width: 80px; height: 80px; top: 25%; right: 15%; }
.geo-circle--4 { width: 160px; height: 160px; bottom: 20%; left: 30%; }
.geo-circle--5 { width: 60px; height: 60px; bottom: 30%; right: 25%; }
.geo-circle--6 { width: 100px; height: 100px; top: 60%; right: 40%; }
.geo-circle--7 { width: 40px; height: 40px; top: 10%; left: 55%; }
.geo-circle--8 { width: 180px; height: 180px; bottom: 10%; right: 10%; }

.geo-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--coral) 1px, transparent 1px),
    radial-gradient(circle, var(--teal) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
  opacity: 0.12;
}

/* --- Section Base --- */
.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--slate);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* --- About Section --- */
.about {
  background: var(--sand);
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  padding: 140px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-title {
  color: var(--slate);
}

.about-highlight {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 700;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* About Image Area */
.about-visual {
  position: relative;
  height: 400px;
}

.about-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--teal);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
  opacity: 0.08;
}

.about-shape--2 {
  background: var(--coral);
  clip-path: polygon(8% 5%, 95% 10%, 92% 95%, 5% 90%);
  opacity: 0.06;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.about-card h4 {
  font-size: 0.95rem;
  color: var(--teal);
}

/* --- Services Section --- */
.services {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(165deg, var(--sand-light) 0%, transparent 70%);
  z-index: 0;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.services-header .section-description {
  margin: 0 auto;
}

/* Triangular / Overlapping Cards */
.services-overlap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 40px 0;
  min-height: 500px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  width: 340px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all var(--transition);
  border-top: 4px solid transparent;
}

.service-card:nth-child(1) {
  transform: translateY(0) translateX(20px);
  z-index: 3;
  border-top-color: var(--teal);
}

.service-card:nth-child(2) {
  transform: translateY(60px);
  z-index: 2;
  border-top-color: var(--coral);
}

.service-card:nth-child(3) {
  transform: translateY(0) translateX(-20px);
  z-index: 3;
  border-top-color: var(--sand-dark);
}

.service-card:hover {
  transform: translateY(-8px) translateX(0);
  z-index: 10;
  box-shadow: 0 16px 48px rgba(26,43,60,0.2);
}

.service-card:nth-child(2):hover {
  transform: translateY(52px);
  z-index: 10;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-card:nth-child(1) .service-icon {
  background: rgba(15,76,92,0.1);
  color: var(--teal);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(224,122,95,0.1);
  color: var(--coral);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(212,197,169,0.3);
  color: var(--sand-dark);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--slate);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* Diagonal Band */
.diagonal-band {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(165deg, var(--sand) 0%, var(--sand-light) 50%, transparent 100%);
  z-index: 0;
  bottom: 60px;
  transform: skewY(-2deg);
}

/* --- Why Us Section --- */
.why-us {
  background: var(--teal);
  padding: 100px 0;
  position: relative;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding: 140px 0;
}

.why-us .section-label {
  color: rgba(255,255,255,0.7);
}

.why-us .section-title {
  color: var(--white);
}

.why-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-us-header .section-description {
  color: rgba(255,255,255,0.75);
  margin: 0 auto;
}

/* Staggered Layout */
.staggered-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.staggered-item {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.staggered-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.staggered-item:nth-child(even) {
  flex-direction: row-reverse;
}

.staggered-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--coral);
  transition: all var(--transition);
}

.staggered-item:hover .staggered-icon {
  background: var(--coral);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.staggered-content {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex: 1;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.staggered-item:hover .staggered-content {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
}

.staggered-content h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.staggered-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--sand);
  padding: 100px 0;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 320px;
}

.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  pointer-events: none;
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.testimonial-card:nth-child(1) { background: #fff; }
.testimonial-card:nth-child(2) { background: #FBF8F4; }
.testimonial-card:nth-child(3) { background: #F5EFE5; }

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.25;
  position: absolute;
  top: -30px;
  left: -15px;
  line-height: 1;
}

.testimonial-author {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot.active {
  background: var(--coral);
  transform: scale(1.3);
}

/* --- Contact Section --- */
.contact {
  background: var(--white);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}

.contact-grid::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sand-dark), transparent);
  transform: rotate(5deg);
}

/* Contact Form */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,76,92,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}

.form-error {
  color: var(--coral);
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: rgba(15,76,92,0.08);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-title {
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15,76,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail h4 {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 2px;
}

.contact-detail p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-detail a:hover {
  color: var(--teal);
}

/* --- Footer --- */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: 120px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--coral);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--coral);
  transform: translateX(4px);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}

.social-link:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--coral);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* --- Page Hero (Privacy/Terms) --- */
.page-hero {
  background: var(--teal);
  padding: 160px 0 80px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* --- Content Page --- */
.content-page {
  padding: 80px 0;
  background: var(--white);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-container h2 {
  font-size: 1.6rem;
  color: var(--slate);
  margin: 40px 0 16px;
}

.content-container h2:first-child {
  margin-top: 0;
}

.content-container h3 {
  font-size: 1.2rem;
  color: var(--teal);
  margin: 28px 0 12px;
}

.content-container p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-container ul,
.content-container ol {
  margin: 12px 0 20px 24px;
  color: var(--text-light);
  line-height: 1.8;
}

.content-container ul li,
.content-container ol li {
  margin-bottom: 8px;
}

.content-container a {
  color: var(--teal);
  text-decoration: underline;
}

.content-container a:hover {
  color: var(--coral);
}

/* --- Fade-in Animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,54,67,0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition);
}

.mobile-menu-links a:hover {
  color: var(--coral);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-left .container {
    padding-right: 40px;
  }
}

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

  .nav-links {
    display: none;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding: 140px 0 100px;
    flex: none;
  }

  .hero-left .container {
    padding: 0 24px;
    margin: 0;
    max-width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-badge {
    top: 100px;
    right: 20px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 280px;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* Services */
  .services-overlap {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-height: auto;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
    transform: none !important;
  }

  .service-card:nth-child(2) {
    transform: none !important;
  }

  .service-card:hover {
    transform: translateY(-4px) !important;
  }

  /* Why Us */
  .staggered-item,
  .staggered-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid::after {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Content pages */
  .content-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .about {
    padding: 100px 0;
  }

  .why-us {
    padding: 100px 0;
  }

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

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

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

  .contact-form {
    padding: 24px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .staggered-content {
    padding: 20px;
  }
}
