﻿
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --charcoal: #1a1a1a;
            --cream: #f5f5dc;
            --copper: #b87333;
            --copper-dark: #9a5f2a;
            --bg: #0f0f0f;
            --card-bg: #1a1a1a;
            --border: #2a2a2a;
            --muted: #666666;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--cream);
            line-height: 1.6;
        }

        .container-narrow {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        
    
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }

        header .container-narrow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--cream);
            text-decoration: none;
        }

        .logo span {
            color: var(--copper);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--cream);
        }

        .btn-book {
            background: var(--copper);
            color: var(--cream);
            padding: 0.625rem 1.25rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: background 0.3s;
        }

        .btn-book:hover {
            background: var(--copper-dark);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--cream);
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.5) 50%, transparent),
                        url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600') center/cover;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 700px;
            padding: 2rem;
        }

        .hero-badge {
            color: var(--copper);
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.1s;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: normal;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.2s;
        }

        .hero p {
            font-size: 1.125rem;
            color: rgba(245, 245, 220, 0.8);
            margin-bottom: 2rem;
            max-width: 600px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.3s;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.4s;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-primary {
            background: var(--copper);
            color: var(--cream);
        }

        .btn-primary:hover {
            background: var(--copper-dark);
            transform: scale(1.05);
        }

        .btn-secondary {
            background: rgba(245, 245, 220, 0.1);
            color: var(--cream);
            border: 1px solid rgba(245, 245, 220, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(245, 245, 220, 0.2);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            color: var(--copper);
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .section-description {
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .service-img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .service-text {
            color: var(--muted);
            font-size: 0.875rem;
        }

        /* Prices */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .price-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
        }

        .price-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .price-icon {
            width: 40px;
            height: 40px;
            background: rgba(184, 115, 51, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--copper);
        }

        .price-title {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }

        .price-item:last-child {
            border-bottom: none;
        }

        .price-name {
            font-weight: 500;
        }

        .price-desc {
            color: var(--muted);
            font-size: 0.875rem;
        }

        .price-amount {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--copper);
            white-space: nowrap;
        }

        /* Voucher Section */
        .voucher-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .voucher-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(184, 115, 51, 0.1);
            color: var(--copper);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .voucher-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .voucher-features {
            list-style: none;
            margin-top: 2rem;
        }

        .voucher-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background: rgba(184, 115, 51, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--copper);
            font-size: 0.75rem;
        }

        /* Form */
        .form-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
        }

        .form-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            color: var(--cream);
            font-family: inherit;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--copper);
        }

        .form-textarea {
            resize: none;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .btn-submit {
            width: 100%;
            background: var(--copper);
            color: var(--cream);
            border: none;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: var(--copper-dark);
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(184, 115, 51, 0.1);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--copper);
            margin: 0 auto 1rem;
        }

        .contact-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-text {
            color: var(--muted);
            font-size: 0.875rem;
                  
        }
        
        .contact-text a:link { color: #CCCCCC; }
        .contact-text a:visited { color: #CCCCCC; }
		.contact-text a:active { color: #CCCCCC; }
		.contact-text a:hover { color: #FFFFFF; }        


        .map-container {
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            border: none;
            filter: grayscale(1);
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            padding: 3rem 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--cream);
            text-decoration: none;
        }

        .footer-tagline {
            color: rgba(245, 245, 220, 0.6);
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(245, 245, 220, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--copper);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(245, 245, 220, 0.1);
            text-align: center;
            color: rgba(245, 245, 220, 0.5);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .voucher-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .price-grid {
                grid-template-columns: 1fr;
            }
        }
