@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --yellow: #f6c21b;
  --yellow-dark: #d9a60f;
  --black: #111111;
  --gray-900: #1c1c1c;
  --gray-700: #3f3f3f;
  --gray-200: #e6e6e6;
  --gray-100: #f6f6f6;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --black: #000000;
    --gray-700: #000000;
    --yellow: #ffcc00;
  }
}

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


body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* Accessibility improvements for elderly users */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p, li, span {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.99);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.1;
}

@media (max-width: 600px) {
  .logo-img {
    height: 40px;
  }
  .logo-text {
    font-size: 1rem;
  }
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.2s ease;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}

.phone-icon {
  color: var(--yellow);
  flex-shrink: 0;
}

.phone-info {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  min-width: 0;
}

.phone-label {
  font-size: 11px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.phone-number {
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #25D366;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
}

.site-nav {
  display: flex;
  gap: 8px;
  font-weight: 500;
  align-items: center;
  flex-wrap: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}

.site-nav a:not(.nav-cta):hover {
  background: var(--gray-100);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  width: calc(100% - 32px);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(246, 194, 27, 0.3) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(246, 194, 27, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

.hero {
  background: linear-gradient(135deg, #fff 0%, #fff6d1 50%, #fff 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(246, 194, 27, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-pill {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  padding: 32px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  border-color: var(--yellow);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--black);
  font-weight: 700;
}

.hero-card > p {
  color: var(--gray-700);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.booking-form input {
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--white);
  min-height: 48px; /* Accessibility: minimum touch target */
}

.booking-form input:focus {
  outline: 3px solid rgba(246, 194, 27, 0.3);
  outline-offset: 2px;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(246, 194, 27, 0.1);
}

.booking-form input::placeholder {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.form-note {
  font-size: 0.82rem;
  color: var(--gray-700);
  text-align: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  background: #e9f7ef;
  color: #0f5132;
  border: 1px solid #b7dfc8;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

.booking-form button[type="submit"] {
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px; /* Accessibility: minimum touch target size */
}

.btn:focus-visible {
  outline: 3px solid rgba(246, 194, 27, 0.4);
  outline-offset: 2px;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 12px 24px rgba(246, 194, 27, 0.3);
}

.btn.primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: var(--black);
  color: var(--black);
}

.btn.whatsapp {
  background: #25D366;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn.whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn.whatsapp svg {
  flex-shrink: 0;
}

.btn.large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn.full {
  width: 100%;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--gray-700);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--yellow);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(246, 194, 27, 0.1) 0%, rgba(246, 194, 27, 0.2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--yellow);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--black);
  font-weight: 700;
}

.service-card > p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-features li {
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  font-size: 1rem;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.quote-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.quote blockquote {
  font-style: italic;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.quote figcaption {
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  background: var(--black);
  color: var(--white);
}

.contact-card a {
  color: var(--yellow);
}

.contact-info {
  margin-top: 12px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.booking-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

.booking-cta-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.booking-cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--black);
}

.booking-cta-content > p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--black);
}

.feature-item svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.footer-whatsapp:hover {
  transform: translateX(4px);
}

.suburbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.suburb-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.suburb-category:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.suburb-category h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--black);
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
}

.suburb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.suburb-list li {
  padding: 8px 12px;
  background: var(--gray-100);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: all 0.2s ease;
  font-weight: 500;
}

.suburb-list li:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateX(4px);
}

.suburbs-note {
  background: linear-gradient(135deg, rgba(246, 194, 27, 0.1) 0%, rgba(246, 194, 27, 0.2) 100%);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 2px solid var(--yellow);
}

.suburbs-note p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
}

.suburbs-note strong {
  color: var(--black);
  font-weight: 700;
}

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

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border-color: var(--yellow);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 20px 24px 24px;
}

.gallery-caption h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--black);
  font-weight: 700;
}

.gallery-caption p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .suburbs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .suburb-category {
    padding: 20px;
  }

  .gallery-card img {
    height: 200px;
  }
}

.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 6px;
}

.site-footer a {
  color: var(--yellow);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

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

  .nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .logo {
    order: 2;
  }

  .header-actions {
    order: 3;
    margin-left: auto;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    padding: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0;
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: none;
    margin: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1.05rem;
  }

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

  .hero {
    padding: 40px 0 60px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 16px;
    padding: 16px 0;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1;
    text-align: center;
  }

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

  .stat-label {
    font-size: 0.75rem;
  }

  .booking-cta-card {
    padding: 32px 24px;
  }

  .booking-cta-features {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    padding: 12px 0;
  }

  .header-phone {
    display: none;
  }

  .logo-img {
    height: 36px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .hero {
    padding: 30px 0 50px;
  }

  .hero-pill {
    font-size: 0.85rem;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 12px;
    padding: 12px 0;
    margin-bottom: 20px;
  }

  .stat-item {
    flex: 1;
  }

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

  .stat-label {
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .hero-card {
    padding: 24px 20px;
  }

  .hero-card h2 {
    font-size: 1.3rem;
  }

  .booking-cta-content h2 {
    font-size: 1.4rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

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

  .service-card {
    padding: 24px;
  }

  .section {
    padding: 50px 0;
  }

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

  .section-header h2 {
    font-size: 1.6rem;
  }
}

/* FAQ Section Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: all 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--yellow);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary:hover {
  background: var(--gray-100);
}

.faq-item p {
  padding: 20px 24px;
  color: var(--gray-700);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ mobile responsiveness */
@media (max-width: 600px) {
  .faq-item summary {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .faq-item summary::after {
    font-size: 1.3rem;
    margin-left: 12px;
  }
  
  .faq-item p {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
}
