/* =========================================
   DURU SPA - VERSION 2 DESIGN (Premium Gold)
   ========================================= */

:root {
    --gold-primary: #cba978;
    --gold-secondary: #e0cca8;
    --gold-glow: rgba(203, 169, 120, 0.4);
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.8);
    --card-radius: 24px;
    --luxury-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* GLOBAL TEXTURES */
body {
    background-color: #fdfbf7 !important;
    /* Very subtle warm white */
    background-image:
        radial-gradient(at 0% 0%, rgba(203, 169, 120, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(203, 169, 120, 0.03) 0px, transparent 50%);
    background-attachment: fixed;
}

/* MODERN HERO */
.hero-wrapper {
    position: relative;
    border-radius: 0 0 50px 50px;
    /* Modern curve at bottom */
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

/* SECTION TITLES */
.modern-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.modern-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    margin-top: 10px;
    border-radius: 2px;
}

/* GLASS CARDS */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 169, 120, 0.2);
    border-radius: var(--card-radius);
    padding: 0;
    /* Let content dictate padding */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--luxury-shadow);
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(203, 169, 120, 0.15);
    border-color: var(--gold-primary);
}

/* NEON SHINE ANIMATION */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 150%;
    transition: 0.7s;
}

/* SERVICE & CAMPAIGN IMAGE STYLING */
.card-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.glass-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

/* FLOATING PRICE BADGE */
.floating-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    color: var(--gold-primary);
    font-size: 1.2rem;
    z-index: 5;
    border: 1px solid rgba(203, 169, 120, 0.3);
}

/* CONTENT STYLING */
.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTON REDESIGN */
.btn-modern {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--dark-text);
    color: var(--gold-primary) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-modern:hover {
    background: transparent;
    color: var(--dark-text) !important;
    border-color: var(--dark-text);
    transform: translateY(-2px);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .hero-wrapper {
        border-radius: 0 0 30px 30px;
    }

    .modern-title {
        font-size: 2.2rem;
    }

    /* PREMIUM BOOKING FORM */
    .booking-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .trust-badge-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    .trust-card {
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: transform 0.3s;
    }

    .trust-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold-primary);
    }

    .booking-form-card {
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        /* Deep shadow */
        position: relative;
        border: 1px solid rgba(203, 169, 120, 0.2);
    }

    .form-header {
        background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
        padding: 50px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .form-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(203, 169, 120, 0.15), transparent 70%);
    }

    .booking-input-group {
        margin-bottom: 25px;
    }

    .booking-label {
        display: block;
        font-size: 0.9rem;
        font-weight: 700;
        color: #444;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .booking-input {
        width: 100%;
        padding: 20px 25px;
        background: #fdfbf7;
        border: 2px solid #eee;
        border-radius: 16px;
        font-size: 1.05rem;
        color: #333;
        font-family: var(--font-body);
        transition: all 0.3s ease;
        outline: none;
        cursor: pointer;
        /* Makes whole input feel clickable */
    }

    /* Make date/time full clickable area roughly */
    .booking-input[type="date"],
    .booking-input[type="time"] {
        position: relative;
    }

    /* Focus effects */
    .booking-input:focus {
        background: #fff;
        border-color: var(--gold-primary);
        box-shadow: 0 10px 30px rgba(203, 169, 120, 0.15);
        transform: translateY(-2px);
    }

    .submit-btn-pulse {
        width: 100%;
        padding: 22px;
        border-radius: 16px;
        background: linear-gradient(135deg, #11998e, #38ef7d);
        /* Fresh Green */
        color: #fff;
        font-size: 1.2rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(56, 239, 125, 0.3);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .submit-btn-pulse:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(56, 239, 125, 0.4);
    }

    .submit-btn-pulse::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% {
            left: -100%;
        }

        20% {
            left: 100%;
        }

        100% {
            left: 100%;
        }
    }

    /* Mobile specific for date/time stacking */
    .date-time-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    @media (max-width: 768px) {
        .date-time-row {
            grid-template-columns: 1fr;
            /* Stack vertically */
        }
    }