/* ===== Global Styles ===== */
:root {
    /* Color Palette - Infused with Kitenge/Ankara inspired colors */
    --primary-gold: #C9A961;
    --secondary-gold: #E4D4A8;
    --dark-gold: #9B7E46;
    --beige: #F5E6D3;
    --cream: #FFF8F0;
    --sage-green: #8B9A7B;
    --muted-green: #A8B5A0;
    --dark-brown: #3A2F2A;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(255, 248, 240, 0.9);

    /* Kitenge/Ankara Cultural Colors */
    --kitenge-orange: #D4621C;
    --kitenge-burnt: #8B2500;
    --kitenge-yellow: #F4B942;
    --kitenge-teal: #1D6A6A;
    --kitenge-deep-teal: #2F4F4F;
    --ankara-red: #B8372E;
    --ankara-green: #2E5D34;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== Kitenge/Ankara Pattern Utilities ===== */
.kitenge-border-top {
    position: relative;
}

.kitenge-border-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: url('images/patterns/kitenge-border.svg') repeat-x;
    background-size: 80px 20px;
}

.kitenge-border-bottom {
    position: relative;
}

.kitenge-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: url('images/patterns/kitenge-border.svg') repeat-x;
    background-size: 80px 20px;
}

.ankara-divider {
    width: 100%;
    height: 30px;
    background: url('images/patterns/kitenge-zigzag.svg') repeat-x;
    background-size: 60px 30px;
    margin: 20px 0;
}

.kitenge-accent {
    background: linear-gradient(135deg, var(--kitenge-orange) 0%, var(--kitenge-yellow) 50%, var(--kitenge-teal) 100%);
}

.kitenge-frame {
    border: 4px solid transparent;
    border-image: url('images/patterns/kitenge-border.svg') 30 round;
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-brown);
    line-height: 1.3;
}

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

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: #5A524D;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.lotus-loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.petal {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    border-radius: 0 100% 0 100%;
    animation: spin 1.5s ease-in-out infinite;
}

.petal:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: 0s;
}

.petal:nth-child(2) {
    transform: rotate(120deg);
    animation-delay: 0.5s;
}

.petal:nth-child(3) {
    transform: rotate(240deg);
    animation-delay: 1s;
}

@keyframes spin {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 15px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 248, 240, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 0;
}

.nav-brand .tagline {
    font-size: 0.75rem;
    color: var(--sage-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark-brown);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)),
                url('images/people/hero-massage.jpg') center/cover;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Kitenge pattern accent at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: url('images/patterns/kitenge-border.svg') repeat-x;
    background-size: 80px 20px;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(139, 154, 123, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--secondary-gold);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s 0.7s forwards;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
    color: rgba(255, 255, 255, 0.95);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 20px; }
}

/* ===== Section Styles ===== */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.divider {
    width: 160px;
    height: 20px;
    background: url('images/patterns/kitenge-border.svg') repeat-x center;
    background-size: 80px 20px;
    margin: 20px auto;
    border-radius: 2px;
}

/* Alternative Kitenge-inspired gradient divider */
.divider-gradient {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,
        var(--kitenge-orange) 0%,
        var(--kitenge-yellow) 25%,
        var(--kitenge-teal) 50%,
        var(--kitenge-yellow) 75%,
        var(--kitenge-orange) 100%);
    margin: 20px auto;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-style: italic;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--kitenge-orange) 0%, var(--kitenge-yellow) 50%, var(--kitenge-teal) 100%);
    border-radius: 10px;
    z-index: -1;
}

/* Kitenge pattern frame accent */
.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: url('images/patterns/kitenge-border.svg') repeat-x;
    background-size: 80px 16px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(245, 230, 211, 0.75), rgba(245, 230, 211, 0.75)),
                url('images/spa-rooms/room-6.jpg') center/cover;
    background-attachment: scroll;
    z-index: 1;
}

/* Kitenge borders for services section */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: url('images/patterns/kitenge-border.svg') repeat-x;
    background-size: 80px 16px;
    z-index: 2;
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 240, 0.85);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--kitenge-orange) 0%,
        var(--kitenge-yellow) 25%,
        var(--kitenge-teal) 50%,
        var(--kitenge-yellow) 75%,
        var(--kitenge-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0.3;
}

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

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 35px 30px;
}

.service-content h3 {
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.price-options {
    margin: 20px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.duration {
    color: var(--sage-green);
    font-size: 0.9rem;
}

.price {
    color: var(--primary-gold);
    font-weight: 600;
}

.btn-book {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-book:hover {
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    transform: scale(1.02);
}

/* Signature Packages */
.signature-packages {
    margin-top: 60px;
    text-align: center;
}

.signature-packages h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

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

.package-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.package-card.gold {
    border: 2px solid var(--primary-gold);
}

.package-card.platinum {
    border: 2px solid var(--sage-green);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-header {
    margin-bottom: 20px;
}

.package-header h4 {
    color: var(--dark-brown);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.package-duration {
    color: var(--sage-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin: 20px 0;
}

/* ===== Booking Section ===== */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2d8 100%);
    position: relative;
    z-index: 1;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.booking-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--cream);
    color: var(--dark-brown);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.booking-summary {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(139, 154, 123, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.booking-summary h4 {
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item span {
    color: var(--primary-gold);
    font-weight: 600;
}

.total-price {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--primary-gold);
    font-size: 1.2rem;
}

.total-price span {
    color: var(--primary-gold);
    font-weight: 700;
}

.deposit-note {
    font-size: 0.85rem;
    color: var(--sage-green);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(139, 154, 123, 0.08));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.section-subtitle {
    color: var(--dark-brown);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.section-note {
    color: var(--sage-green);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* ===== Voucher Section ===== */
.voucher-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

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

.voucher-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.voucher-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.voucher-card.featured {
    border: 3px solid transparent;
    background-image: linear-gradient(white, white),
                      linear-gradient(90deg, var(--kitenge-orange), var(--kitenge-yellow), var(--kitenge-teal), var(--kitenge-yellow), var(--kitenge-orange));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.05);
}

.voucher-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voucher-header h3 {
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.voucher-value {
    display: block;
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin: 15px 0;
}

.voucher-content ul {
    list-style: none;
    margin: 20px 0;
}

.voucher-content li {
    padding: 8px 0;
    color: var(--sage-green);
    font-size: 0.95rem;
}

.voucher-content li::before {
    content: "✓ ";
    color: var(--primary-gold);
    font-weight: bold;
}

.btn-purchase {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--sage-green), #7A8970);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-purchase:hover {
    box-shadow: 0 5px 20px rgba(139, 154, 123, 0.4);
    transform: scale(1.02);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
    z-index: 1;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/spa-rooms/room-3.jpg') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--sage-green);
    font-size: 0.85rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2d8 100%);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

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

.info-item h4 {
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--sage-green);
    margin-bottom: 5px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-brown);
    color: var(--beige);
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--beige);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.footer-links h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--beige);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-newsletter h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: var(--beige);
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--beige);
}

.footer-newsletter button {
    padding: 12px 25px;
    background: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-newsletter button:hover {
    background: var(--secondary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-bottom p {
    color: var(--beige);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ===== Floating Elements ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: 600px;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Sections */
    .about-section,
    .services-section,
    .booking-section,
    .voucher-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image::before {
        display: none;
    }

    .features {
        flex-direction: column;
        gap: 15px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        margin: 0 10px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .package-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    /* Booking */
    .booking-container {
        padding: 25px 15px;
        border-radius: 15px;
        margin: 0 10px;
    }

    .booking-summary {
        padding: 20px 15px;
    }

    .summary-item {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    .summary-item span {
        text-align: left;
    }

    .total-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Location Section */
    .location-section {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .section-note {
        font-size: 0.85rem;
    }

    /* Vouchers */
    .voucher-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voucher-card {
        margin: 0 10px;
    }

    .voucher-card.featured {
        transform: scale(1);
    }

    .voucher-ribbon {
        display: none;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    /* Floating Elements */
    .back-to-top {
        right: 20px;
        bottom: 80px;
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Typography */
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    /* Typography */
    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Sections */
    .about-section,
    .services-section,
    .booking-section,
    .voucher-section,
    .testimonials-section,
    .contact-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Service Cards */
    .service-card {
        margin: 0 5px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px 15px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    /* Price Options */
    .price-item {
        font-size: 0.9rem;
    }

    /* Booking */
    .booking-container {
        padding: 25px 15px;
        margin: 0 5px;
    }

    /* Vouchers */
    .voucher-card {
        padding: 30px 20px;
        margin: 0 5px;
    }

    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-newsletter input {
        font-size: 0.9rem;
    }

    .footer-newsletter button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Floating Elements */
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }

    .back-to-top {
        right: 15px;
        bottom: 70px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Navigation Brand */
    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-brand .tagline {
        font-size: 0.65rem;
    }
}

/* ===== Animations ===== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===== Loading States ===== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}