/* ============================================
   OASIS HOME HEALTH AGENCY — Custom Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: #FDF8F0;
  color: #2D2420;
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #C67B5C;
  color: #FDF8F0;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
}

/* --- Section Container --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C67B5C;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #C67B5C;
  border-radius: 2px;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #2D2420;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #6B5E56;
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #C67B5C;
  color: #FDF8F0;
  border-color: #C67B5C;
}

.btn-primary:hover {
  background: #A86044;
  border-color: #A86044;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 123, 92, 0.35);
}

.btn-outline {
  background: transparent;
  color: #C67B5C;
  border-color: #C67B5C;
}

.btn-outline:hover {
  background: #C67B5C;
  color: #FDF8F0;
  transform: translateY(-2px);
}

.btn-white {
  background: #FDF8F0;
  color: #C67B5C;
  border-color: #FDF8F0;
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost-white {
  background: transparent;
  color: #FDF8F0;
  border-color: rgba(253, 248, 240, 0.5);
}

.btn-ghost-white:hover {
  background: rgba(253, 248, 240, 0.15);
  border-color: #FDF8F0;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* --- Navigation --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 123, 92, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav-header.scrolled {
  box-shadow: 0 4px 20px rgba(45, 36, 32, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2D2420;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2D2420;
}

.nav-logo-sub {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C67B5C;
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #6B5E56;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: #C67B5C;
  background: rgba(198, 123, 92, 0.08);
}

.nav-link-cta {
  background: #C67B5C;
  color: #FDF8F0 !important;
  font-weight: 500;
  margin-left: 8px;
}

.nav-link-cta:hover {
  background: #A86044;
  color: #FDF8F0 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #2D2420;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  padding-top: 72px;
  background: linear-gradient(135deg, #FDF3EF 0%, #FAF0E0 50%, #F5E6CC 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 123, 92, 0.12);
  color: #C67B5C;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #2D2420;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: #C67B5C;
}

.hero-description {
  font-size: 1.0625rem;
  color: #6B5E56;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B5E56;
}

.hero-trust-item svg {
  color: #C67B5C;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 580px;
}

.hero-image-main {
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45, 36, 32, 0.15);
  aspect-ratio: 520/640;
}

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

.hero-image-accent {
  position: absolute;
  bottom: 40px;
  left: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(45, 36, 32, 0.12);
  border: 4px solid #FDF8F0;
}

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

.hero-accent-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #C67B5C;
  color: #FDF8F0;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(198, 123, 92, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accent-badge-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.accent-badge-text {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.3;
}

.hero-image-float {
  position: absolute;
  top: 40px;
  right: -24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(45, 36, 32, 0.12);
  border: 4px solid #FDF8F0;
  width: 200px;
  height: 200px;
}

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

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- Services --- */
.services {
  padding: 80px 0;
  background: #FDF8F0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(198, 123, 92, 0.08);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(198, 123, 92, 0.12);
  border-color: rgba(198, 123, 92, 0.2);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FDF3EF, #F5E6CC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C67B5C;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #2D2420;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9375rem;
  color: #6B5E56;
  line-height: 1.7;
}

/* --- About --- */
.about {
  padding: 80px 0;
  background: #FDF8F0;
}

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

.about-visual {
  position: relative;
  height: 560px;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45, 36, 32, 0.12);
  height: 100%;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(45, 36, 32, 0.12);
  border: 4px solid #FDF8F0;
  width: 260px;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 1rem;
  color: #6B5E56;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(198, 123, 92, 0.15);
  border-bottom: 1px solid rgba(198, 123, 92, 0.15);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.stat-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #C67B5C;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: #6B5E56;
  font-weight: 400;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(198, 123, 92, 0.2);
}

/* --- Why Us --- */
.why-us {
  padding: 80px 0;
  background: linear-gradient(180deg, #FDF3EF 0%, #FDF8F0 100%);
}

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

.why-header .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(198, 123, 92, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(198, 123, 92, 0.1);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C67B5C, #D4956A);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(198, 123, 92, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.why-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #2D2420;
  margin-bottom: 10px;
}

.why-card-text {
  font-size: 0.9375rem;
  color: #6B5E56;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
  padding: 80px 0;
  background: #FDF8F0;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(198, 123, 92, 0.08);
  position: relative;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(198, 123, 92, 0.1);
}

.testimonial-quote-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(198, 123, 92, 0.15);
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: #6B5E56;
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDF3EF, #F5E6CC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C67B5C;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2D2420;
}

.testimonial-author-location {
  font-size: 0.8125rem;
  color: #6B5E56;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #C67B5C 0%, #A86044 100%);
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-content {
  color: #FDF8F0;
}

.cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FDF8F0;
}

.cta-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  height: 440px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Contact --- */
.contact {
  padding: 80px 0;
  background: #FDF8F0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  max-width: 460px;
}

.contact-desc {
  font-size: 1rem;
  color: #6B5E56;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FDF3EF, #F5E6CC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C67B5C;
  flex-shrink: 0;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C67B5C;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: #2D2420;
  line-height: 1.5;
}

.contact-detail-link {
  font-size: 0.9375rem;
  color: #C67B5C;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-detail-link:hover {
  color: #A86044;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrap {
  max-width: 520px;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(45, 36, 32, 0.06);
  border: 1px solid rgba(198, 123, 92, 0.08);
}

.contact-form-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2D2420;
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: #6B5E56;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D2420;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #2D2420;
  background: #FDF8F0;
  border: 1.5px solid rgba(198, 123, 92, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A67645;
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C67B5C;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198, 123, 92, 0.1);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23C67B5C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-success {
  text-align: center;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-success-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #2D2420;
}

.form-success-text {
  font-size: 0.9375rem;
  color: #6B5E56;
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: #2D2420;
  color: #FDF8F0;
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FDF8F0;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(253, 248, 240, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4956A;
  margin-bottom: 16px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a,
.footer-list span {
  font-size: 0.9375rem;
  color: rgba(253, 248, 240, 0.6);
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-list a:hover {
  color: #FDF8F0;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(253, 248, 240, 0.4);
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(253, 248, 240, 0.3);
  max-width: 480px;
  line-height: 1.5;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C67B5C;
  color: #FDF8F0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(198, 123, 92, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #A86044;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 123, 92, 0.5);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
    height: 480px;
  }

  .hero-image-float {
    right: -12px;
    top: 20px;
  }

  .hero-image-accent {
    left: -20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 400px;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 100%;
  }

  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-visual {
    max-width: 480px;
    margin: 0 auto;
    height: 360px;
  }

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

  .contact-info {
    max-width: 100%;
  }

  .contact-form-wrap {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(198, 123, 92, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .nav-link-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 48px 24px 60px;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-image-accent {
    left: -12px;
    bottom: 20px;
  }

  .hero-image-float {
    display: none;
  }

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

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

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

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .about-img-secondary {
    width: 200px;
    right: -12px;
    bottom: -16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .contact-form-card {
    padding: 28px 20px;
  }
}
