 :root {

     --bg-dark: #050d1a;
     --bg-deep: #02060d;
     --glass-bg: rgba(255, 255, 255, 0.03);
     --glass-border: rgba(255, 255, 255, 0.08);


     --text-main: #e6f1ff;
     --text-muted: #8892b0;


     --gold: #d4af37;
     --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f6d365 100%);
     --gold-glow: rgba(212, 175, 55, 0.3);


     --font-heading: 'Playfair Display', serif;
     --font-body: 'Inter', sans-serif;


     --container-width: 1200px;
     --header-height: 90px;
     --border-radius: 12px;
     --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
 }


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

 html {
     scroll-behavior: smooth;
 }

 body {
     background-color: var(--bg-dark);
     color: var(--text-main);
     font-family: var(--font-body);
     line-height: 1.7;
     font-size: 16px;
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }


 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bg-dark);
 }

 ::-webkit-scrollbar-thumb {
     background: #333;
     border-radius: 4px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: var(--gold);
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: var(--font-heading);
     color: var(--text-main);
     margin-bottom: 1rem;
     font-weight: 700;
 }

 h1 {
     font-size: 3.5rem;
     line-height: 1.1;
     letter-spacing: -0.02em;

     background: linear-gradient(to bottom, #fff 0%, #a6a6a6 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 h2 {
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 .subtitle {
     display: block;
     color: var(--gold);
     text-transform: uppercase;
     letter-spacing: 3px;
     font-size: 0.85rem;
     margin-bottom: 1rem;
     font-weight: 600;
 }

 .gold-text {
     background: var(--gold-gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-style: italic;
 }

 .text-center {
     text-align: center;
 }

 .container {
     max-width: var(--container-width);
     margin: 0 auto;
     padding: 0 24px;
 }

 .section {
     padding: 100px 10px;
 }

 .dark-section {
     background: linear-gradient(180deg, var(--bg-dark) 0%, #081224 100%);
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 14px 32px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     letter-spacing: 0.5px;
     cursor: pointer;
     transition: var(--transition);
     text-transform: uppercase;
     position: relative;
     overflow: hidden;
     white-space: nowrap;
 }

 .btn-primary,
 .btn-gold {
     background: var(--gold-gradient);
     color: var(--bg-deep);
     border: none;
     box-shadow: 0 4px 15px var(--gold-glow);
 }

 .btn-primary:hover,
 .btn-gold:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px var(--gold-glow);
     filter: brightness(1.1);
 }

 .btn-outline {
     background: transparent;
     border: 1px solid var(--gold);
     color: var(--gold);
 }

 .btn-outline:hover {
     background: rgba(212, 175, 55, 0.1);
     transform: translateY(-3px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
 }

 .btn-sm {
     padding: 10px 20px;
     font-size: 0.85rem;
 }

 .full-width {
     width: 100%;
 }


 .header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     height: var(--header-height);
     display: flex;
     align-items: center;
     transition: var(--transition);
     background: transparent;
 }

 .header.scrolled {
     background: rgba(5, 13, 26, 0.9);
     backdrop-filter: blur(15px);
     border-bottom: 1px solid var(--glass-border);
     height: 70px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .logo {
     font-family: var(--font-heading);
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff;
     letter-spacing: 1px;
 }

 .nav-list {
     display: flex;
     gap: 40px;
 }

 .nav-list a {
     font-size: 0.9rem;
     font-weight: 500;
     color: var(--text-main);
     position: relative;
     padding: 5px 0;
 }

 .nav-list a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: var(--gold);
     transition: width 0.3s;
 }

 .nav-list a:hover::after,
 .nav-list a.active::after {
     width: 100%;
 }

 .nav-list a.active {
     color: var(--gold);
 }

 .header-actions {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .mobile-toggle {
     display: none;
     background: none;
     border: none;
     color: var(--gold);
     font-size: 1.5rem;
     cursor: pointer;
 }


 .hero {
     height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     padding-top: var(--header-height);
 }

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
 }

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


 .hero-bg::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center, rgba(5, 13, 26, 0.4) 0%, rgba(5, 13, 26, 0.95) 100%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.3s;
 }

 .hero p {
     font-size: 1.1rem;
     margin-bottom: 2rem;
     color: #cbd5e1;
     max-width: 600px;
 }

 .hero-btns {
     display: flex;
     gap: 20px;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .feature-card {
     background: var(--glass-bg);
     backdrop-filter: blur(10px);
     border: 1px solid var(--glass-border);
     padding: 40px 30px;
     border-radius: var(--border-radius);
     transition: var(--transition);
 }

 .feature-card:hover {
     transform: translateY(-10px);
     background: rgba(255, 255, 255, 0.05);
     border-color: rgba(212, 175, 55, 0.3);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
 }

 .icon-gold {
     font-size: 2.5rem;
     margin-bottom: 25px;
     background: var(--gold-gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: inline-block;
 }

 .split-container,
 .split-section {
     display: flex;
     align-items: center;
     gap: 60px;
 }

 .split-image,
 .split-content {
     flex: 1;
 }

 .split-image img {
     border-radius: var(--border-radius);
     box-shadow: -20px 20px 0 rgba(212, 175, 55, 0.05);
 }

 .check-list {
     margin: 30px 0;
 }

 .check-list li {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .check-list i {
     color: var(--gold);
     background: rgba(212, 175, 55, 0.1);
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     font-size: 0.8rem;
 }

 .responsibility-section {
     background: #0b1a30;
     border-top: 1px solid var(--glass-border);
     border-bottom: 1px solid var(--glass-border);
     padding: 60px 0;
 }

 .icon-large {
     font-size: 3rem;
     color: var(--text-muted);
     margin-bottom: 20px;
     display: block;
 }

 .badges {
     margin-top: 25px;
     display: flex;
     justify-content: center;
     gap: 15px;
     flex-wrap: wrap;
 }

 .badge {
     background: transparent;
     border: 1px solid var(--text-muted);
     color: var(--text-muted);
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: 0.3s;
 }

 .badge:hover {
     border-color: var(--gold);
     color: var(--gold);
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .review-card {
     background: var(--bg-deep);
     padding: 30px;
     border-radius: var(--border-radius);
     border: 1px solid var(--glass-border);
 }

 .review-card .stars {
     color: var(--gold);
     margin-bottom: 15px;
     font-size: 0.9rem;
     letter-spacing: 2px;
 }

 .review-card cite {
     display: block;
     margin-top: 20px;
     font-weight: 600;
     color: var(--gold);
     font-style: normal;
 }

 .page-header {
     background: linear-gradient(rgba(5, 13, 26, 0.7), rgba(5, 13, 26, 0.9));
     padding: 160px 0 80px;
     text-align: center;
 }

 .rooms-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }

 .room-card {
     background: var(--bg-deep);
     border: 1px solid var(--glass-border);
     border-radius: var(--border-radius);
     overflow: hidden;
     transition: var(--transition);
     display: flex;
     flex-direction: column;
 }

 .room-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
     border-color: rgba(212, 175, 55, 0.2);
 }

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

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

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

 .room-content {
     padding: 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .room-content h3 {
     margin-bottom: 10px;
 }

 .room-content p {
     color: var(--text-muted);
     font-size: 0.9rem;
     margin-bottom: 20px;
 }

 .room-amenities {
     margin-top: auto;
     border-top: 1px solid var(--glass-border);
     padding-top: 20px;
     display: flex;
     justify-content: space-between;
     font-size: 0.85rem;
     color: #cbd5e1;
 }

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

 .price {
     font-family: var(--font-heading);
     font-size: 1.25rem;
     color: var(--gold);
     font-weight: 700;
 }

 .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
 }

 .info-item {
     display: flex;
     gap: 20px;
     margin-bottom: 35px;
 }

 .info-item i {
     font-size: 1.5rem;
     color: var(--gold);
     margin-top: 5px;
 }

 .map-placeholder {
     height: 300px;
     background: #111;
     border-radius: var(--border-radius);
     border: 1px solid var(--glass-border);
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .map-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.4;
 }

 .map-content {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     font-size: 0.9rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--glass-border);
     color: var(--text-main);
     border-radius: 6px;
     font-family: inherit;
     transition: 0.3s;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--gold);
     background: rgba(255, 255, 255, 0.06);
     box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
 }

 .form-check {
     display: flex;
     gap: 10px;
     align-items: flex-start;
     margin-bottom: 15px;
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .form-check a {
     text-decoration: underline;
     color: var(--gold);
 }


 .toast {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: var(--gold);
     color: var(--bg-deep);
     padding: 15px 30px;
     border-radius: 6px;
     font-weight: 700;
     transform: translateY(150px);
     transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
     z-index: 2000;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
 }

 .toast.show {
     transform: translateY(0);
 }

 .footer {
     background: var(--bg-deep);
     padding: 80px 0 30px;
     border-top: 1px solid var(--glass-border);
     margin-top: auto;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 50px;
     margin-bottom: 50px;
 }

 .footer h3 {
     font-size: 1.3rem;
     color: #fff;
     margin-bottom: 25px;
 }

 .footer p {
     color: var(--text-muted);
     font-size: 0.95rem;
     margin-bottom: 15px;
 }

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

 .footer ul li a {
     color: var(--text-muted);
 }

 .footer ul li a:hover {
     color: var(--gold);
     padding-left: 5px;
 }

 .footer hr {
     border: none;
     border-top: 1px solid var(--glass-border);
     margin-bottom: 30px;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
     font-size: 0.85rem;
     color: #555;
 }

 .legal-links {
     display: flex;
     gap: 20px;
 }

 .legal-links a {
     color: #666;
 }

 .legal-links a:hover {
     color: var(--gold);
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 992px) {
     h1 {
         font-size: 3rem;
     }

     h2 {
         font-size: 2rem;
     }

     .split-container,
     .split-section {
         flex-direction: column !important;
         gap: 40px;
     }

     .split-image {
         width: 100%;
         order: -1;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
 }

 @media (max-width: 768px) {
     .header-container {
         padding: 0 20px;
     }


     .nav {
         position: fixed;
         top: 0;
         right: 0;
         width: 85%;
         height: 100vh;
         background: #081224;
         padding: 100px 40px;
         transform: translateX(100%);
         transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
         z-index: 999;
         box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
         border-left: 1px solid var(--gold);
     }

     .nav.active {
         transform: translateX(0);
     }

     .nav-list {
         flex-direction: column;
         gap: 30px;
     }

     .nav-list a {
         font-size: 1.3rem;
         display: block;
     }

     .header-actions .btn {
         display: none;
     }

     .mobile-toggle {
         display: block;
         position: relative;
         z-index: 1001;
     }

     .hero-content {
         text-align: center;
     }

     .hero-btns {
         justify-content: center;
         flex-direction: column;
     }

     .btn {
         width: 100%;
     }

     .contact-wrapper {
         grid-template-columns: 1fr;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .legal-links {
         justify-content: center;
     }
 }

 .privacy-content {
     background: var(--bg-deep);
     padding: 50px;
     border-radius: var(--border-radius);
     border: 1px solid var(--glass-border);
     max-width: 900px;
     margin: 0 auto;
 }

 .privacy-content h2 {
     margin-top: 40px;
     color: var(--gold);
     font-size: 1.8rem;
 }

 .privacy-content h3 {
     margin-top: 25px;
     color: #fff;
     font-size: 1.2rem;
 }

 .privacy-content p,
 .privacy-content ul {
     margin-bottom: 15px;
     color: #cbd5e1;
 }

 .privacy-content ul {
     list-style: disc;
     padding-left: 20px;
 }

 .privacy-content li {
     margin-bottom: 8px;
 }

 .last-updated {
     font-style: italic;
     color: var(--text-muted);
     margin-bottom: 30px;
     display: block;
 }

 @media (max-width: 768px) {
     .privacy-content {
         padding: 25px;
     }
 }

 .terms-content {
     background: var(--bg-deep);
     padding: 50px;
     border-radius: var(--border-radius);
     border: 1px solid var(--glass-border);
     max-width: 900px;
     margin: 0 auto;
 }

 .terms-content h2 {
     margin-top: 40px;
     color: var(--gold);
     font-size: 1.6rem;
     border-bottom: 1px solid var(--glass-border);
     padding-bottom: 10px;
 }

 .terms-content h3 {
     margin-top: 25px;
     color: #fff;
     font-size: 1.1rem;
     font-weight: 600;
 }

 .terms-content p,
 .terms-content li {
     margin-bottom: 15px;
     color: #cbd5e1;
     font-size: 0.95rem;
 }

 .terms-content ul,
 .terms-content ol {
     list-style: inherit;
     padding-left: 20px;
     margin-bottom: 20px;
     color: #cbd5e1;
 }

 .terms-content strong {
     color: #fff;
 }

 @media (max-width: 768px) {
     .terms-content {
         padding: 25px;
     }
 }