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

  :root {
    --primary: #1a5f3f;
    --primary-light: #2d8659;
    --accent: #d4af37;
    --dark: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #666;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: white;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }

  @media print {
    body {
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
      margin: 0;
      padding: 0 !important;
      padding-top: 0 !important;
      background: white !important;
    }

    .page {
      page-break-after: always;
      page-break-inside: avoid;
      margin: 0 !important;
      width: 210mm !important;
      height: 297mm !important;
      max-height: 297mm !important;
      overflow: hidden !important;
    }

    .page:last-of-type {
      page-break-after: auto;
    }

    .no-break {
      page-break-inside: avoid;
    }
  }

  @page {
    size: A4 portrait;
    margin: 0;
  }

  .page {
    width: 210mm;
    height: 297mm;
    max-height: 297mm;
    margin: 0 auto;
    background: white;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media screen {
    .page {
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
  }

  .cover-page {
    background: linear-gradient(135deg, #0f3d27 0%, #1a5f3f 50%, #2d8659 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 40px;
    overflow: hidden;
  }

  .cover-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.2), transparent 40%);
  }

  /* ===== Cover Page Video Background ===== */
  .cover-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .cover-video-bg iframe,
  .cover-video-bg video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cover-video-bg .cover-photo-animated {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    animation: kenBurns 16s ease-in-out infinite;
    transform-origin: center center;
  }
  @keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
  }
  /* Dark overlay on video for readability */
  .cover-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,61,39,0.45), rgba(26,95,63,0.40));
    z-index: 1;
  }

  /* Fallback particle canvas (shown if video fails) */
  .cover-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  /* Animated shine on title */
  .cover-title {
    position: relative;
    background: linear-gradient(90deg, white 0%, white 35%, #ffd700 50%, white 65%, white 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
  }
  @keyframes titleShine {
    0% { background-position: 300% center; }
    100% { background-position: -300% center; }
  }

  /* Cover badge glow */
  .cover-badge {
    animation: badgeGlow 2s ease-in-out infinite alternate;
  }
  @keyframes badgeGlow {
    0% { box-shadow: 0 0 10px rgba(212,175,55,0.2); }
    100% { box-shadow: 0 0 25px rgba(212,175,55,0.5), 0 0 50px rgba(212,175,55,0.2); }
  }

  /* Stats pop-in */
  .stat-number {
    animation: statPop 0.6s ease-out both;
  }
  .cover-stats .stat:nth-child(1) .stat-number { animation-delay: 0.3s; }
  .cover-stats .stat:nth-child(2) .stat-number { animation-delay: 0.6s; }
  .cover-stats .stat:nth-child(3) .stat-number { animation-delay: 0.9s; }
  @keyframes statPop {
    0% { opacity: 0; transform: translateY(20px) scale(0.8); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Sparkle stars */
  .sparkle {
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  .sparkle::before, .sparkle::after {
    content: '';
    position: absolute;
    background: #d4af37;
  }
  .sparkle::before {
    width: 2px; height: 14px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .sparkle::after {
    width: 14px; height: 2px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .sparkle {
    animation: sparklePop 2.5s ease-in-out infinite;
  }
  @keyframes sparklePop {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(45deg); }
  }

  .cover-content {
    position: relative;
    z-index: 1;
  }

  .cover-badge {
    background: rgba(212,175,55,0.3);
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    display: inline-block;
  }

  .cover-title {
    font-size: 84px;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .cover-subtitle {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 300;
  }

  .cover-location {
    font-size: 18px;
    color: #f4d77d;
    margin-bottom: 55px;
  }

  .cover-stats {
    display: flex;
    gap: 70px;
    justify-content: center;
    margin-bottom: 45px;
  }

  .stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    font-family: 'Playfair Display', serif;
  }

  .stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-top: 10px;
  }

  .content-page {
    padding: 40px 45px 35px 45px;
    height: 297mm;
    max-height: 297mm;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
  }

  .page-badge {
    background: var(--primary);
    color: white;
    padding: 9px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
  }

  .page-title {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 12px;
  }

  .page-subtitle {
    font-size: 18px;
    color: var(--text-light);
  }

  .intro-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text);
  }


  .detail-box {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
  }

  .detail-box h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .detail-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
  }

  .icon {
    font-size: 22px;
  }

  .two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-header {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .category-header:first-child {
    margin-top: 0;
  }

  .highlight-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f3d27 100%);
    color: white;
    padding: 40px 45px 35px 45px;
  }

  .highlight-section .page-badge {
    background: var(--accent);
    color: var(--dark);
  }

  .highlight-section .page-title,
  .highlight-section .page-subtitle {
    color: white;
  }

  .highlight-section .page-header {
    border-bottom-color: var(--accent);
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 24px;
    margin-bottom: 22px;
  }

  .highlight-item {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 18px 15px;
    text-align: center;
  }

  .highlight-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
  }

  .highlight-text {
    font-size: 15px;
    font-weight: 500;
  }

  .page-footer {
    text-align: center;
    padding-top: 18px;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 15px;
    color: var(--text-light);
    position: absolute;
    bottom: 28px;
    left: 45px;
    right: 45px;
  }

  .highlight-section .page-footer {
    border-top-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
  }

  @media print {
    .page-footer {
      position: absolute;
      bottom: 28px;
      left: 45px;
      right: 45px;
      margin-top: 0;
    }
  }

  .highlight-section .page-footer {
    border-top-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
  }

  .page-action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 24px;
    flex-wrap: wrap;
  }
  .page-action-buttons button {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-save-pdf {
    background: linear-gradient(135deg, var(--accent), #c4a030);
    color: var(--dark);
    box-shadow: 0 4px 18px rgba(212,175,55,0.4);
  }
  .btn-save-pdf:hover {
    background: linear-gradient(135deg, #e0c050, var(--accent));
    box-shadow: 0 6px 24px rgba(212,175,55,0.5);
    transform: translateY(-2px);
  }
  .btn-inquire {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  }
  .btn-inquire:hover {
    background: linear-gradient(135deg, #2be075, #25d366);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transform: translateY(-2px);
  }
  .btn-inquire svg { width: 20px; height: 20px; fill: white; }

  /* Inquiry Popup */
  .inquiry-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
  }
  .inquiry-popup-overlay.open { display: flex; }
  .inquiry-popup {
    background: linear-gradient(135deg, #0f3d27, #1a5f3f);
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow-y: auto;
  }
  .inquiry-popup .popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .inquiry-popup .popup-close:hover { opacity: 1; }
  .inquiry-popup h2 {
    color: var(--accent);
    font-size: 24px;
    text-align: center;
    margin-bottom: 6px;
  }
  .inquiry-popup p {
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .inquiry-popup .inquiry-form input,
  .inquiry-popup .inquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    margin-bottom: 12px;
    box-sizing: border-box;
    transition: border-color 0.3s;
  }
  .inquiry-popup .inquiry-form input::placeholder,
  .inquiry-popup .inquiry-form textarea::placeholder { color: rgba(255,255,255,0.4); }
  .inquiry-popup .inquiry-form input:focus,
  .inquiry-popup .inquiry-form textarea:focus { outline: none; border-color: var(--accent); }
  .inquiry-popup .inquiry-form textarea { resize: vertical; min-height: 80px; }

  @media print {
    .page-action-buttons { display: none !important; }
    .inquiry-popup-overlay { display: none !important; }
    .cover-video-bg, .cover-video-overlay, .cover-canvas { display: none !important; }
    .video-page { display: none !important; }
    .web-sections, .web-sections-bg, .site-nav, .admin-panel-overlay, .lightbox {
      display: none !important;
    }
  }

  .special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
  }

  .special-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
  }

  .special-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    color: white;
  }

  .special-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
  }

  .special-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
  }

  /* ===== Navigation Bar ===== */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f3d27, #1a5f3f);
    z-index: 999;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  }
  .site-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .site-nav a:hover, .site-nav a.active {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
  }
  .site-nav .admin-btn {
    background: rgba(212,175,55,0.2);
    border-color: var(--accent);
    color: var(--accent);
  }
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-links { display: contents; }
  .nav-brand { display: none; }
  body { padding-top: 55px; background: #0f3d27; }
  [id] { scroll-margin-top: 60px; }

  /* ===== Web Sections Common ===== */
  .web-sections-bg {
    background: white;
  }
  .web-sections {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-block {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
  }
  .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 40px;
  }

  /* ===== Photo Gallery Grid ===== */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .photo-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    background: #f8f9fa;
    transition: transform 0.3s;
  }
  .photo-card:hover { transform: translateY(-4px); }
  .photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  .photo-card .caption {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text);
  }
  .photo-card .caption .date {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
  }
  .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 15px;
  }

  /* ===== Testimonials ===== */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .testimonial-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  .testimonial-card .quote {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
  }
  .testimonial-card .quote::before { content: '\201C'; font-size: 28px; color: var(--accent); line-height: 0; vertical-align: -8px; margin-right: 4px; }
  .testimonial-card .quote::after { content: '\201D'; font-size: 28px; color: var(--accent); line-height: 0; vertical-align: -8px; margin-left: 4px; }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
  }
  .testimonial-author .no-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
  }
  .testimonial-author .info { font-size: 13px; }
  .testimonial-author .info strong { color: var(--primary); }
  .testimonial-author .info span { display: block; color: var(--text-light); font-size: 12px; }
  .testimonial-stars { color: var(--accent); margin-bottom: 10px; font-size: 16px; }

  /* ===== Inquiry Panel ===== */
  .inquiry-section {
    background: linear-gradient(135deg, #0f3d27, #1a5f3f);
    padding: 60px 20px;
    margin: 0 -20px;
    border-radius: 0;
  }
  .inquiry-section .section-title, .inquiry-section .section-subtitle {
    color: white;
  }
  .inquiry-section .section-subtitle { color: rgba(255,255,255,0.8); }
  .inquiry-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .inquiry-form input, .inquiry-form textarea {
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
    transition: border-color 0.3s;
  }
  .inquiry-form input::placeholder, .inquiry-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
  }
  .inquiry-form input:focus, .inquiry-form textarea:focus {
    border-color: var(--accent);
  }
  .inquiry-form textarea { resize: vertical; min-height: 100px; }
  .whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
  }
  .whatsapp-btn:hover { background: #1ebe57; }
  .whatsapp-btn svg { width: 22px; height: 22px; fill: white; }

  /* ===== Admin Panel ===== */
  .admin-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
  }
  .admin-panel-overlay.open { display: flex; justify-content: center; align-items: flex-start; }
  .admin-panel {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    padding: 30px;
    position: relative;
  }
  .admin-panel h2 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 28px; margin-bottom: 20px; }
  .admin-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
  }
  .admin-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .admin-tabs button {
    padding: 8px 18px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .admin-tabs button.active { background: var(--primary); color: white; }
  .admin-tab-content { display: none; }
  .admin-tab-content.active { display: block; }
  .admin-form { display: flex; flex-direction: column; gap: 14px; }
  .admin-form label { font-weight: 600; font-size: 13px; color: var(--text); }
  .admin-form input, .admin-form textarea, .admin-form select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
  }
  .admin-form textarea { resize: vertical; min-height: 80px; }
  .admin-submit {
    background: var(--primary);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  .admin-submit:hover { background: var(--primary-light); }
  .admin-items { margin-top: 20px; }
  .admin-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .admin-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; }
  .admin-item .info { flex: 1; font-size: 13px; }
  .admin-item .delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
  }
  .login-form {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  .login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
  }
  .login-form button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
  }
  .login-error { color: #e74c3c; font-size: 13px; margin-top: 8px; display: none; }

  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; }

  /* ===== Video Section ===== */
  .video-container {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,0,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s;
    padding-left: 5px;
  }
  .video-container:hover .video-play-btn {
    background: rgba(255,0,0,1);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .video-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* ===== Contact Page ===== */
  .contact-page {
    background: linear-gradient(135deg, #0f3d27 0%, #1a5f3f 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 60px;
    text-align: center;
    box-sizing: border-box;
  }
  .contact-inner { max-width: 750px; width: 100%; }
  .contact-brand { margin-bottom: 55px; }
  .contact-title { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700; margin-bottom: 18px; color: #d4af37; }
  .contact-sub { font-size: 26px; font-weight: 300; margin-bottom: 12px; }
  .contact-tagline { font-size: 19px; color: #f4d77d; }
  .contact-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 22px;
    padding: 45px;
    margin-bottom: 55px;
  }
  .contact-details { font-size: 20px; line-height: 1.9; }
  .contact-item { margin-bottom: 18px; }
  .contact-item:last-child { margin-bottom: 0; }
  .contact-footer { padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.3); }
  .contact-footer p { font-size: 16px; opacity: 0.9; margin-bottom: 12px; }
  .contact-footer-sub { font-size: 15px !important; opacity: 0.7; }

  /* ===== Carousel ===== */
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.4s ease;
  }
  .carousel-track .photo-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    margin: 0;
    box-sizing: border-box;
    padding: 0 8px;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-btn:hover { background: var(--primary-light); }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }
  .carousel-dot.active { background: var(--primary); }

  /* ===== Mobile Responsive ===== */
  @media screen and (max-width: 768px) {
    body { padding-top: 48px; }

    .hamburger { display: block; }
    .site-nav {
      padding: 12px 16px;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, #0f3d27, #1a5f3f);
      padding: 12px 16px;
      gap: 6px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    .nav-links.open { display: flex; }
    .site-nav a {
      padding: 10px 16px;
      font-size: 14px;
      text-align: left;
      border-radius: 8px;
    }
    .site-nav .nav-brand {
      color: var(--accent);
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      border: none;
      padding: 0;
    }
    .site-nav .nav-brand:hover { background: none; }
    .nav-brand { display: block !important; margin: 0 auto; }

    /* Brochure pages: remove fixed A4 sizing on mobile */
    .page {
      width: 100%;
      height: auto;
      max-height: none;
      overflow: visible;
    }
    .content-page {
      padding: 24px 16px 50px 16px;
      height: auto;
      max-height: none;
      overflow: visible;
    }
    .highlight-section {
      padding: 24px 16px 50px 16px;
    }
    .cover-page {
      padding: 40px 20px;
    }
    .cover-title { font-size: 48px; }
    .cover-subtitle { font-size: 20px; }
    .cover-location { font-size: 14px; margin-bottom: 30px; }
    .cover-stats { gap: 24px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
    .stat-number { font-size: 36px; }
    .stat-label { font-size: 13px; }
    .cover-badge { font-size: 10px; padding: 8px 18px; letter-spacing: 1px; margin-bottom: 20px; }

    .page-header { margin-bottom: 16px; padding-bottom: 10px; }
    .page-badge { padding: 6px 16px; font-size: 10px; margin-bottom: 10px; }
    .page-title { font-size: 28px !important; margin-bottom: 8px; }
    .page-subtitle { font-size: 14px !important; }
    .intro-text { font-size: 14px !important; line-height: 1.6 !important; }

    .detail-box { padding: 12px 14px; margin-bottom: 10px; }
    .detail-box h3 { font-size: 15px; gap: 8px; }
    .detail-box p { font-size: 13px; }
    .icon { font-size: 18px; }

    .special-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .special-card { padding: 16px 14px !important; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .highlight-item { padding: 10px 8px !important; }
    .highlight-icon { font-size: 24px !important; }
    .highlight-text { font-size: 11px !important; }

    .page-footer {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      font-size: 12px;
      padding-top: 12px;
      margin-top: 20px;
    }

    /* Contact page mobile */
    .contact-page {
      padding: 30px 16px !important;
      height: auto !important;
      max-height: none !important;
    }
    .contact-inner { max-width: 100%; }
    .contact-brand { margin-bottom: 28px; }
    .contact-title { font-size: 36px; margin-bottom: 10px; }
    .contact-sub { font-size: 17px; margin-bottom: 8px; }
    .contact-tagline { font-size: 14px; }
    .contact-card { padding: 20px; margin-bottom: 28px; border-radius: 16px; }
    .contact-details { font-size: 15px; line-height: 1.7; }
    .contact-item { margin-bottom: 14px; }
    .contact-footer { padding-top: 20px; }
    .contact-footer p { font-size: 13px; }
    .contact-footer-sub { font-size: 12px !important; }

    /* Web sections */
    .section-block { padding: 36px 0; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 13px; margin-bottom: 24px; }
    .web-sections { padding: 0 12px; }

    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 18px; }

    .inquiry-section { padding: 36px 16px; margin: 0 -12px; }
    .inquiry-form input, .inquiry-form textarea { font-size: 14px; padding: 12px 14px; }
    .whatsapp-btn { font-size: 15px; padding: 14px; }

    /* Carousel: 1 photo at a time on mobile */
    .carousel-track .photo-card {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0 4px;
    }
    .carousel-btn { width: 36px; height: 36px; font-size: 16px; }

    /* Admin panel mobile */
    .admin-panel { padding: 20px 16px; }
    .admin-panel h2 { font-size: 22px; }
    .admin-tabs { gap: 4px; }
    .admin-tabs button { padding: 6px 12px; font-size: 11px; }

    .page-action-buttons { gap: 10px; }
    .page-action-buttons button { padding: 12px 22px; font-size: 13px; }
    .inquiry-popup { padding: 28px 20px; }
  }

  @media screen and (max-width: 480px) {
    .cover-title { font-size: 38px; }
    .cover-stats { gap: 16px; }
    .stat-number { font-size: 30px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .site-nav a { padding: 5px 9px; font-size: 10px; }
  }

  /* Tablet: 2 photos in carousel */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .carousel-track .photo-card {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }


  /* ===== Personalized Page (collapsed until photos added) ===== */
  #personalizedPage {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    margin: 0;
    opacity: 0;
  }
  #personalizedPage.has-photos {
    max-height: none;
    padding: 40px 45px 35px 45px;
    overflow: hidden;
    opacity: 1;
  }

  /* Floating print bar */
  .floating-print-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f3d27, #1a5f3f);
    color: white;
    padding: 14px 20px;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    flex-wrap: wrap;
    text-align: center;
  }
  .floating-print-bar.visible { display: flex; }
  .floating-print-bar span {
    font-size: 14px;
    font-weight: 500;
  }
  .floating-print-bar button {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    background: var(--accent);
    color: var(--dark);
  }
  .floating-print-bar .dismiss-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
  }

  /* ===== Personalized PDF / Camera Capture ===== */
  .pdf-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .pdf-photo-slot {
    aspect-ratio: 4/3;
    border: 2px dashed #ccc;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #f8f9fa;
    transition: border-color 0.3s;
  }
  .pdf-photo-slot:hover { border-color: var(--primary); }
  .pdf-photo-slot.has-photo { border-style: solid; border-color: var(--primary); }
  .pdf-slot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
  }
  .pdf-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pdf-photo-slot .pdf-photo-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(231,76,60,0.9);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .pdf-photo-slot.has-photo .pdf-photo-remove { display: flex; }
  .pdf-photo-slot.has-photo .pdf-slot-placeholder { display: none; }

  /* Loading & ready indicators */
  .pdf-slot-loading, .pdf-slot-ready {
    display: none;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
  }
  .pdf-slot-loading {
    background: rgba(255,165,0,0.9);
    color: white;
    animation: pulseFade 1s ease-in-out infinite;
  }
  @keyframes pulseFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  .pdf-slot-ready {
    background: rgba(39,174,96,0.9);
    color: white;
    font-size: 14px;
  }
  .pdf-photo-slot.loading .pdf-slot-placeholder { display: none; }
  .pdf-photo-slot.loading .pdf-slot-loading { display: block; }
  .pdf-photo-slot.has-photo .pdf-slot-loading { display: none; }
  .pdf-photo-slot.has-photo .pdf-slot-ready { display: block; }

  /* PDF status message */
  .pdf-status {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    min-height: 20px;
  }
  .pdf-status.ready { color: #27ae60; font-weight: 600; }
  .pdf-status.loading { color: #e67e22; }

  /* Camera viewfinder */
  .camera-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: black;
  }
  .camera-container video {
    width: 100%;
    display: block;
    border-radius: 12px;
  }
  .camera-capture-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    background: rgba(255,255,255,0.3);
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
  }
  .camera-capture-btn:hover { background: rgba(255,255,255,0.5); transform: translateX(-50%) scale(1.1); }
  .camera-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Personalized brochure page - photo layout */
  .personalized-photos {
    display: grid;
    gap: 16px;
    margin-top: 10px;
  }
  .personalized-photos.photos-1 {
    grid-template-columns: 1fr;
  }
  .personalized-photos.photos-1 img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
  }
  .personalized-photos.photos-2 {
    grid-template-columns: 1fr 1fr;
  }
  .personalized-photos.photos-2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }
  .personalized-photos.photos-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .personalized-photos.photos-3 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }
  .personalized-photos.photos-3 img:first-child {
    grid-column: 1 / -1;
    height: 280px;
  }

  @media screen and (max-width: 768px) {
    .pdf-photo-grid { grid-template-columns: 1fr; }
    .personalized-photos.photos-2 { grid-template-columns: 1fr; }
    .personalized-photos.photos-2 img { height: 200px; }
    .personalized-photos.photos-3 { grid-template-columns: 1fr; }
    .personalized-photos.photos-3 img { height: 180px; }
    .personalized-photos.photos-3 img:first-child { grid-column: auto; height: 200px; }
  }

  /* ===== PRINT OVERRIDES (must be last to win specificity on mobile) ===== */
  @media print {
    /* Reset mobile layout back to fixed A4 for ALL pages */
    body {
      padding-top: 0 !important;
      background: white !important;
    }
    .page {
      width: 210mm !important;
      height: 297mm !important;
      max-height: 297mm !important;
      overflow: hidden !important;
      page-break-after: always !important;
      page-break-inside: avoid !important;
      margin: 0 !important;
      box-shadow: none !important;
    }
    .page:last-of-type {
      page-break-after: auto !important;
    }
    .content-page {
      padding: 40px 45px 35px 45px !important;
      height: 297mm !important;
      max-height: 297mm !important;
      overflow: hidden !important;
    }
    .highlight-section {
      padding: 40px 45px 35px 45px !important;
    }
    .cover-page {
      padding: 50px 40px !important;
    }
    .contact-page {
      padding: 70px 60px !important;
      height: 297mm !important;
      max-height: 297mm !important;
    }

    /* Reset mobile font/layout overrides */
    .page-title { font-size: 46px !important; }
    .page-subtitle { font-size: 18px !important; }
    .intro-text { font-size: 17px !important; line-height: 1.7 !important; }
    .cover-title { font-size: 84px !important; }
    .cover-subtitle { font-size: 28px !important; }
    .cover-location { font-size: 18px !important; margin-bottom: 55px !important; }
    .cover-badge { font-size: 13px !important; padding: 10px 30px !important; letter-spacing: 2px !important; margin-bottom: 35px !important; }
    .cover-stats { gap: 70px !important; margin-bottom: 45px !important; }
    .stat-number { font-size: 56px !important; }
    .stat-label { font-size: 16px !important; }
    .special-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .highlights-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
    .highlight-item { padding: 13px 11px !important; }
    .highlight-icon { font-size: 30px !important; }
    .highlight-text { font-size: 13px !important; }
    .detail-box { padding: 16px 18px !important; }
    .detail-box h3 { font-size: 18px !important; }
    .detail-box p { font-size: 14px !important; }
    .page-footer {
      position: absolute !important;
      bottom: 28px !important;
      left: 45px !important;
      right: 45px !important;
      font-size: 15px !important;
    }
    .contact-title { font-size: 64px !important; }
    .contact-sub { font-size: 26px !important; }
    .contact-card { padding: 45px !important; }
    .contact-details { font-size: 20px !important; }


    /* Personalized page: hide in print when no photos, show when has photos */
    #personalizedPage {
      max-height: 0 !important;
      padding: 0 !important;
      overflow: hidden !important;
      opacity: 0 !important;
      height: 0 !important;
    }
    #personalizedPage.has-photos {
      max-height: 297mm !important;
      height: 297mm !important;
      padding: 40px 45px 35px 45px !important;
      overflow: hidden !important;
      opacity: 1 !important;
    }

    /* Hide non-print elements */
    .site-nav, .web-sections, .web-sections-bg, .admin-panel-overlay,
    .inquiry-popup-overlay, .lightbox, .page-action-buttons,
    .cover-video-bg, .cover-video-overlay, .cover-canvas,
    .video-page, .camera-container, .floating-print-bar { display: none !important; }
  }