/* ============================================
   PALM WEALTH – RESPONSIVE STYLES
   Updated with Dreamcity HES Green Colors
   ============================================ */

/* ---------- TABLETS (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img,
  .transparency-image img {
    height: 300px;
  }
  .calculator-wrapper {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  .container {
    padding: 0 16px;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 8px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-menu a {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-menu .btn-nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  .stat-number {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    justify-content: center;
  }
  .scroll-indicator {
    display: none;
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .timeline-item {
    gap: 16px;
  }

  /* Calculator */
  .calculator-wrapper {
    padding: 20px;
  }
  .calculator-results {
    padding: 16px;
  }
  .result-value.highlight {
    font-size: 1.1rem;
  }

  /* Transparency List */
  .transparency-list {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand p {
    max-width: 100%;
  }

  /* Floating WhatsApp */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
  .scroll-top {
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

/* ---------- SMALL PHONES (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .package-card {
    padding: 28px 16px;
  }
  .package-price {
    font-size: 1.5rem;
  }
  .floating-card {
    display: none;
  }
  .about-image img {
    height: 220px;
  }
}
