 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0
 }

 :root {
     --bg: #000;
     --bg2: #0a0a0f;
     --bg3: #111118;
     --bg4: #1a1a24;
     --text: #fff;
     --text2: #b0b0c0;
     --red: #e63946;
     --blue: #4dabf7;
     --red-h: #ff4d5a;
     --blue-h: #6bc1ff;
     --bdr: #222233;
     --rad: .5rem;
     --rad-lg: 1rem;
     --shadow: 0 4px 20px rgba(0, 0, 0, .4);
     --tr: .3s ease;
     --mw: min(92%, 1200px);
     --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif
 }

 html {
     scroll-behavior: smooth;
     scroll-padding-top: 5rem
 }

 body {
     font-family: var(--font);
     background: var(--bg);
     color: var(--text);
     line-height: 1.7;
     -webkit-font-smoothing: antialiased
 }

 img,
 video,
 iframe {
     max-width: 100%;
     height: auto;
     display: block
 }

 a {
     color: var(--blue);
     text-decoration: none;
     transition: color var(--tr)
 }

 a:hover {
     color: var(--blue-h)
 }

 ul,
 ol {
     padding-left: 1.4em
 }

 h1,
 h2,
 h3,
 h4 {
     line-height: 1.25;
     color: var(--text)
 }

 h1 {
     font-size: clamp(1.8rem, 4vw, 3rem)
 }

 h2 {
     font-size: clamp(1.4rem, 3vw, 2.2rem)
 }

 h3 {
     font-size: clamp(1.1rem, 2.2vw, 1.5rem)
 }

 p {
     color: var(--text2);
     margin-bottom: 1rem;
     text-align: justify
 }

 .skip {
     position: absolute;
     top: -100%;
     left: 1rem;
     background: var(--red);
     color: #fff;
     padding: .5rem 1rem;
     border-radius: var(--rad);
     z-index: 9999;
     font-weight: 600
 }

 .skip:focus {
     top: 1rem
 }

 .container {
     width: var(--mw);
     margin: 0 auto
 }

 .section {
     padding: clamp(1rem, 1vw, 1rem) 0
 }

 .section-title {
     text-align: center;
     margin-bottom: 2.5rem
 }

 .section-title span {
     color: var(--red)
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: .5rem;
     padding: .75rem 1.8rem;
     border-radius: var(--rad);
     font-weight: 600;
     font-size: .95rem;
     border: none;
     cursor: pointer;
     transition: all var(--tr);
     text-decoration: none;
     line-height: 1.4
 }

 .btn-primary {
     background: var(--red);
     color: #fff
 }

 .btn-primary:hover {
     background: var(--red-h);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(230, 57, 70, .35)
 }

 .btn-secondary {
     background: transparent;
     color: var(--blue);
     border: 2px solid var(--blue)
 }

 .btn-secondary:hover {
     background: var(--blue);
     color: #000;
     transform: translateY(-2px)
 }

 .btn-sm {
     padding: .5rem 1.2rem;
     font-size: .85rem
 }

 .top-bar {
     background: var(--bg2);
     border-bottom: 1px solid var(--bdr);
     padding: .4rem 0;
     font-size: .85rem
 }

 .top-bar .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: .5rem
 }

 .top-bar a {
     color: var(--text2)
 }

 .top-bar a:hover {
     color: var(--red)
 }

 @media(max-width:768px) {
     .top-bar {
         display: none
     }
 }

 .navbar {
     background: rgba(10, 10, 15, .92);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid var(--bdr);
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     transition: box-shadow var(--tr)
 }

 .navbar.scrolled {
     box-shadow: 0 2px 30px rgba(0, 0, 0, .6)
 }

 .nav-container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: .6rem 0;
     width: var(--mw);
     margin: 0 auto
 }

 .nav-logo img,
 .nav-logo svg {
     height: 36px;
     width: auto
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 1.5rem;
     align-items: center;
     padding: 0;
     margin: 0
 }

 .nav-links a {
     color: var(--text);
     font-weight: 500;
     font-size: .9rem;
     position: relative;
     padding: .25rem 0
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--red);
     transition: width var(--tr)
 }

 .nav-links a:hover::after,
 .nav-links a[aria-current="page"]::after {
     width: 100%
 }

 .nav-links a:hover {
     color: var(--red)
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     color: var(--text);
     font-size: 1.5rem;
     cursor: pointer;
     padding: .5rem;
     line-height: 1
 }

 @media(max-width:768px) {
     body {
         padding-top: 3.5rem
     }

     .nav-links {
         position: fixed;
         top: 0;
         right: 0;
         width: 280px;
         height: 100vh;
         background: var(--bg2);
         flex-direction: column;
         padding: 5rem 1.5rem 2rem;
         gap: 1rem;
         transform: translateX(100%);
         transition: transform var(--tr);
         z-index: 999;
         border-left: 1px solid var(--bdr);
         overflow-y: auto
     }

     .nav-links.active {
         transform: translateX(0)
     }

     .menu-toggle {
         display: flex;
         align-items: center;
         justify-content: center;
         z-index: 1001
     }

     .nav-overlay {
         display: none;
         position: fixed;
         inset: 0;
         background: rgba(0, 0, 0, .6);
         z-index: 998
     }

     .nav-overlay.active {
         display: block
     }
 }

 .hero {
     background: linear-gradient(135deg, var(--bg2) 0%, #0d0d1a 50%, var(--bg2) 100%);
     padding: clamp(4rem, 10vw, 7rem) 0;
     text-align: center;
     position: relative;
     overflow: hidden
 }

 @media(max-width:768px) {
     .hero {
         padding: clamp(2rem, 8vw, 4rem) 0
     }
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -30%;
     width: 60%;
     height: 200%;
     background: radial-gradient(circle, rgba(230, 57, 70, .06) 0%, transparent 60%);
     pointer-events: none
 }

 .hero h1 {
     margin-bottom: 1.2rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto
 }

 .hero h1 span {
     color: var(--red)
 }

 .hero-sub {
     font-size: clamp(1rem, 2vw, 1.15rem);
     color: var(--text2);
     max-width: 600px;
     margin: 0 auto 1.8rem
 }

 .hero-btns {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 2rem
 }

 .hero-search {
     max-width: 500px;
     margin: 0 auto;
     position: relative
 }

 .hero-search input {
     width: 100%;
     padding: .85rem 1.2rem;
     padding-right: 3.5rem;
     border-radius: var(--rad-lg);
     border: 2px solid var(--bdr);
     background: var(--bg3);
     color: var(--text);
     font-size: 1rem;
     outline: none;
     transition: border var(--tr)
 }

 .hero-search input:focus {
     border-color: var(--red)
 }

 .hero-search button {
     position: absolute;
     right: .5rem;
     top: 50%;
     transform: translateY(-50%);
     background: var(--red);
     border: none;
     color: #fff;
     padding: .5rem .9rem;
     border-radius: var(--rad);
     cursor: pointer;
     font-size: .9rem
 }

 .content-block {
     margin-bottom: 2rem;
     text-align: justify
 }

 .content-block h2 {
     margin-bottom: .8rem
 }

 .content-block h2 span {
     color: var(--red)
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.2rem
 }

 @media(max-width:1024px) {
     .gallery-grid {
         grid-template-columns: repeat(3, 1fr)
     }
 }

 @media(max-width:768px) {
     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: .8rem
     }
 }

 .gallery-card {
     background: var(--bg3);
     border-radius: var(--rad-lg);
     overflow: hidden;
     border: 1px solid var(--bdr);
     transition: all var(--tr);
     position: relative
 }

 .gallery-card:hover {
     transform: translateY(-6px);
     border-color: var(--red);
     box-shadow: 0 12px 30px rgba(230, 57, 70, .15)
 }

 .gallery-card img {
     width: 100%;
     aspect-ratio: 3/4;
     object-fit: cover;
     transition: transform var(--tr)
 }

 .gallery-card:hover img {
     transform: scale(1.05)
 }

 .gallery-card-info {
     padding: 1rem
 }

 .gallery-card-info h3 {
     font-size: .95rem;
     margin-bottom: .3rem
 }

 .gallery-card-info .price {
     color: var(--red);
     font-weight: 700;
     font-size: 1rem
 }

 .gallery-card-info .rating {
     color: #f5c518;
     font-size: .85rem;
     margin: .3rem 0
 }

 .gallery-card-info .areas-pills {
     display: flex;
     flex-wrap: wrap;
     gap: .3rem;
     margin-top: .5rem
 }

 .pill {
     background: var(--bg4);
     color: var(--text2);
     padding: .2rem .6rem;
     border-radius: 2rem;
     font-size: .7rem;
     border: 1px solid var(--bdr)
 }

 .split {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center
 }

 @media(max-width:768px) {
     .split {
         grid-template-columns: 1fr;
         gap: 1.5rem
     }

     .split-img {
         order: -1
     }
 }

 .split-img img {
     border-radius: var(--rad-lg);
     width: 100%;
     aspect-ratio: 4/5;
     object-fit: cover
 }

 .areas-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: .8rem
 }

 @media(max-width:1024px) {
     .areas-grid {
         grid-template-columns: repeat(4, 1fr)
     }
 }

 @media(max-width:768px) {
     .areas-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 .area-card {
     background: var(--bg3);
     border: 1px solid var(--bdr);
     border-radius: var(--rad);
     padding: 1rem;
     text-align: center;
     color: var(--text);
     font-weight: 600;
     font-size: .9rem;
     transition: all var(--tr);
     cursor: pointer;
     text-decoration: none;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 60px
 }

 .area-card:hover {
     background: var(--red);
     color: #fff;
     border-color: var(--red);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(230, 57, 70, .25)
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem
 }

 @media(max-width:768px) {
     .pricing-grid {
         grid-template-columns: 1fr
     }
 }

 .pricing-card {
     background: var(--bg3);
     border: 2px solid var(--bdr);
     border-radius: var(--rad-lg);
     padding: 2rem 1.5rem;
     text-align: center;
     transition: all var(--tr);
     position: relative
 }

 .pricing-card.featured {
     border-color: var(--red);
     transform: scale(1.03)
 }

 .pricing-card.featured::before {
     content: 'Popular';
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--red);
     color: #fff;
     padding: .2rem 1rem;
     border-radius: 2rem;
     font-size: .75rem;
     font-weight: 700
 }

 .pricing-card:hover {
     border-color: var(--red);
     transform: translateY(-4px)
 }

 .pricing-card h3 {
     margin-bottom: .5rem
 }

 .pricing-card .price-amount {
     font-size: clamp(2rem, 4vw, 2.8rem);
     font-weight: 800;
     color: var(--red);
     margin: .8rem 0
 }

 .pricing-card .price-amount small {
     font-size: .9rem;
     color: var(--text2);
     font-weight: 400
 }

 .pricing-card ul {
     list-style: none;
     padding: 0;
     margin: 1.5rem 0;
     text-align: left
 }

 .pricing-card li {
     padding: .5rem 0;
     border-bottom: 1px solid var(--bdr);
     color: var(--text2);
     font-size: .9rem
 }

 .pricing-card li::before {
     content: '✓';
     color: var(--red);
     margin-right: .5rem;
     font-weight: 700
 }

 .profile-section {
     text-align: center
 }

 .profiles-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
     margin-top: 2rem
 }

 .profile-card {
     background: var(--bg3);
     border: 1px solid var(--bdr);
     border-radius: var(--rad-lg);
     padding: 1.5rem;
     text-align: center;
     transition: border var(--tr), transform var(--tr);
     display: flex;
     flex-direction: column;
     align-items: center
 }

 .profile-card:hover {
     border-color: var(--red);
     transform: translateY(-5px)
 }

 .profile-img {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid var(--red);
     margin-bottom: 1rem;
     display: block
 }

 .profile-card h3 {
     margin: 0.5rem 0 0.5rem;
     font-size: 1.3rem
 }

 .profile-title {
     color: var(--red);
     font-size: 0.9rem;
     font-weight: 600;
     margin: 0 0 0.8rem;
     text-transform: uppercase
 }

 .profile-description {
     font-size: 0.95rem;
     line-height: 1.5;
     margin: 0 0 1rem;
     flex-grow: 1;
     text-align: justify
 }

 @media(max-width:1200px) {
     .profiles-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:768px) {
     .profiles-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1rem
     }

     .profile-card {
         padding: 1.2rem
     }

     .profile-img {
         width: 120px;
         height: 120px
     }
 }

 @media(max-width:600px) {
     .profiles-grid {
         grid-template-columns: 1fr
     }

     .profile-img {
         width: 130px;
         height: 130px
     }

     .profile-card h3 {
         font-size: 1.1rem
     }
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.2rem
 }

 @media(max-width:1024px) {
     .testimonials-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:600px) {
     .testimonials-grid {
         grid-template-columns: 1fr
     }
 }

 .testimonial {
     background: var(--bg3);
     border: 1px solid var(--bdr);
     border-radius: var(--rad-lg);
     padding: 1.5rem;
     transition: border var(--tr)
 }

 .testimonial:hover {
     border-color: var(--red)
 }

 .testimonial p {
     text-align: justify
 }

 .testimonial .stars {
     color: #f5c518;
     margin-bottom: .5rem
 }

 .testimonial p {
     font-style: italic;
     font-size: .92rem
 }

 .testimonial .t-author {
     margin-top: 1rem;
     font-weight: 600;
     color: var(--text);
     font-size: .85rem
 }

 .cta-band {
     background: linear-gradient(135deg, var(--red) 0%, #b71c30 100%);
     padding: clamp(2.5rem, 5vw, 4rem) 0;
     text-align: center;
     border-radius: var(--rad-lg);
     margin: 0 auto;
     width: var(--mw)
 }

 .cta-band h2 {
     color: #fff;
     margin-bottom: 1rem
 }

 .cta-band p {
     color: rgba(255, 255, 255, .85);
     margin-bottom: 1.5rem
 }

 .cta-band .btn {
     background: #fff;
     color: var(--red);
     font-weight: 700
 }

 .cta-band .btn:hover {
     background: var(--bg);
     color: #fff
 }

 .faq-item {
     background: var(--bg3);
     border: 1px solid var(--bdr);
     border-radius: var(--rad);
     margin-bottom: .8rem;
     overflow: hidden
 }

 .faq-item h3 {
     padding: 1rem 1.2rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 1rem;
     margin: 0;
     transition: color var(--tr)
 }

 .faq-item h3:hover {
     color: var(--red)
 }

 .faq-item h3::after {
     content: '+';
     font-size: 1.3rem;
     color: var(--red);
     transition: transform var(--tr)
 }

 .faq-item.open h3::after {
     transform: rotate(45deg)
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height .4s ease, padding .4s ease;
     padding: 0 1.2rem
 }

 .faq-item.open .faq-answer {
     max-height: 300px;
     padding: 0 1.2rem 1rem
 }

 .footer {
     background: var(--bg2);
     border-top: 1px solid var(--bdr);
     padding: clamp(2.5rem, 5vw, 4rem) 0 0
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
     margin-bottom: 2rem
 }

 @media(max-width:900px) {
     .footer-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:500px) {
     .footer-grid {
         grid-template-columns: 1fr
     }
 }

 .footer h4 {
     margin-bottom: 1rem;
     font-size: .95rem;
     color: var(--text)
 }

 .footer ul {
     list-style: none;
     padding: 0
 }

 .footer li {
     margin-bottom: .4rem
 }

 .footer li a {
     color: var(--text2);
     font-size: .88rem
 }

 .footer li a:hover {
     color: var(--red)
 }

 .footer-bottom {
     border-top: 1px solid var(--bdr);
     padding: 1rem 0;
     text-align: center;
     font-size: .8rem;
     color: var(--text2)
 }

 .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem
 }

 @media(max-width:600px) {
     .form-grid {
         grid-template-columns: 1fr
     }
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: .3rem;
     margin-bottom: 1rem
 }

 .form-group.full {
     grid-column: 1/-1
 }

 .form-group label {
     font-weight: 600;
     font-size: .88rem
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     padding: .75rem 1rem;
     background: var(--bg3);
     border: 1px solid var(--bdr);
     border-radius: var(--rad);
     color: var(--text);
     font-size: .95rem;
     outline: none;
     transition: border var(--tr);
     font-family: var(--font)
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: var(--red)
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical
 }

 .form-error {
     color: var(--red);
     font-size: .8rem;
     min-height: 1.2em
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: .5rem;
     grid-column: 1/-1
 }

 .checkbox-group input {
     margin-top: .3rem
 }

 .back-top {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     background: var(--red);
     color: #fff;
     border: none;
     width: 44px;
     height: 44px;
     border-radius: 50%;
     font-size: 1.2rem;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all var(--tr);
     z-index: 900;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .back-top.visible {
     opacity: 1;
     visibility: visible
 }

 .back-top:hover {
     background: var(--red-h);
     transform: translateY(-3px)
 }

 .text-center {
     text-align: center
 }

 .mb-1 {
     margin-bottom: 1rem
 }

 .mb-2 {
     margin-bottom: 2rem
 }

 .mt-2 {
     margin-top: 2rem
 }

 @media(prefers-reduced-motion:reduce) {

     *,
     *::before,
     *::after {
         animation-duration: .01ms !important;
         transition-duration: .01ms !important;
         scroll-behavior: auto !important
     }

     .gallery-card:hover,
     .pricing-card:hover,
     .blog-card:hover,
     .area-card:hover {
         transform: none
     }
 }

 .gallery-grid {
     contain: layout style paint
 }

 .hero-search {
     contain: content
 }

 .faq-item {
     contain: layout style
 }

 .top-bar {
     contain: content
 }

 .section {
     contain: layout
 }

 .container {
     contain: layout
 }

 .gallery-card {
     contain: layout style paint;
     will-change: transform
 }

 .btn {
     contain: style paint
 }

 img {
     content-visibility: auto
 }

 /* Custom Hotels Section Styling */
 .hotel-dynamic-section {
     padding: 4rem 0;
 }

 .hotel-buttons-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 12px;
     width: 100%;
     margin-top: 1rem;
 }

 .hotel-btn-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     min-height: 56px;
     padding: 12px 18px;
     border-radius: 8px;
     font-size: 0.95rem;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.12);
     color: inherit;
     text-align: center;
     white-space: normal;
     word-wrap: break-word;
     line-height: 1.4;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .hotel-btn-link:hover {
     background: var(--primary, #d4af37);
     color: #000;
     border-color: var(--primary, #d4af37);
     transform: translateY(-2px);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 }

 .hotel-card-img {
     aspect-ratio: 1/1;
     object-fit: cover;
     width: 100%;
     height: auto;
     display: block;
 }

 .hotel-card-location {
     font-size: 0.9rem;
     color: #bbb;
     margin-top: 0.4rem;
     font-weight: 500;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 4px;
 }

 .hotel-hero-inner {
     padding: 2rem 1rem;
 }

 .hotel-hero-stats {
     gap: 1rem;
 }

 .hotel-hero-stat strong {
     font-size: 1.2rem;
 }


 /* ===== Hotel Page Banner ===== */
 .hotel-hero-banner {
     position: relative;
     width: 100%;
     min-height: 420px;
     display: flex;
     align-items: stretch;
     overflow: hidden;
     background: linear-gradient(135deg, #0a0a0f 0%, #0d0d1a 40%, #12091e 100%);
 }

 .hotel-hero-banner::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
     z-index: 0;
 }

 .hotel-hero-content {
     position: relative;
     z-index: 2;
     flex: 1;
     display: flex;
     align-items: center;
     padding: 3rem 2rem 3rem 3rem;
 }

 .hotel-hero-inner {
     max-width: 560px;
 }

 .hotel-hero-image {
     position: relative;
     z-index: 2;
     width: 380px;
     flex-shrink: 0;
     display: flex;
     align-items: flex-end;
     justify-content: center;
     overflow: hidden;
 }

 .hotel-hero-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top center;
     display: block;
     filter: drop-shadow(-10px 0 30px rgba(212, 175, 55, 0.2));
 }

 .hotel-hero-image::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 80px;
     background: linear-gradient(to right, #0a0a0f, transparent);
     z-index: 3;
 }

 .hotel-hero-badge {
     display: inline-block;
     background: rgba(212, 175, 55, 0.15);
     border: 1px solid rgba(212, 175, 55, 0.3);
     color: var(--primary, #d4af37);
     font-size: 0.78rem;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     padding: 6px 18px;
     border-radius: 50px;
     margin-bottom: 1.2rem;
 }

 .hotel-hero-title {
     font-size: clamp(1.5rem, 3.5vw, 2.5rem);
     font-weight: 700;
     line-height: 1.25;
     margin: 0 0 1rem;
     color: #fff;
 }

 .hotel-hero-title span {
     color: var(--primary, #d4af37);
 }

 .hotel-hero-subtitle {
     font-size: 0.95rem;
     color: rgba(255, 255, 255, 0.65);
     margin: 0 0 2rem;
     line-height: 1.6;
 }

 .hotel-hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     align-items: center;
 }

 .hotel-hero-actions .btn {
     min-width: 150px;
 }

 .hotel-hero-stats {
     display: flex;
     flex-wrap: wrap;
     gap: 1.2rem;
     margin-top: 2rem;
     padding-top: 1.5rem;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .hotel-hero-stat {
     text-align: center;
 }

 .hotel-hero-stat strong {
     display: block;
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--primary, #d4af37);
 }

 .hotel-hero-stat span {
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.5);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 @media(max-width:900px) {
     .hotel-hero-image {
         width: 260px;
     }
 }

 @media(max-width:650px) {
     .hotel-hero-banner {
         min-height: auto;
         flex-direction: column-reverse;
     }

     .hotel-hero-image {
         width: 100%;
         height: 240px;
     }

     .hotel-hero-image img {
         object-position: top center;
         height: 100%;
     }

     .hotel-hero-image::before {
         display: none;
     }

     .hotel-hero-content {
         padding: 2rem 1.2rem;
     }

     .hotel-hero-inner {
         max-width: 100%;
     }

     .hotel-hero-stats {
         gap: 0.8rem;
     }

     .hotel-hero-stat strong {
         font-size: 1.1rem;
     }
 }