 :root {
     --primary-color: #0d0d0d;
     --secondary-color: #1a1a1a;
     --accent-color: #D4AF37;

     --accent-hover: #F3E5AB;

     --text-light: #F5F5F0;
     --text-muted: #A3A3A3;
     --font-heading: 'Playfair Display', serif;
     --font-body: 'Montserrat', sans-serif;
     --transition: all 0.3s ease-in-out;
 }

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

 html {
     scroll-behavior: smooth;
     font-family: var(--font-body);
     color: var(--text-light);
     background-color: var(--primary-color);
 }

 body {
     line-height: 1.6;
     overflow-x: hidden;
 }

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

 ul {
     list-style: none;
 }


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

 h1 {
     font-size: 4rem;
     letter-spacing: 2px;
 }

 h2 {
     font-size: 2.8rem;
     color: var(--accent-color);
 }

 h3 {
     font-size: 1.8rem;
 }

 h4 {
     font-size: 1.2rem;
 }

 p {
     margin-bottom: 1rem;
     color: var(--text-muted);
 }

 .subtitle {
     display: block;
     font-family: var(--font-body);
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 4px;
     color: var(--text-light);
     margin-bottom: 0.5rem;
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .section {
     padding: 6rem 0;
 }

 .bg-darker {
     background-color: #050505;
 }

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

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

 .mb-2 {
     margin-bottom: 1rem;
 }

 .mb-3 {
     margin-bottom: 2rem;
 }

 .mb-4 {
     margin-bottom: 3rem;
 }

 .mt-2 {
     margin-top: 1rem;
 }

 .mt-4 {
     margin-top: 3rem;
 }

 .w-100 {
     width: 100%;
 }

 .hidden {
     display: none !important;
 }


 .btn {
     display: inline-block;
     padding: 1rem 2rem;
     font-size: 0.9rem;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
     border: none;
     cursor: pointer;
     border-radius: 4px;
     transition: var(--transition);
 }

 .btn-primary {
     background-color: var(--accent-color);
     color: var(--primary-color);
 }

 .btn-primary:hover {
     background-color: var(--accent-hover);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

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

 .btn-outline:hover {
     background-color: var(--accent-color);
     color: var(--primary-color);
 }

 .btn-text {
     background: none;
     color: var(--text-muted);
     text-decoration: underline;
 }

 .btn-text:hover {
     color: var(--text-light);
 }

 .btn-sm {
     padding: 0.6rem 1.2rem;
     font-size: 0.8rem;
 }

 header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     padding: 1.5rem 0;
     transition: var(--transition);
     background: transparent;
 }

 header.scrolled,
 header.solid-header {
     background: rgba(10, 10, 10, 0.95);
     backdrop-filter: blur(10px);
     padding: 1rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-family: var(--font-heading);
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--text-light);
 }

 .logo span {
     color: var(--accent-color);
 }

 .nav-links {
     display: flex;
     gap: 2rem;
 }

 .nav-links a {
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 500;
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: var(--accent-color);
 }

 .menu-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--accent-color);
 }


 .hero {
     height: 100vh;
     background: url('../img/hero.jpeg') no-repeat center center/cover;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     text-align: center;
 }

 .contact-hero {
     height: 60vh;
     background: url('../img/hero.jpeg') no-repeat center center/cover;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.9));
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero .slogan {
     font-size: 1.2rem;
     color: var(--text-light);
     letter-spacing: 2px;
     margin-bottom: 2rem;
     font-weight: 300;
 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
 }


 .about-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .about-image img {
     width: 100%;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .split-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
 }

 .split-item img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-radius: 4px;
 }


 .cards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .card {
     background: var(--secondary-color);
     border-radius: 8px;
     overflow: hidden;
     transition: var(--transition);
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
     border-color: rgba(212, 175, 55, 0.2);
 }

 .card-img {
     height: 250px;
     background-size: cover;
     background-position: center;
 }

 .card-content {
     padding: 2rem;
     text-align: left;
 }

 .card-content .price {
     font-size: 1.1rem;
     color: var(--accent-color);
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

 .amenities {
     display: flex;
     gap: 1rem;
     margin-bottom: 1rem;
     color: var(--text-light);
 }


 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 2rem;
 }

 .service-item {
     padding: 2rem 1rem;
     background: var(--secondary-color);
     border-radius: 8px;
     transition: var(--transition);
 }

 .service-item:hover {
     background: #222;
     transform: scale(1.05);
 }

 .service-item i {
     font-size: 2.5rem;
     color: var(--accent-color);
     margin-bottom: 1rem;
 }

 .discreet-service {
     margin-top: 4rem;
     padding: 1.5rem;
     border: 1px solid rgba(212, 175, 55, 0.3);
     border-radius: 4px;
     display: inline-block;
 }

 .discreet-service i {
     color: var(--accent-color);
     margin-bottom: 0.5rem;
     font-size: 1.5rem;
 }

 .discreet-service p {
     margin: 0;
     font-size: 0.85rem;
 }


 .form-container {
     max-width: 800px;
     margin: 0 auto;
     background: var(--secondary-color);
     padding: 3rem;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .custom-form .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 .form-group {
     margin-bottom: 1.5rem;
     text-align: left;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
     color: var(--text-light);
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 1rem;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--text-light);
     border-radius: 4px;
     font-family: var(--font-body);
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--accent-color);
     background: rgba(255, 255, 255, 0.08);
 }

 .form-message {
     margin-top: 1.5rem;
     padding: 1rem;
     border-radius: 4px;
     text-align: center;
     font-weight: 500;
 }

 .success-msg {
     background: rgba(40, 167, 69, 0.1);
     border: 1px solid #28a745;
     color: #28a745;
 }


 .faq-container {
     max-width: 800px;
     margin: 0 auto;
     text-align: left;
 }

 .faq-item {
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding: 1.5rem 0;
 }

 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
 }

 .faq-question h3 {
     margin: 0;
     font-size: 1.1rem;
     font-family: var(--font-body);
 }

 .faq-question i {
     color: var(--accent-color);
     transition: transform 0.3s;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .faq-item.active .faq-answer {
     max-height: 200px;
     margin-top: 1rem;
 }


 .main-footer {
     background: #000;
     padding: 4rem 0 2rem;
     border-top: 1px solid #1a1a1a;
 }

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

 .footer-desc {
     font-size: 0.9rem;
 }

 .social-icons a {
     display: inline-block;
     width: 40px;
     height: 40px;
     line-height: 40px;
     text-align: center;
     background: var(--secondary-color);
     border-radius: 50%;
     margin-right: 0.5rem;
     color: var(--text-light);
 }

 .social-icons a:hover {
     background: var(--accent-color);
     color: var(--primary-color);
 }

 .footer-col h4 {
     color: var(--text-light);
     margin-bottom: 1.5rem;
 }

 .footer-col ul li {
     margin-bottom: 0.8rem;
 }

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

 .contact-info li {
     display: flex;
     gap: 1rem;
     margin-bottom: 1rem;
     color: var(--text-muted);
 }

 .contact-info i {
     color: var(--accent-color);
     margin-top: 5px;
 }

 .footer-bottom {
     text-align: center;
     border-top: 1px solid #1a1a1a;
     padding-top: 2rem;
     font-size: 0.85rem;
 }

 .legal-text {
     font-size: 0.75rem;
     color: #666;
     margin-top: 0.5rem;
 }

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: rgba(10, 10, 10, 0.98);
     border-top: 1px solid var(--accent-color);
     padding: 1.5rem;
     z-index: 9999;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
 }

 .cookie-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 2rem;
 }

 .cookie-content p {
     margin: 0;
     font-size: 0.85rem;
 }

 .cookie-buttons {
     display: flex;
     gap: 0.5rem;
     flex-shrink: 0;
 }


 .cookie-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 10000;
 }

 .cookie-modal-content {
     background: var(--secondary-color);
     padding: 2.5rem;
     border-radius: 8px;
     width: 90%;
     max-width: 500px;
     position: relative;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .close-modal {
     position: absolute;
     top: 1rem;
     right: 1.5rem;
     background: none;
     border: none;
     color: var(--text-light);
     font-size: 1.5rem;
     cursor: pointer;
 }

 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .cookie-option h4 {
     margin-bottom: 0.2rem;
     font-size: 1rem;
     font-family: var(--font-body);
 }

 .cookie-option p {
     margin: 0;
     font-size: 0.8rem;
 }


 .toggle-switch {
     position: relative;
     display: inline-block;
     width: 44px;
     height: 24px;
 }

 .toggle-switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #555;
     transition: .4s;
     border-radius: 34px;
 }

 .slider:before {
     position: absolute;
     content: "";
     height: 18px;
     width: 18px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;
 }

 input:checked+.slider {
     background-color: var(--accent-color);
 }

 input:checked+.slider:before {
     transform: translateX(20px);
 }


 .fade-element {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 .fade-element.visible {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 992px) {

     .about-container,
     .split-layout,
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .custom-form .form-row {
         grid-template-columns: 1fr;
     }

     h1 {
         font-size: 3rem;
     }

     h2 {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         position: absolute;
         top: 100%;
         right: 0;
         background: var(--primary-color);
         width: 100%;
         flex-direction: column;
         align-items: center;
         padding: 2rem 0;
         gap: 1.5rem;
         transform: translateY(-150%);
         opacity: 0;
         transition: var(--transition);
         border-top: 1px solid #222;
         z-index: -1;
     }

     .nav-links.nav-active {
         transform: translateY(0);
         opacity: 1;
     }

     .menu-toggle {
         display: block;
     }

     .hero-buttons {
         flex-direction: column;
     }

     .cookie-content {
         flex-direction: column;
         text-align: center;
     }
 }

 .legal-content {
     max-width: 900px;
     margin: 0 auto;
     background: var(--secondary-color);
     padding: 4rem;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .legal-content h3 {
     color: var(--accent-color);
     margin-top: 2.5rem;
     margin-bottom: 1rem;
     font-size: 1.5rem;
 }

 .legal-content p,
 .legal-content li {
     color: var(--text-muted);
     margin-bottom: 1rem;
     line-height: 1.8;
     font-size: 0.95rem;
 }

 .legal-content ul {
     list-style-type: disc;
     margin-left: 1.5rem;
     margin-bottom: 1.5rem;
 }

 @media (max-width: 768px) {
     .legal-content {
         padding: 2rem;
     }
 }

 .faq-section {
     max-width: 900px;
     margin: 0 auto;
 }

 .faq-category {
     margin-top: 3rem;
     margin-bottom: 1.5rem;
     color: var(--accent-color);
     font-family: var(--font-heading);
     font-size: 1.8rem;
 }