    body {
      box-sizing: border-box;
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }
    
    .hero-slider {
      position: relative;
      overflow: hidden;
      touch-action: pan-y;
      user-select: none;
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding: 0;
    }
    
    .slider-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
    }
    
    .slider-slide {
      width: 100%;
      min-width: 100%;
      height: 100%;
      position: relative;
      flex-shrink: 0;
      flex-grow: 0;
      margin: 0;
      padding: 0;
    }
    
    .slider-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      margin: 0;
      padding: 0;
    }
    
    .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }
    
    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }
    
    .slider-dot.active {
      background: white;
      transform: scale(1.2);
    }
    
    .slider-counter {
      position: absolute;
      top: 24px;
      right: 24px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      z-index: 10;
      backdrop-filter: blur(4px);
    }
    
    .slider-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #333;
      z-index: 10;
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .slider-nav-btn:hover {
      background: white;
      transform: translateY(-50%) scale(1.1);
    }
    
    .slider-nav-btn.prev {
      left: 24px;
    }
    
    .slider-nav-btn.next {
      right: 24px;
    }
    
    .floating-cta {
      position: fixed;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .floating-cta.bottom {
      bottom: 20px;
    }
    
    .cta-button {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .cta-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    
    .cta-button.phone {
      background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    }
    
    .cta-button.whatsapp {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    
    .room-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .room-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    
    .gallery-item {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .modal.active {
      display: flex;
    }
    
    .lightbox-container {
      max-width: 1200px;
      width: 100%;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .lightbox-image {
      max-width: 100%;
      max-height: 85vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
    }
    
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #333;
      transition: all 0.3s;
      z-index: 10;
    }
    
    .lightbox-nav:hover {
      background: white;
      transform: translateY(-50%) scale(1.1);
    }
    
    .lightbox-nav.prev {
      left: 20px;
    }
    
    .lightbox-nav.next {
      right: 20px;
    }
    
    .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 600;
      backdrop-filter: blur(4px);
    }
    
    .modal-content {
      max-width: 1000px;
      width: 100%;
      background: white;
      border-radius: 20px;
      padding: 32px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }
    
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f5f5f5;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #333;
      transition: all 0.3s;
    }
    
    .modal-close:hover {
      background: #e0e0e0;
      transform: rotate(90deg);
    }
    
    /* Custom Calendar Styles */
    .custom-calendar-wrapper {
      position: relative;
      width: 100%;
    }
    
    .calendar-input {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #E0E0E0;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      background: white;
      transition: border-color 0.3s;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .calendar-input:hover {
      border-color: #2E7D32;
    }
    
    .calendar-input.active {
      border-color: #2E7D32;
    }
    
    .calendar-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 2px solid #2E7D32;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      margin-top: 8px;
      display: none;
      padding: 16px;
      max-width: 100%;
      overflow: hidden;
    }
    
    .calendar-dropdown.active {
      display: block;
    }
    
    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      gap: 12px;
    }
    
    .calendar-month-year {
      font-weight: 600;
      color: #1B5E20;
      font-size: 16px;
      flex: 1;
      text-align: center;
    }
    
    .calendar-nav-btn {
      width: 32px;
      height: 32px;
      border: none;
      background: #E8F5E9;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2E7D32;
      transition: all 0.3s;
      flex-shrink: 0;
    }
    
    .calendar-nav-btn:hover {
      background: #2E7D32;
      color: white;
    }
    
    .calendar-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      margin-bottom: 8px;
    }
    
    .calendar-weekday {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: #666;
      padding: 8px 4px;
    }
    
    .calendar-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      width: 100%;
    }
    
    .calendar-day {
      aspect-ratio: 1;
      border: none;
      background: white;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all 0.2s;
      position: relative;
      padding: 4px;
      min-height: 36px;
      max-width: 100%;
      box-sizing: border-box;
    }
    
    .calendar-day:not(.empty):not(.disabled):not(.blocked):hover {
      background: #E8F5E9;
      transform: scale(1.05);
    }
    
    .calendar-day.empty {
      cursor: default;
      visibility: hidden;
    }
    
    .calendar-day.disabled {
      color: #ccc;
      cursor: not-allowed;
      background: #f5f5f5;
    }
    
    .calendar-day.available {
      background: #E8F5E9;
      color: #1B5E20;
      font-weight: 600;
    }
    
    .calendar-day.blocked {
      background: #E0E0E0;
      color: #757575;
      cursor: not-allowed;
      position: relative;
    }
    
    .calendar-day.blocked::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 10%;
      right: 10%;
      height: 2px;
      background: #757575;
      transform: translateY(-50%) rotate(-45deg);
    }
    
    .calendar-day.selected {
      background: #1B5E20 !important;
      color: white !important;
      font-weight: 700;
      transform: scale(1.05);
    }
    
    .calendar-day.today {
      border: 2px solid #2E7D32;
    }
    
    .calendar-legend {
      display: flex;
      gap: 16px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #E0E0E0;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .calendar-legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #666;
    }
    
    .calendar-legend-box {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      flex-shrink: 0;
    }
    
    .toast {
      position: fixed;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      background: #2E7D32;
      color: white;
      padding: 16px 24px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 3000;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .toast.show {
      opacity: 1;
    }
    
    .captcha-container {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: #F5F5F5;
      border: 2px solid #E0E0E0;
      border-radius: 8px;
      margin-bottom: 16px;
    }
    
    .captcha-text {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 8px;
      color: #333;
      background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 50%, #2E7D32 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: line-through;
      text-decoration-color: rgba(46, 125, 50, 0.3);
      user-select: none;
      font-family: 'Courier New', monospace;
      font-style: italic;
      transform: skewX(-5deg);
    }
    
    .captcha-refresh {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: white;
      border: 2px solid #2E7D32;
      color: #2E7D32;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s;
      flex-shrink: 0;
    }
    
    .captcha-refresh:hover {
      background: #2E7D32;
      color: white;
      transform: rotate(180deg);
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1B5E20;
    }
    
    .amenity-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: #E8F5E9;
      border-radius: 20px;
      font-size: 14px;
      color: #2E7D32;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 16px;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    }
    
    .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }
    
    .btn-secondary {
      background: white;
      color: #2E7D32;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      border: 2px solid #2E7D32;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 16px;
    }
    
    .btn-secondary:hover {
      background: #2E7D32;
      color: white;
    }
    
    .form-input {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #E0E0E0;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s;
      font-family: 'Inter', sans-serif;
    }
    
    .form-input:focus {
      outline: none;
      border-color: #2E7D32;
    }
    
    .testimonial-card {
      background: white;
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.75rem;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
      }
      
      .modal-content {
        padding: 20px;
        margin: 10px;
      }
      
      .floating-cta {
        right: 10px;
        bottom: 10px;
      }
      
      .cta-button {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }
      
      .slider-nav-btn {
        display: none;
      }
      
      .slider-counter {
        top: 18px;
        right: 12px;
        padding: 4px 10px;
        font-size: 11px;
      }
      
      .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
      }
      
      .lightbox-nav.prev {
        left: 8px;
      }
      
      .lightbox-nav.next {
        right: 8px;
      }
      
      .lightbox-counter {
        font-size: 13px;
        padding: 6px 14px;
        bottom: 10px;
      }
      
      .desktop-nav {
        display: none !important;
      }
      
      .mobile-menu-toggle {
        display: block !important;
      }
      
      .mobile-book-btn {
        display: inline-flex !important;
      }
      
      nav h1 {
        font-size: 16px !important;
      }
      
      nav .fa-home {
        font-size: 20px !important;
      }
      
      .room-card {
        margin: 0 auto;
      }
      
    }
    
    @media (max-width: 480px) {
      .section-title {
        font-size: 1.5rem;
      }
      
      .calendar-dropdown {
        padding: 10px;
      }
      
      .calendar-day {
        font-size: 11px;
        min-height: 28px;
      }
      
      .calendar-weekday {
        font-size: 10px;
        padding: 4px 1px;
      }
      
      .calendar-month-year {
        font-size: 13px;
      }
      
      .calendar-legend {
        gap: 8px;
      }
      
      .calendar-legend-item {
        font-size: 10px;
      }
      
      .calendar-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 6px;
      }
      
      nav h1 {
        font-size: 16px !important;
      }
      
      nav .fa-home {
        font-size: 18px !important;
      }
      
      .mobile-book-btn {
        padding: 6px 12px;
        font-size: 12px;
      }
      
      .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
      }
      
      .modal-content {
        padding: 16px;
        margin: 8px;
      }
      
      
      .room-card {
        max-width: 400px;
      }
    }
    
    @media (max-width: 360px) {
      .section-title {
        font-size: 1.35rem;
        line-height: 1.3;
        padding: 0 8px;
      }
      
      nav h1 {
        font-size: 16px !important;
        line-height: 1.2;
      }
      
      nav .fa-home {
        font-size: 16px !important;
      }
      
      .mobile-book-btn {
        padding: 5px 10px;
        font-size: 11px;
      }
      
      .calendar-dropdown {
        padding: 8px;
      }
      
      .calendar-day {
        font-size: 10px;
        min-height: 26px;
        padding: 2px;
      }
      
      .calendar-weekday {
        font-size: 9px;
        padding: 3px 0;
      }
      
      .calendar-month-year {
        font-size: 12px;
      }
      
      .calendar-nav-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
      }
      
      .calendar-legend {
        flex-direction: column;
        gap: 6px;
      }
      
      .calendar-legend-item {
        font-size: 9px;
      }
      
      .calendar-legend-box {
        width: 14px;
        height: 14px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 4px;
      }
      
      .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
      }
      
      .form-input {
        padding: 10px 12px;
        font-size: 14px;
      }
      
      .modal-content {
        padding: 12px;
        margin: 6px;
        max-height: 95vh;
      }
      
      .modal-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 8px;
        right: 8px;
      }
      
      .amenity-tag {
        font-size: 11px;
        padding: 6px 10px;
      }
      
      .cta-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
      }
      
      .floating-cta {
        right: 8px;
        bottom: 8px;
        gap: 8px;
      }
      
      .slider-counter {
        top: 18px;
        right: 8px;
        padding: 3px 8px;
        font-size: 10px;
      }
      
      .slider-dots {
        bottom: 15px;
        gap: 6px;
      }
      
      .slider-dot {
        width: 6px;
        height: 6px;
      }
      
      .lightbox-nav {
        width: 32px;
        height: 32px;
        font-size: 16px;
      }
      
      .lightbox-nav.prev {
        left: 5px;
      }
      
      .lightbox-nav.next {
        right: 5px;
      }
      
      .lightbox-counter {
        font-size: 12px;
        padding: 5px 12px;
        bottom: 8px;
      }
      
      .captcha-text {
        font-size: 18px;
        letter-spacing: 5px;
      }
      
      .captcha-refresh {
        width: 32px;
        height: 32px;
        font-size: 16px;
      }
      
      .captcha-container {
        padding: 10px 12px;
      }
      
      .room-card {
        max-width: 350px;
      }
      
      .room-card > div:first-child {
        height: 180px;
      }
      
      .room-card img {
        height: 180px;
      }
      
      .room-card > div:last-child {
        padding: 16px !important;
      }
      
      .room-card h3 {
        font-size: 1.4rem !important;
      }
      
      .testimonial-card {
        padding: 20px !important;
      }
      
      nav {
        padding: 12px 16px !important;
      }
      
      nav > div {
        padding: 0 !important;
      }
    }
    
    @media (max-width: 320px) {
      .section-title {
        font-size: 1.25rem;
        line-height: 1.2;
        padding: 0 5px;
      }
      
      nav h1 {
        font-size: 16px !important;
        line-height: 1.2;
      }
      
      nav .fa-home {
        font-size: 14px !important;
      }
      
      nav {
        padding: 10px 12px !important;
      }
      
      .mobile-book-btn {
        padding: 4px 8px;
        font-size: 10px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 3px;
      }
      
      .btn-primary, .btn-secondary {
        padding: 9px 14px;
        font-size: 12px;
      }
      
      .form-input {
        padding: 9px 10px;
        font-size: 13px;
      }
      
      .modal-content {
        padding: 10px;
        margin: 5px;
        max-height: 96vh;
      }
      
      .modal-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
        top: 6px;
        right: 6px;
      }
      
      .amenity-tag {
        font-size: 10px;
        padding: 5px 8px;
      }
      
      .cta-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
      
      .floating-cta {
        right: 6px;
        bottom: 6px;
        gap: 6px;
      }
      
      .slider-counter {
        top: 18px;
        right: 6px;
        padding: 2px 6px;
        font-size: 9px;
      }
      
      .slider-dots {
        bottom: 12px;
        gap: 4px;
      }
      
      .slider-dot {
        width: 5px;
        height: 5px;
      }
      
      .lightbox-nav {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }
      
      .lightbox-nav.prev {
        left: 3px;
      }
      
      .lightbox-nav.next {
        right: 3px;
      }
      
      .lightbox-counter {
        font-size: 11px;
        padding: 4px 10px;
        bottom: 6px;
      }
      
      .captcha-text {
        font-size: 16px;
        letter-spacing: 4px;
      }
      
      .captcha-refresh {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }
      
      .captcha-container {
        padding: 8px 10px;
      }
      
      .room-card {
        max-width: 300px;
      }
      
      .room-card > div:first-child {
        height: 160px;
      }
      
      .room-card img {
        height: 160px;
      }
      
      .room-card > div:last-child {
        padding: 14px !important;
      }
      
      .room-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
      }
      
      .room-card p {
        font-size: 13px !important;
        margin-bottom: 12px !important;
      }
      
      .room-card > div:last-child > div:first-child {
        flex-wrap: wrap;
        gap: 6px !important;
      }
      
      .room-card > div:last-child > div:last-child {
        flex-direction: column;
        gap: 10px !important;
        align-items: stretch !important;
      }
      
      .room-card > div:last-child > div:last-child > div span:first-child {
        font-size: 1.6rem !important;
      }
      
      .room-card > div:last-child > div:last-child button {
        width: 100%;
      }
      
      .testimonial-card {
        padding: 16px !important;
      }
      
      .testimonial-card p:nth-child(2) {
        font-size: 14px !important;
      }
      
      .calendar-dropdown {
        padding: 6px;
      }
      
      .calendar-day {
        font-size: 9px;
        min-height: 24px;
        padding: 1px;
      }
      
      .calendar-weekday {
        font-size: 8px;
        padding: 2px 0;
      }
      
      .calendar-month-year {
        font-size: 11px;
      }
      
      .calendar-nav-btn {
        width: 22px;
        height: 22px;
        font-size: 9px;
      }
      
      .calendar-legend-item {
        font-size: 8px;
      }
      
      .calendar-legend-box {
        width: 12px;
        height: 12px;
      }
      
      .calendar-header {
        gap: 8px;
      }
    }
    
    .mobile-book-btn {
      display: none;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
      color: white;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-size: 14px;
      white-space: nowrap;
      transition: all 0.3s;
    }
    
    .mobile-book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    }