<style>
        /* Custom Styling for Premium Modern Feel */
        body {
            font-family: 'Lato', sans-serif;
            color: #4a4a4a;
            line-height: 1.8;
            background-color: #fcfbf9;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: #2c3e50;
        }
        .text-gold {
            color: #d4af37;
        }
        .bg-gold {
            background-color: #d4af37;
            color: #fff;
        }
        .btn-gold {
            background-color: #d4af37;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-gold:hover {
            background-color: #b5952f;
            color: #fff;
        }
        
        /* Sticky Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: #2c3e50 !important;
        }
        .nav-link {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            color: #2c3e50 !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('./images/spa-gk-header.jpg') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        .hero-section h1 {
            color: #ffffff;
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Services Cards */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-img {
            height: 250px;
            object-fit: cover;
        }

        /* Testimonials Slider */
        .testimonial-box {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 20px;
        }

        /* Floating Button */
        .float-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            border-radius: 50px;
            padding: 15px 25px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s;
        }
        .float-btn:hover {
            transform: scale(1.05);
            color: white;
        }

        /* Section Padding */
        section {
            padding: 80px 0;
        }
        .bg-light-alt {
            background-color: #f4f7f6;
        }
    </style>