/*
Theme Name: A Day With Elephants
Theme URI: https://www.adaywithelephants.com/
Author: A Day in Chiangmai
Author URI: https://www.adaywithelephants.com/
Description: Official theme for A Day With Elephants — ethical elephant sanctuary in Chiang Mai, Thailand.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adaywithelephants
Tags: one-page, custom-colors, custom-logo, full-width-template, responsive-layout
*/


    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root { 
      --cream: #FFFDFB;
      --cream-dark: #FAF7F3;
      --sand: #F5F1EC;
      --beige: #EDE7E0;
      --beige-dark: #DDD5CA;
      --brown: #B5A898;
      --pink: #F0E5E2;
      --pink-light: #FBF8F7;
      --pink-dark: #C9B5AF;
      --gold: #D9CCBB;
      --text: #4A4540;
      --text-light: #6A6560;
    }
    html { scroll-behavior: smooth; }
    body { 
      font-family: Montserrat, sans-serif; 
      background: var(--cream); 
      color: var(--text);
      line-height: 1.6;
    }
    h1, h2, h3, h4 { font-family: Cormorant Garamond, serif; font-weight: 600; }

    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .fade-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .fade-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .fade-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .scale-in {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .scale-in.visible {
      opacity: 1;
      transform: scale(1);
    }
    .slide-up {
      opacity: 0;
      transform: translateY(80px) scale(0.95);
      transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .slide-up.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .card-reveal {
      opacity: 0;
      transform: translateY(60px) rotateX(10deg);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      transform-origin: bottom center;
    }
    .card-reveal.visible {
      opacity: 1;
      transform: translateY(0) rotateX(0deg);
    }
    .delay-1 { transition-delay: 0.15s; }
    .delay-2 { transition-delay: 0.3s; }
    .delay-3 { transition-delay: 0.45s; }
    .delay-4 { transition-delay: 0.6s; }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 1.2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 100;
      transition: all 0.3s;
      background: transparent;
    }
    .nav.scrolled {
      background: rgba(250, 246, 240, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .nav-logo {
      font-family: Cormorant Garamond, serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--brown);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .logo-img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }
    .inline-logo {
      width: 20px;
      height: 20px;
      object-fit: contain;
      vertical-align: middle;
      margin-right: 0.3rem;
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--beige-dark); }

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      overflow: hidden;
    }
    .hero-slideshow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }
    .hero-slide.active {
      opacity: 1;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45));
      z-index: 1;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 150px;
      background: linear-gradient(transparent, var(--cream));
    }
    .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeUp 1s ease-out;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      color: white;
      font-size: 0.8rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 6vw, 4.5rem);
      color: white;
      font-weight: 400;
      margin-bottom: 0.5rem;
      line-height: 1.2;
      text-shadow: 0 2px 30px rgba(0,0,0,0.3);
      letter-spacing: 3px;
    }
    .hero-at {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      color: var(--sand);
      font-family: Cormorant Garamond, serif;
      font-style: italic;
      margin: 0.5rem 0;
      letter-spacing: 5px;
    }
    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.95);
      max-width: 500px;
      margin: 2rem auto 2.5rem;
      font-weight: 500;
    }
    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem 2.5rem;
      background: white;
      color: var(--brown);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
      border-radius: 50px;
      transition: all 0.3s;
    }
    .hero-btn:hover {
      background: var(--beige-dark);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .scroll-indicator {
      position: absolute;
      bottom: 180px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
    }
    .scroll-indicator span {
      display: block;
      width: 24px;
      height: 40px;
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 20px;
      position: relative;
    }
    .scroll-indicator span::after {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 8px;
      background: white;
      border-radius: 2px;
      animation: scrollDown 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }
    @keyframes scrollDown {
      0%, 100% { opacity: 1; top: 8px; }
      50% { opacity: 0.3; top: 18px; }
    }

    .section {
      padding: 5rem 5%;
    }
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .section-title {
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--text);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .section-subtitle {
      font-size: 1rem;
      color: var(--text-light);
      font-weight: 500;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .programs-section { background: var(--cream); }

    .packages-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .package-wrapper {
      display: contents;
    }
    .program-details-mobile {
      display: none;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .package-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.4s;
      cursor: pointer;
      border: 3px solid transparent;
    }
    .package-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      border-color: var(--beige-dark);
    }
    .package-card.active {
      border-color: var(--beige-dark);
      box-shadow: 0 20px 50px rgba(107, 142, 94, 0.3);
    }
    .package-header {
      padding: 1.8rem 2rem;
      background: linear-gradient(135deg, var(--beige-dark) 0%, var(--brown) 100%);
      color: white;
      text-align: center;
    }
    .package-header h3 {
      font-size: 1.5rem;
      font-weight: 600;
    }
    .package-body {
      padding: 2rem;
    }
    .package-price {
      text-align: center;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #eee;
      margin-bottom: 1.5rem;
    }
    .package-price .amount {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--text);
    }
    .package-price .original-price {
      font-size: 1.1rem;
      color: #999;
      text-decoration: line-through;
      display: block;
      margin-bottom: -4px;
    }
    .package-price .special-tag {
      display: inline-block;
      background: #e74c3c;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      margin-left: 6px;
      vertical-align: middle;
    }
    .promo-banner {
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #5a3e00;
      text-align: center;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-top: 10px;
    }
    .package-price .currency {
      font-size: 1rem;
      color: var(--text-light);
      font-weight: 600;
    }
    .package-price .per {
      font-size: 0.9rem;
      color: var(--text-light);
      font-weight: 500;
    }
    .package-price .child {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: var(--text-light);
      font-weight: 600;
    }
    .package-time {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .package-time .time-item {
      display: flex;
      justify-content: space-between;
      padding: 0.6rem 0;
      font-size: 0.95rem;
      border-bottom: 1px dashed #eee;
    }
    .package-time .time-item:last-child { border-bottom: none; }
    .package-time .label { color: var(--text-light); font-weight: 500; }
    .package-time .value { font-weight: 700; color: var(--text); }
    .book-btn {
      display: block;
      width: 100%;
      padding: 1rem;
      background: var(--beige-dark);
      color: var(--text);
      border: none;
      border-radius: 10px;
      font-family: Montserrat, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .book-btn:hover {
      background: var(--brown);
      transform: scale(1.02);
    }

    .program-details {
      max-width: 1100px;
      margin: 3rem auto 0;
      background: white;
      border-radius: 25px;
      padding: 3rem;
      box-shadow: 0 15px 50px rgba(0,0,0,0.1);
      display: none;
      animation: fadeInDetails 0.5s ease-out;
    }
    .program-details.active { display: block; }
    @keyframes fadeInDetails {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .program-details-header {
      text-align: center;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid var(--cream);
    }
    .program-details-header h3 {
      font-size: 2rem;
      color: var(--text);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .program-details-header p {
      color: var(--text-light);
    }
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .highlight-item {
      padding: 1.5rem;
      background: var(--pink-light);
      border-radius: 15px;
      border-left: 4px solid var(--brown);
    }
    .highlight-item h4 {
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 0.8rem;
      font-family: Montserrat, sans-serif;
      font-weight: 700;
    }
    .highlight-item p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.6;
      font-weight: 500;
    }

    .price-includes {
      max-width: 1100px;
      margin: 3rem auto 0;
      background: var(--pink-light);
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
    }
    .price-includes h4 {
      font-size: 1.3rem;
      color: var(--text);
      margin-bottom: 1.5rem;
      font-weight: 700;
    }
    .includes-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .include-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.2rem;
      background: white;
      border-radius: 50px;
      font-size: 0.85rem;
      color: var(--text);
      font-weight: 500;
    }
    .include-tag span { font-size: 1.1rem; }
    .includes-note {
      margin-top: 1.5rem;
      font-size: 0.85rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .video-banner {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      overflow: hidden;
    }
    .video-banner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .video-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 50%, rgba(0,0,0,0.5));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3rem 5%;
      color: white;
    }
    .video-banner-overlay h3 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .video-banner-overlay p {
      font-size: 1.1rem;
      opacity: 0.95;
      max-width: 500px;
      font-weight: 500;
    }

    .feature-image-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }
    .feature-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .feature-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem;
      background: var(--cream-dark);
    }
    .feature-content h3 {
      font-size: 2.2rem;
      color: var(--text);
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .feature-content p {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 2rem;
      font-weight: 500;
    }
    .feature-content .book-btn {
      width: auto;
      display: inline-block;
      padding: 1rem 2.5rem;
      border-radius: 50px;
    }

    .info-with-image {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .info-image {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
    }
    .info-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .info-with-image {
      display: grid;
      grid-template-columns: 1fr 350px;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .info-cards-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .info-image {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
    }
    .info-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .qr-video-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
      align-items: center;
    }
    .qr-video {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 9/16;
      max-height: 500px;
    }
    .qr-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-testimonial {
      max-width: 800px;
      margin: 3rem auto 0;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }
    .video-testimonial video {
      width: 100%;
      display: block;
    }

    .gallery-section {
      background: var(--cream-dark);
      padding: 5rem 5%;
    }
    .gallery-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 1rem;
    }
    .gallery-row {
      display: grid;
      gap: 1rem;
    }
    .gallery-row.three-vertical {
      grid-template-columns: repeat(3, 1fr);
    }
    .gallery-row.two-horizontal {
      grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      cursor: pointer;
    }
    .gallery-item img, .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img, .gallery-item:hover video {
      transform: scale(1.05);
    }
    .gallery-row.three-vertical .gallery-item {
      aspect-ratio: 3/4;
    }
    .gallery-row.two-horizontal .gallery-item {
      aspect-ratio: 16/10;
    }
    .gallery-item.vertical {
      aspect-ratio: 3/4;
    }
    .gallery-item.horizontal {
      aspect-ratio: 16/10;
    }
    .video-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
    }
    .video-row .gallery-item.horizontal {
      aspect-ratio: 16/9;
    }
    .video-row .gallery-item.vertical {
      aspect-ratio: 9/16;
    }

    .floating-book-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      padding: 1rem 2rem;
      background: var(--beige-dark);
      color: var(--text);
      border: none;
      border-radius: 50px;
      font-family: Montserrat, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(169, 152, 128, 0.4);
      z-index: 99;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .floating-book-btn:hover {
      background: var(--brown);
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(169, 152, 128, 0.5);
    }
    .floating-book-btn span {
      font-size: 1.2rem;
    }

    .section-cta {
      text-align: center;
      margin-top: 3rem;
    }
    .section-cta .book-btn {
      display: inline-block;
      width: auto;
      padding: 1rem 3rem;
      border-radius: 50px;
    }

    .reviews-section {
      background: var(--cream);
      padding: 5rem 5%;
    }

    .guest-reviews-section {
      background: var(--cream-dark);
      padding: 5rem 5%;
    }
    .guest-reviews-section .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .guest-reviews-section .qr-title {
      margin-bottom: 2rem;
    }
    .guest-reviews-section .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .reviews-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .tripadvisor-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: white;
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    .tripadvisor-badge img {
      height: 30px;
    }
    .tripadvisor-badge span {
      font-weight: 700;
      color: var(--text);
      font-size: 1.1rem;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .review-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }
    .review-card:hover {
      transform: translateY(-5px);
    }
    .review-stars {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 1rem;
    }
    .review-stars span {
      color: #C9A86C;
      font-size: 1.2rem;
    }
    .review-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1rem;
    }
    .review-content {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #eee;
    }
    .review-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    .review-author-info h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
    }
    .review-author-info p {
      font-size: 0.8rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .info-section {
      background: var(--pink-light);
      padding: 5rem 5%;
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .info-card {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    .info-card h3 {
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-weight: 700;
    }
    .info-card h3 span {
      font-size: 1.8rem;
    }
    .info-content p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 1rem;
      line-height: 1.7;
      font-weight: 500;
    }
    .info-content h4 {
      font-size: 1rem;
      color: var(--text);
      margin: 1.5rem 0 0.5rem;
      font-family: Montserrat, sans-serif;
      font-weight: 700;
    }
    .info-content ul {
      list-style: none;
      padding-left: 0;
    }
    .info-content ul li {
      font-size: 0.9rem;
      color: var(--text-light);
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      font-weight: 500;
    }
    .info-content ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--brown);
      font-weight: bold;
    }

    .qr-section {
      background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 50%, var(--cream-dark) 100%);
      padding: 5rem 5%;
      text-align: center;
    }
    .qr-container {
      max-width: 700px;
      margin: 0 auto;
      background: white;
      padding: 3rem;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    .qr-title {
      font-family: 'Brush Script MT', 'Segoe Script', cursive;
      font-size: clamp(3rem, 8vw, 5rem);
      color: var(--text);
      margin-bottom: 1rem;
    }
    .qr-logo {
      margin-bottom: 2rem;
      font-size: 1.6rem;
      font-weight: 800;
    }
    .qr-logo .rantong { color: var(--text); }
    .qr-logo .elephant { color: var(--pink-dark); }
    .qr-wrapper {
      background: var(--cream);
      padding: 2rem;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 2rem;
    }
    .qr-placeholder {
      width: 200px;
      height: 200px;
      background: white;
      margin: 0 auto;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 0.9rem;
      border: 2px dashed #ccc;
    }
    .qr-contact {
      font-size: 1.1rem;
      color: var(--text);
      font-weight: 500;
    }
    .qr-contact strong {
      color: var(--text);
      font-size: 1.3rem;
      font-weight: 700;
    }
    .qr-contact small {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.85rem;
      color: var(--text-light);
    }

    .contact-section {
      background: linear-gradient(135deg, var(--beige-dark) 0%, var(--brown) 100%);
      padding: 4rem 5%;
      text-align: center;
      color: var(--text);
    }
    .contact-section h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--text);
      font-weight: 700;
    }
    .contact-section > p {
      font-size: 1rem;
      opacity: 0.85;
      margin-bottom: 2rem;
      color: var(--text);
      font-weight: 500;
    }
    .contact-box {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(10px);
      padding: 2rem 3rem;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.6);
    }
    .contact-item { text-align: center; }
    .contact-item span { display: block; font-size: 1.8rem; margin-bottom: 0.5rem; }
    .contact-item p { margin: 0; font-weight: 700; font-size: 1.1rem; color: var(--text); }
    .contact-item small { font-size: 0.8rem; opacity: 0.8; color: var(--text-light); font-weight: 500; }

    .qr-codes-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .qr-code-card {
      background: white;
      border-radius: 15px;
      padding: 1rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s;
    }
    .qr-code-card:hover {
      transform: translateY(-5px);
    }
    .qr-code-card img {
      width: 180px;
      height: auto;
      border-radius: 10px;
    }
    .qr-code-card p {
      margin-top: 0.8rem;
      font-size: 0.85rem;
      color: var(--text);
      font-weight: 600;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      padding: 1rem;
    }
    .modal-overlay.active { display: flex; }
    .modal {
      background: white;
      max-width: 480px;
      width: 100%;
      padding: 2.5rem;
      border-radius: 25px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      animation: modalIn 0.3s ease-out;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .modal h2 {
      font-size: 1.8rem;
      color: var(--text);
      text-align: center;
      margin-bottom: 0.3rem;
      font-weight: 700;
    }
    .modal-subtitle {
      text-align: center;
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }
    .booking-note {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      background: #FFF8E7;
      border: 1px solid #F0E0B8;
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: 1.5rem;
    }
    .booking-note span {
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .booking-note p {
      font-size: 0.8rem;
      color: #8B7355;
      line-height: 1.5;
      margin: 0;
      font-weight: 500;
    }
    .deposit-note {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-top: 0.5rem;
      margin-bottom: 0;
    }

    .payment-modal {
      max-width: 450px;
    }
    .payment-options {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .payment-option {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1.2rem 1.5rem;
      background: var(--cream);
      border: 2px solid var(--sand);
      border-radius: 15px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .payment-option:hover {
      border-color: var(--brown);
      background: var(--pink-light);
      transform: translateY(-2px);
    }
    .payment-icon {
      width: 60px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
    }
    .payment-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    .payment-icon.emoji {
      font-size: 2rem;
      width: 50px;
      background: none;
    }
    .payment-info h4 {
      font-size: 1.1rem;
      color: var(--text);
      margin: 0 0 0.3rem 0;
      font-weight: 700;
    }
    .payment-info p {
      font-size: 0.85rem;
      color: var(--text-light);
      margin: 0;
      font-weight: 500;
    }
    .payment-total {
      margin-top: 0.5rem;
      font-size: 1rem;
      color: var(--text);
      font-weight: 700;
    }
    .deposit-note-modal {
      font-size: 0.8rem;
      color: var(--text-light);
      text-align: center;
      margin-top: 1.5rem;
      font-style: italic;
    }

    .card-form {
      margin-top: 1.5rem;
    }
    .card-form .form-group {
      margin-bottom: 1rem;
    }
    .card-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .card-form input {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid var(--sand);
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 500;
    }
    .card-form input:focus {
      outline: none;
      border-color: var(--brown);
    }
    .payment-summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: var(--pink-light);
      border-radius: 10px;
      margin: 1.5rem 0;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .paypal-note {
      text-align: center;
      color: var(--text-light);
      font-size: 0.8rem;
      margin-top: 1rem;
    }
    .usd-note {
      text-align: center;
      color: var(--text-light);
      font-size: 0.85rem;
      margin-top: -0.5rem;
      margin-bottom: 1.5rem;
    }
    #paypal-button-container {
      min-height: 150px;
    }

    .confirm-payment-btn {
      width: 100%;
      padding: 1rem;
      background: #4CAF50;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1rem;
      transition: background 0.3s;
    }
    .confirm-payment-btn:hover {
      background: #3d8b40;
    }
    .confirm-payment-btn:disabled {
      background: #ccc;
      color: #888;
      cursor: not-allowed;
    }

    .qr-modal {
      max-width: 380px;
    }
    .qr-display {
      background: white;
      padding: 1.5rem;
      border-radius: 15px;
      margin: 1.5rem 0;
      text-align: center;
    }
    .qr-display img {
      max-width: 200px;
      width: 100%;
    }
    .qr-instruction {
      text-align: center;
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .qr-status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 1rem;
      background: #FFF8E7;
      border-radius: 10px;
      color: #8B7355;
      font-weight: 500;
    }
    .qr-status.success {
      background: #E8F5E9;
      color: #2E7D32;
    }
    .loading-spinner.small {
      width: 20px;
      height: 20px;
      border-width: 2px;
    }

    .loading-overlay {
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .loading-content {
      text-align: center;
    }
    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid var(--sand);
      border-top: 4px solid var(--brown);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 1.5rem;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .loading-content p {
      font-size: 1.1rem;
      color: var(--text);
      font-weight: 600;
    }

    .success-notification {
      position: fixed;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
      color: white;
      padding: 1rem 2rem;
      border-radius: 50px;
      box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
      z-index: 10000;
      transition: all 0.5s ease;
      opacity: 0;
    }
    .success-notification.show {
      top: 30px;
      opacity: 1;
    }
    .success-notification.fade-out {
      opacity: 0;
      top: -100px;
    }
    .success-content {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .success-content span {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .success-content p {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
    }
    .close-btn {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      background: var(--cream);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s;
    }
    .close-btn:hover { background: var(--sand); }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label {
      display: block;
      margin-bottom: 0.4rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text);
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 0.9rem 1rem;
      background: var(--cream);
      border: 2px solid transparent;
      border-radius: 10px;
      font-family: Montserrat, sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      transition: all 0.3s;
      font-weight: 500;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none;
      border-color: var(--beige-dark);
      background: white;
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .submit-btn {
      width: 100%;
      padding: 1.1rem;
      background: linear-gradient(135deg, var(--beige-dark) 0%, var(--brown) 100%);
      color: var(--text);
      border: none;
      border-radius: 12px;
      font-family: Montserrat, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
    }
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(169, 152, 128, 0.4);
    }

    .footer {
      background: var(--brown);
      color: white;
      padding: 3rem 5% 2rem;
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-logo {
      font-family: Cormorant Garamond, serif;
      font-size: 1.4rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-logo .logo-img {
      width: 32px;
      height: 32px;
      filter: brightness(0) invert(1);
    }
    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .footer-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
      font-weight: 500;
    }
    .footer-links a:hover { color: white; }
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .footer-content { flex-direction: column; text-align: center; }
      .contact-box { flex-direction: column; padding: 1.5rem; }
      .qr-container { padding: 2rem 1.5rem; }
      .reviews-grid { grid-template-columns: 1fr; }
      .highlights-grid { grid-template-columns: 1fr; }
      
      .packages-container {
        grid-template-columns: 1fr;
      }
      .package-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .program-details-mobile {
        display: block;
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      }
      .program-details-mobile .program-details-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--cream);
      }
      .program-details-mobile .program-details-header h3 {
        font-size: 1.5rem;
        color: var(--text);
        font-weight: 700;
      }
      .program-details-mobile .highlights-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .program-details-mobile .highlight-item {
        padding: 1.2rem;
        background: var(--cream);
        border-radius: 12px;
        border-left: 3px solid var(--brown);
      }
      .program-details-mobile .highlight-item h4 {
        font-size: 1rem;
        color: var(--text);
        margin-bottom: 0.5rem;
        font-family: Montserrat, sans-serif;
        font-weight: 700;
      }
      .program-details-mobile .highlight-item p {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.5;
        font-weight: 500;
      }
      
      .desktop-only {
        display: none !important;
      }
      
      .gallery-row.three-vertical {
        grid-template-columns: 1fr;
      }
      .gallery-row.two-horizontal {
        grid-template-columns: 1fr;
      }
      .video-row {
        grid-template-columns: 1fr;
      }
      .video-row .gallery-item.vertical {
        aspect-ratio: 3/4;
      }
      
      .floating-book-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
      }
      
      .qr-codes-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
      }
      .qr-code-card img {
        width: 150px;
      }
      
      .success-notification {
        left: 10%;
        right: 10%;
        transform: none;
        padding: 0.8rem 1rem;
      }
      .success-content p {
        font-size: 0.85rem;
      }
      
      .feature-image-section {
        grid-template-columns: 1fr;
      }
      .feature-content {
        padding: 2rem;
      }
      .feature-image {
        height: 300px;
      }
      
      .info-with-image {
        grid-template-columns: 1fr;
      }
      .info-image {
        min-height: 300px;
        order: -1;
      }
      
      .qr-video-grid {
        grid-template-columns: 1fr;
      }
      .qr-video {
        max-height: 400px;
        margin: 0 auto;
        width: 80%;
      }
      
      .video-banner {
        height: 50vh;
        min-height: 300px;
      }
    }
  