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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: #1a2332;
      background: #fff;
    }

    /* HEADER */
    .header {
      background: #1a2332;
      color: #fff;
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .35);
    }

    .header-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .header-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .header-logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #0b7c8e, #0d9aaf);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: #fff;
    }

    .header-logo-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }

    .header-logo-stars {
      color: #f59e0b;
      font-size: 11px;
      letter-spacing: 2px;
    }

    .header-address {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #a0b0c0;
    }

    .header-phone-num {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
    }

    .header-city {
      font-size: 11px;
      color: #a0b0c0;
    }

    .btn-online {
      background: #0b7c8e;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
    }

    /* NAV */
    nav {
      background: #253042;
      border-bottom: 1px solid #2e3f56;
    }

    nav ul {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      gap: 8px;
    }

    nav ul::-webkit-scrollbar {
      display: none;
    }

    nav ul li {
      flex-shrink: 0;
    }

    nav ul li a {
      display: block;
      padding: 13px 16px;
      color: #c8d8e8;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      transition: color .2s, background .2s;
      border-radius: 6px;
    }

    nav ul li a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .05);
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 560px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(10, 25, 47, .82) 0%, rgba(10, 40, 65, .72) 50%, rgba(11, 80, 100, .6) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1260px;
      margin: 0 auto;
      padding: 50px 20px 40px;
      width: 100%;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: start;
    }

    .hero-stars {
      font-size: 22px;
      color: #f59e0b;
      letter-spacing: 3px;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: 42px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.1;
    }

    .hero-sub {
      font-size: 15px;
      color: #a8d4df;
      margin-bottom: 24px;
      line-height: 1.6;
      max-width: 560px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }

    .badge {
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      border-radius: 50px;
      padding: 7px 15px;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(4px);
    }

    .badge-teal {
      background: rgba(11, 124, 142, .5);
      border-color: #0b7c8e;
    }

    .badge-gold {
      background: rgba(245, 158, 11, .25);
      border-color: #f59e0b;
      color: #fde68a;
    }

    /* HERO LEAD FORM */
    .hero-form-box {
      background: rgba(255, 255, 255, .97);
      border-radius: 18px;
      padding: 28px;
      width: 360px;
      flex-shrink: 0;
      box-shadow: 0 12px 48px rgba(0, 0, 0, .3);
    }

    .hero-form-title {
      font-size: 17px;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 5px;
    }

    .hero-form-sub {
      font-size: 12px;
      color: #6b7f99;
      margin-bottom: 18px;
      line-height: 1.5;
    }

    .hero-form-row {
      margin-bottom: 10px;
    }

    .hero-form-row label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      color: #6b7f99;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 5px;
    }

    .hero-form-input {
      width: 100%;
      border: 1.5px solid #d0dce8;
      border-radius: 10px;
      padding: 11px 14px;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      color: #1a2332;
      transition: border-color .2s;
    }

    .hero-form-input:focus {
      outline: none;
      border-color: #0b7c8e;
    }

    .hero-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }

    .hero-form-btn {
      width: 100%;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      transition: opacity .2s, transform .1s;
      margin-bottom: 10px;
    }

    .hero-form-btn:hover {
      opacity: .9;
      transform: translateY(-1px);
    }

    .hero-form-privacy {
      font-size: 11px;
      color: #9aabb8;
      display: flex;
      align-items: flex-start;
      gap: 7px;
    }

    .hero-form-privacy input {
      margin-top: 2px;
    }

    .hero-form-guarantee {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: #0b7c8e;
      font-weight: 600;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid #e8f0f5;
    }

    /* PARTNERS STRIP */
    .partners-strip {
      background: #f0f7f9;
      padding: 16px 20px;
      border-bottom: 1px solid #ddeef3;
    }

    .partners-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .partners-label {
      font-size: 11px;
      color: #6b8099;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .partners-logos {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .p-logo {
      font-size: 13px;
      font-weight: 700;
      opacity: .65;
    }

    .p-logo:hover {
      opacity: 1;
    }

    /* PRICE COMPARE STRIP */
    .price-strip {
      background: linear-gradient(135deg, #0d2137, #0b3d52);
      padding: 14px 20px;
    }

    .price-strip-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .price-strip-left {
      color: #fff;
      font-size: 13px;
      font-weight: 600;
    }

    .price-strip-left span {
      color: #f59e0b;
    }

    .price-strip-items {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .price-chip {
      background: rgba(255, 255, 255, .1);
      border-radius: 8px;
      padding: 7px 14px;
      font-size: 12px;
      color: #a8d4df;
    }

    .price-chip strong {
      color: #fff;
    }

    .price-chip.best {
      background: rgba(245, 158, 11, .2);
      border: 1px solid rgba(245, 158, 11, .4);
    }

    .price-chip.best strong {
      color: #f59e0b;
    }

    /* SECTION */
    section {
      padding: 64px 20px;
    }

    .container {
      max-width: 1260px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 8px;
    }

    .section-title span {
      color: #0b7c8e;
    }

    .section-sub {
      font-size: 14px;
      color: #6b7f99;
      margin-bottom: 36px;
    }

    /* OFFERS */
    .offers-bg {
      background: #f4f9fb;
    }

    .offers-filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      align-items: center;
    }

    .filter-label {
      font-size: 12px;
      font-weight: 700;
      color: #6b7f99;
      text-transform: uppercase;
      margin-right: 4px;
    }

    .filter-btn {
      background: #fff;
      border: 1.5px solid #d0dce8;
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #374151;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      transition: all .2s;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: #0b7c8e;
      border-color: #0b7c8e;
      color: #fff;
    }

    .offers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .offer-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
      border: 1.5px solid #e8f2f5;
      transition: box-shadow .2s, transform .2s;
    }

    .offer-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
      transform: translateY(-3px);
    }

    .offer-card.hot {
      border-color: #f59e0b;
    }

    .offer-head {
      padding: 14px 16px 10px;
      border-bottom: 1px solid #f0f5f8;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
    }

    .offer-badge-hot {
      background: #f59e0b;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      border-radius: 4px;
      padding: 2px 7px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .offer-badge-avail {
      background: #d1fae5;
      color: #065f46;
      font-size: 10px;
      font-weight: 700;
      border-radius: 4px;
      padding: 2px 7px;
    }

    .offer-date {
      font-size: 13px;
      font-weight: 700;
      color: #1a2332;
    }

    .offer-nights {
      font-size: 11px;
      color: #6b7f99;
      font-weight: 500;
    }

    .offer-body {
      padding: 12px 16px;
    }

    .offer-room {
      font-size: 14px;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 4px;
    }

    .offer-detail {
      font-size: 12px;
      color: #6b7f99;
      margin-bottom: 10px;
    }

    .offer-tags {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .offer-tag {
      background: #e8f4f7;
      color: #0b7c8e;
      font-size: 11px;
      font-weight: 600;
      border-radius: 20px;
      padding: 3px 9px;
    }

    .offer-prices {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 12px;
    }

    .offer-price-main {
      font-size: 22px;
      font-weight: 800;
      color: #1a2332;
    }

    .offer-price-main span {
      font-size: 13px;
      font-weight: 500;
      color: #6b7f99;
    }

    .offer-price-compare {
      font-size: 12px;
      color: #9aabb8;
    }

    .offer-price-compare s {
      color: #e57373;
    }

    .offer-price-saving {
      font-size: 11px;
      font-weight: 700;
      color: #059669;
      background: #d1fae5;
      border-radius: 4px;
      padding: 2px 7px;
    }

    .offer-source {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: #9aabb8;
      margin-bottom: 12px;
    }

    .offer-source strong {
      color: #374151;
    }

    .offer-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .btn-offer-book {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      transition: opacity .2s;
    }

    .btn-offer-book:hover {
      opacity: .88;
    }

    .btn-offer-lead {
      background: #fff;
      color: #0b7c8e;
      border: 1.5px solid #0b7c8e;
      border-radius: 8px;
      padding: 10px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      transition: all .2s;
    }

    .btn-offer-lead:hover {
      background: #0b7c8e;
      color: #fff;
    }

    .offers-load-more {
      text-align: center;
      margin-top: 28px;
    }

    .btn-load-more {
      background: #fff;
      border: 1.5px solid #0b7c8e;
      color: #0b7c8e;
      border-radius: 10px;
      padding: 12px 32px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      transition: all .2s;
    }

    .btn-load-more:hover {
      background: #0b7c8e;
      color: #fff;
    }

    .offers-api-note {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #9aabb8;
      margin-top: 12px;
      justify-content: center;
    }

    /* REST TYPES */
    .rest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .rest-card {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      height: 200px;
      cursor: pointer;
    }

    .rest-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }

    .rest-card:hover img {
      transform: scale(1.05);
    }

    .rest-card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      padding: 32px 18px 16px;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-text p {
      font-size: 14px;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .about-img {
      border-radius: 16px;
      overflow: hidden;
    }

    .about-img img {
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .gallery-item {
      border-radius: 10px;
      overflow: hidden;
      height: 160px;
      cursor: pointer;
    }

    .gallery-item:first-child {
      grid-column: span 2;
      height: 240px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .3s;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    /* FEATURE BLOCKS */
    .feature-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 50px;
    }

    .feature-block.reverse {
      direction: rtl;
    }

    .feature-block.reverse>* {
      direction: ltr;
    }

    .feature-img {
      border-radius: 16px;
      overflow: hidden;
      height: 280px;
    }

    .feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-text h3 {
      font-size: 20px;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 12px;
    }

    .feature-text p {
      font-size: 14px;
      color: #4b5563;
      line-height: 1.8;
      margin-bottom: 8px;
    }

    .feature-list {
      list-style: none;
      margin-top: 12px;
    }

    .feature-list li {
      padding: 4px 0;
      font-size: 13px;
      color: #374151;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-list li::before {
      content: '';
      width: 7px;
      height: 7px;
      background: #0b7c8e;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ROOMS */
    .rooms-bg {
      background: #f4f9fb;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .room-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
      transition: box-shadow .2s, transform .2s;
    }

    .room-card:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, .11);
      transform: translateY(-3px);
    }

    .room-img {
      height: 170px;
      overflow: hidden;
    }

    .room-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }

    .room-card:hover .room-img img {
      transform: scale(1.05);
    }

    .room-body {
      padding: 14px;
    }

    .room-name {
      font-size: 14px;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 10px;
    }

    .room-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 12px;
    }

    .room-tag {
      background: #e8f4f7;
      color: #0b7c8e;
      font-size: 11px;
      font-weight: 600;
      border-radius: 20px;
      padding: 3px 9px;
    }

    .room-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .room-price {
      font-size: 12px;
      color: #6b7f99;
    }

    .room-price strong {
      font-size: 16px;
      color: #1a2332;
    }

    .btn-room {
      background: #f59e0b;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s;
    }

    .btn-room:hover {
      background: #d97706;
    }

    /* CTA inline */
    .cta-inline {
      background: linear-gradient(135deg, #0b3d52, #0d5e76);
      border-radius: 20px;
      padding: 40px 48px;
      display: flex;
      align-items: center;
      gap: 40px;
      margin: 50px 0 0;
    }

    .cta-inline-text {
      flex: 1;
    }

    .cta-inline-text h3 {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .cta-inline-text p {
      font-size: 14px;
      color: #8ab8cc;
    }

    .cta-inline-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .cta-inline-input {
      background: rgba(255, 255, 255, .12);
      border: 1.5px solid rgba(255, 255, 255, .2);
      border-radius: 10px;
      padding: 13px 16px;
      font-size: 14px;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      min-width: 180px;
    }

    .cta-inline-input::placeholder {
      color: rgba(255, 255, 255, .45);
    }

    .cta-inline-input:focus {
      outline: none;
      border-color: #0b7c8e;
    }

    .cta-inline-btn {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      white-space: nowrap;
    }

    /* NEARBY */
    .nearby-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .nearby-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      height: 200px;
      cursor: pointer;
    }

    .nearby-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }

    .nearby-card:hover img {
      transform: scale(1.05);
    }

    .nearby-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
      color: #fff;
      padding: 30px 16px 14px;
    }

    .nearby-label h4 {
      font-size: 15px;
      font-weight: 700;
    }

    .nearby-label span {
      font-size: 11px;
      color: #a8d4e0;
    }

    /* FOOTER */
    footer {
      background: #0d1b2a;
      color: #8a9bb0;
      padding: 50px 20px 28px;
    }

    .footer-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand h3 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .footer-brand p {
      font-size: 12px;
      line-height: 1.7;
      margin-bottom: 10px;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 7px;
    }

    .footer-col ul li a {
      color: #8a9bb0;
      text-decoration: none;
      font-size: 12px;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: #0b7c8e;
    }

    .footer-bottom {
      max-width: 1260px;
      margin: 0 auto;
      border-top: 1px solid #1e3048;
      padding-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom a {
      color: #8a9bb0;
      text-decoration: none;
    }

    .footer-disclaimer {
      font-size: 10px;
      color: #4a5e72;
      margin-top: 8px;
      line-height: 1.5;
    }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .65);
      z-index: 500;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal {
      background: #fff;
      border-radius: 20px;
      padding: 36px;
      max-width: 440px;
      width: 90%;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 18px;
      font-size: 22px;
      cursor: pointer;
      color: #6b7f99;
      background: none;
      border: none;
    }

    .modal h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #1a2332;
    }

    .modal-offer-info {
      background: #f4f9fb;
      border-radius: 10px;
      padding: 12px 14px;
      margin-bottom: 20px;
      font-size: 13px;
      color: #374151;
    }

    .modal-offer-info strong {
      display: block;
      font-size: 15px;
      color: #0b7c8e;
      margin-bottom: 2px;
    }

    .modal p {
      font-size: 13px;
      color: #6b7f99;
      margin-bottom: 18px;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .modal-input {
      border: 1.5px solid #d0dce8;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
    }

    .modal-input:focus {
      outline: none;
      border-color: #0b7c8e;
    }

    .modal-btn {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
    }

    .modal-alt {
      text-align: center;
      margin-top: 12px;
    }

    .modal-alt a {
      color: #0b7c8e;
      font-size: 12px;
      font-weight: 600;
    }

    /* TOAST */
    .toast {
      display: none;
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: #059669;
      color: #fff;
      border-radius: 12px;
      padding: 14px 22px;
      font-size: 14px;
      font-weight: 600;
      z-index: 600;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
    }

    .toast.show {
      display: flex;
      align-items: center;
      gap: 10px;
      animation: slideIn .3s ease;
    }

    @keyframes slideIn {
      from {
        transform: translateX(40px);
        opacity: 0;
      }

      to {
        transform: none;
        opacity: 1;
      }
    }

    /* STICKY MOBILE CTA */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #e0eaf0;
      padding: 12px 16px;
      z-index: 90;
      gap: 10px;
    }

    .sticky-cta-price {
      flex: 1;
    }

    .sticky-cta-price span {
      display: block;
      font-size: 10px;
      color: #6b7f99;
    }

    .sticky-cta-price strong {
      font-size: 18px;
      color: #1a2332;
    }

    .sticky-cta-btn {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
    }

    /* GUEST PHOTOS */
    .guest-gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 200px;
      gap: 10px;
      margin-top: 30px;
    }

    .guest-item {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .guest-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .guest-item:hover img {
      transform: scale(1.06);
    }

    .span-col-2 {
      grid-column: span 2;
    }

    .span-row-2 {
      grid-row: span 2;
    }

    /* FAQ Accordion */
    .faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .faq-item {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .faq-btn {
      width: 100%;
      text-align: left;
      padding: 20px 25px;
      font-size: 16px;
      font-weight: 600;
      color: #0f2035;
      background: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s, color 0.2s;
      font-family: inherit;
    }

    .faq-btn:hover {
      background: #fdfdfd;
      color: #0b7c8e;
    }

    .faq-btn::after {
      content: '+';
      font-size: 24px;
      color: #0b7c8e;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-btn::after {
      transform: rotate(45deg);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #fff;
    }

    .faq-content p {
      padding: 0 25px 25px;
      margin: 0;
      color: #4a5e72;
      line-height: 1.6;
      font-size: 15px;
    }

    /* RESPONSIVE */
    @media (max-width: 1000px) {
      .hero-top {
        grid-template-columns: 1fr;
      }

      .hero-form-box {
        width: 100%;
        max-width: 500px;
      }

      .offers-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid,
      .feature-block {
        grid-template-columns: 1fr;
      }

      .feature-block.reverse {
        direction: ltr;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item:first-child {
        grid-column: span 2;
      }

      .cta-inline {
        flex-direction: column;
        padding: 28px;
      }

      .guest-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .span-col-2 {
        grid-column: span 1;
      }
    }

    @media (max-width: 640px) {
      .hero-title {
        font-size: 28px;
      }

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

      .rooms-grid,
      .rest-grid,
      .nearby-grid {
        grid-template-columns: 1fr;
      }

      .header-address {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .sticky-cta {
        display: flex;
      }

      body {
        padding-bottom: 70px;
      }

      .guest-gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
        grid-auto-rows: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
      }

      .guest-gallery-grid::-webkit-scrollbar {
        display: none;
      }

      .guest-item {
        flex: 0 0 75vw;
        height: 350px;
        scroll-snap-align: center;
      }

      .guest-item.span-row-2 {
        height: 350px;
      }
    }