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

    :root {
        --pink: #FF1B8D;
        --purple: #B10DC9;
        --coral: #FF6B6B;
        --gold: #FFD93D;
        --dark: #1a0a1e;
        --darker: #0f0514;
        --light: #fff5fb;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: var(--darker);
        color: #fff;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Animated Background */
    .animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(135deg, #0f0514 0%, #1a0a1e 50%, #2d0a3e 100%);
    }

    .animated-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 30%, rgba(255, 27, 141, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(177, 13, 201, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(255, 211, 61, 0.1) 0%, transparent 50%);
        animation: bgMove 20s ease-in-out infinite;
    }

    @keyframes bgMove {

        0%,
        100% {
            transform: translate(0, 0);
        }

        50% {
            transform: translate(50px, 30px);
        }
    }

    /* Floating particles */
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: linear-gradient(45deg, var(--pink), var(--purple));
        border-radius: 50%;
        animation: float 15s infinite;
        opacity: 0.4;
        box-shadow: 0 0 15px currentColor;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) translateX(0);
        }

        25% {
            transform: translateY(-100px) translateX(50px);
        }

        50% {
            transform: translateY(-200px) translateX(-30px);
        }

        75% {
            transform: translateY(-150px) translateX(80px);
        }
    }

    /* Header */
    header {
        background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--coral) 100%);
        padding: 3rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 50px rgba(255, 27, 141, 0.5);
    }

    header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: headerShimmer 4s infinite;
    }

    @keyframes headerShimmer {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .header-content {
        position: relative;
        z-index: 1;
    }

    .logo {
        font-size: 4rem;
        margin-bottom: 1rem;
        animation: bounce 2s infinite;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    h1 {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(45deg, #fff, #FFD93D, #fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 5px 30px rgba(255, 255, 255, 0.5);
        animation: shine 3s infinite;
    }

    @keyframes shine {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.8;
        }
    }

    .subtitle {
        font-size: 1.4rem;
        opacity: 0.95;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .social-badge {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 12px 30px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 30px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.4s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .social-badge:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
    }

    /* Navigation */
    nav {
        background: rgba(26, 10, 30, 0.8);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 5px 30px rgba(255, 27, 141, 0.3);
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, var(--pink), var(--purple), var(--coral)) 1;
    }

    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 10px 25px;
        border-radius: 25px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--pink), var(--purple));
        transition: left 0.4s;
        z-index: -1;
        border-radius: 25px;
    }

    nav a:hover::before {
        left: 0;
    }

    nav a:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(255, 27, 141, 0.5);
    }

    /* Container */
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px;
        position: relative;
        z-index: 1;
    }

    /* Glass Section */
    .glass-section {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 50px;
        margin-bottom: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .glass-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.1) 0%, rgba(177, 13, 201, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.5s;
    }

    .glass-section:hover::before {
        opacity: 1;
    }

    h2 {
        font-size: 3rem;
        margin-bottom: 40px;
        background: linear-gradient(135deg, var(--pink), var(--purple), var(--coral), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
        position: relative;
        animation: gradientMove 5s ease infinite;
        background-size: 200% 200%;
    }

    @keyframes gradientMove {

        0%,
        100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--pink), var(--purple));
        border-radius: 10px;
        box-shadow: 0 0 20px var(--pink);
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .service-card {
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.1) 0%, rgba(177, 13, 201, 0.1) 100%);
        backdrop-filter: blur(10px);
        padding: 35px;
        border-radius: 25px;
        border: 2px solid rgba(255, 27, 141, 0.3);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--pink), var(--purple));
        opacity: 0;
        transition: opacity 0.5s;
    }

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

    .service-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 20px 60px rgba(255, 27, 141, 0.6);
        border-color: var(--gold);
    }

    .service-card.selected {
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.3) 0%, rgba(177, 13, 201, 0.3) 100%);
        border-color: var(--gold);
        box-shadow: 0 0 40px rgba(255, 211, 61, 0.8);
    }

    .service-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        filter: drop-shadow(0 5px 15px rgba(255, 27, 141, 0.5));
        animation: iconFloat 3s ease-in-out infinite;
    }

    @keyframes iconFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .service-name {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--gold);
    }

    .service-price {
        font-size: 1.4rem;
        color: var(--coral);
        margin-bottom: 8px;
        font-weight: bold;
    }

    .service-duration {
        font-size: 1rem;
        opacity: 0.9;
    }

    /* Portfolio Gallery */
    .portfolio-filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 12px 30px;
        background: rgba(255, 27, 141, 0.2);
        border: 2px solid rgba(255, 27, 141, 0.5);
        border-radius: 30px;
        color: #fff;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, var(--pink), var(--purple));
        border-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(255, 27, 141, 0.5);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .gallery-item {
        position: relative;
        aspect-ratio: 1;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s;
        border: 3px solid rgba(255, 27, 141, 0.3);
    }

    .gallery-item:hover {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 15px 50px rgba(255, 27, 141, 0.6);
        border-color: var(--gold);
    }

    .gallery-item img,
    .gallery-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s;
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.9), rgba(177, 13, 201, 0.9));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay-text {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Upload area for admin */
    .upload-area {
        border: 3px dashed rgba(255, 27, 141, 0.5);
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        margin-bottom: 30px;
    }

    .upload-area:hover {
        border-color: var(--pink);
        background: rgba(255, 27, 141, 0.1);
    }

    /* Calendar */
    .calendar {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 30px;
        border-radius: 20px;
        margin-top: 30px;
        border: 1px solid rgba(255, 27, 141, 0.3);
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .calendar-header button {
        background: linear-gradient(135deg, var(--pink), var(--purple));
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 15px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s;
        box-shadow: 0 5px 15px rgba(255, 27, 141, 0.4);
    }

    .calendar-header button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 27, 141, 0.6);
    }

    .calendar-header h3 {
        font-size: 1.8rem;
        color: var(--gold);
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 12px;
    }

    .calendar-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid rgba(255, 27, 141, 0.3);
        background: rgba(255, 27, 141, 0.1);
        font-weight: 600;
    }

    .calendar-day:hover:not(.disabled):not(.header) {
        background: linear-gradient(135deg, var(--pink), var(--purple));
        transform: scale(1.15);
        box-shadow: 0 5px 20px rgba(255, 27, 141, 0.6);
    }

    .calendar-day.selected {
        background: linear-gradient(135deg, var(--gold), var(--coral));
        color: var(--darker);
        font-weight: bold;
        box-shadow: 0 0 30px rgba(255, 211, 61, 0.8);
    }

    .calendar-day.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        background: rgba(0, 0, 0, 0.2);
        text-decoration: line-through;
    }

    .calendar-day.header {
        font-weight: bold;
        cursor: default;
        background: transparent;
        border: none;
        color: var(--gold);
    }

    /* Time Slots */
    .time-slots {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .time-slot {
        padding: 20px;
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.1), rgba(177, 13, 201, 0.1));
        border: 2px solid rgba(255, 27, 141, 0.3);
        border-radius: 15px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .time-slot:hover:not(.booked) {
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.3), rgba(177, 13, 201, 0.3));
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 27, 141, 0.5);
        border-color: var(--gold);
    }

    .time-slot.selected {
        background: linear-gradient(135deg, var(--pink), var(--purple));
        color: white;
        font-weight: bold;
        box-shadow: 0 0 30px rgba(255, 27, 141, 0.8);
    }

    .time-slot.booked {
        opacity: 0.3;
        cursor: not-allowed;
        text-decoration: line-through;
    }

    /* Form */
    .form-group {
        margin-bottom: 25px;
    }

    label {
        display: block;
        margin-bottom: 10px;
        color: var(--gold);
        font-weight: 600;
        font-size: 1.1rem;
    }

    input,
    textarea {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 27, 141, 0.3);
        border-radius: 15px;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s;
    }

    input::placeholder,
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    input:focus,
    textarea:focus {
        outline: none;
        border-color: var(--pink);
        box-shadow: 0 0 30px rgba(255, 27, 141, 0.5);
        background: rgba(255, 27, 141, 0.1);
    }

    /* Buttons */
    .btn {
        padding: 18px 45px;
        background: linear-gradient(135deg, var(--pink), var(--purple), var(--coral));
        background-size: 200% 200%;
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.4s;
        box-shadow: 0 8px 25px rgba(255, 27, 141, 0.5);
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 400px;
        height: 400px;
    }

    .btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 27, 141, 0.7);
        animation: gradientMove 2s ease infinite;
    }

    .btn-secondary {
        background: transparent;
        border: 2px solid var(--pink);
        color: var(--pink);
    }

    .btn-secondary:hover {
        background: linear-gradient(135deg, var(--pink), var(--purple));
        color: white;
        border-color: var(--gold);
    }

    /* Location */
    .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .location-info {
        background: rgba(255, 27, 141, 0.1);
        padding: 35px;
        border-radius: 20px;
        border: 2px solid rgba(255, 27, 141, 0.3);
    }

    .location-info h3 {
        color: var(--gold);
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .location-info p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .location-info strong {
        color: var(--pink);
    }

    .map-container {
        border-radius: 20px;
        overflow: hidden;
        border: 3px solid rgba(255, 27, 141, 0.5);
        box-shadow: 0 10px 40px rgba(255, 27, 141, 0.4);
        height: 400px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        z-index: 2000;
        padding: 20px;
    }

    .modal.active {
        display: flex;
    }

    .modal-content {
        background: linear-gradient(135deg, var(--dark), var(--darker));
        padding: 50px;
        border-radius: 30px;
        max-width: 600px;
        width: 100%;
        border: 3px solid var(--pink);
        box-shadow: 0 0 80px rgba(255, 27, 141, 0.8);
        position: relative;
    }

    .close-modal {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 2.5rem;
        cursor: pointer;
        color: var(--pink);
        transition: all 0.3s;
    }

    .close-modal:hover {
        color: var(--gold);
        transform: rotate(90deg) scale(1.2);
    }

    /* Lightbox for gallery */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        z-index: 3000;
        padding: 40px;
    }

    .lightbox.active {
        display: flex;
    }

    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        border-radius: 20px;
        box-shadow: 0 0 100px rgba(255, 27, 141, 0.8);
    }

    .lightbox-close {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 3rem;
        color: white;
        cursor: pointer;
        transition: all 0.3s;
    }

    .lightbox-close:hover {
        color: var(--pink);
        transform: rotate(90deg) scale(1.2);
    }

    /* Alert */
    .alert {
        padding: 20px 30px;
        border-radius: 15px;
        margin-bottom: 30px;
        display: none;
        font-weight: 600;
        animation: slideDown 0.5s;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

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

    .alert.success {
        background: rgba(78, 204, 163, 0.2);
        border: 2px solid #4ecca3;
        color: #4ecca3;
    }

    .alert.error {
        background: rgba(255, 107, 157, 0.2);
        border: 2px solid var(--pink);
        color: var(--pink);
    }

    .alert.show {
        display: block;
    }

    /* Summary Box */
    .summary-box {
        background: linear-gradient(135deg, rgba(255, 27, 141, 0.2), rgba(177, 13, 201, 0.2));
        backdrop-filter: blur(10px);
        padding: 35px;
        border-radius: 20px;
        border: 2px solid var(--pink);
        margin-top: 40px;
        box-shadow: 0 10px 40px rgba(255, 27, 141, 0.4);
    }

    .summary-box h3 {
        color: var(--gold);
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    .summary-item {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 27, 141, 0.3);
        font-size: 1.1rem;
    }

    .summary-item:last-child {
        border-bottom: none;
        font-weight: bold;
        font-size: 1.5rem;
        color: var(--gold);
        margin-top: 10px;
    }

    /* Admin Panel */
    .admin-login {
        max-width: 500px;
        margin: 0 auto;
    }

    .admin-panel {
        display: none;
    }

    .admin-panel.active {
        display: block;
    }

    .booking-item {
        background: rgba(255, 27, 141, 0.1);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 15px;
        margin-bottom: 20px;
        border: 2px solid rgba(255, 27, 141, 0.3);
        transition: all 0.3s;
    }

    .booking-item:hover {
        border-color: var(--pink);
        box-shadow: 0 5px 20px rgba(255, 27, 141, 0.4);
    }

    .booking-item h4 {
        color: var(--gold);
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

    .booking-item p {
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    /* Responsive */
    /* Responsive */
    @media (max-width: 768px) {
        body {
            font-size: 14px;
        }

        h1 {
            font-size: 2rem !important;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1rem !important;
        }

        .logo {
            font-size: 3rem !important;
        }

        h2 {
            font-size: 1.8rem !important;
        }

        h3 {
            font-size: 1.4rem !important;
        }

        .glass-section {
            padding: 25px 15px !important;
            margin-bottom: 40px;
        }

        /* Header */
        header {
            padding: 1.5rem 0;
        }

        .social-badge {
            font-size: 0.9rem;
            padding: 10px 20px;
        }

        /* Navigation */
        nav ul {
            gap: 0.5rem;
            padding: 0 10px;
        }

        nav a {
            font-size: 0.9rem;
            padding: 8px 15px;
        }

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

        .service-card {
            padding: 25px;
        }

        .service-icon {
            font-size: 2.5rem !important;
        }

        .service-name {
            font-size: 1.3rem !important;
        }

        .service-price {
            font-size: 1.2rem !important;
        }

        /* Calendar */
        .calendar {
            padding: 20px 10px;
        }

        .calendar-header {
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .calendar-header h3 {
            font-size: 1.3rem !important;
            order: -1;
        }

        .calendar-header button {
            padding: 10px 20px;
            font-size: 0.9rem;
            width: 100%;
        }

        .calendar-grid {
            gap: 5px;
        }

        .calendar-day {
            font-size: 0.85rem;
        }

        /* Time Slots */
        .time-slots {
            grid-template-columns: 1fr !important;
            gap: 10px;
        }

        .time-slot {
            padding: 18px;
            font-size: 0.95rem;
            min-height: 70px;
        }

        /* Form */
        input,
        textarea,
        select {
            font-size: 0.95rem !important;
            padding: 12px !important;
        }

        label {
            font-size: 1rem !important;
        }

        /* Buttons */
        .btn {
            padding: 15px 30px !important;
            font-size: 1rem !important;
            width: 100%;
        }

        .btn-secondary {
            padding: 15px 30px !important;
        }

        .contact-buttons {
            flex-direction: column !important;
            gap: 15px;
        }

        /* Summary Box */
        .summary-box {
            padding: 20px;
        }

        .summary-box h3 {
            font-size: 1.4rem !important;
        }

        .summary-item {
            font-size: 0.95rem;
            padding: 10px 0;
        }

        .summary-item:last-child {
            font-size: 1.2rem !important;
        }

        /* Location */
        .location-content {
            grid-template-columns: 1fr !important;
            gap: 25px;
        }

        .location-info {
            padding: 25px;
        }

        .location-info h3 {
            font-size: 1.4rem !important;
        }

        .location-info p {
            font-size: 1rem !important;
        }

        .map-container {
            height: 300px;
        }

        /* Gallery */
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
            gap: 15px;
        }

        .portfolio-filters {
            gap: 10px;
        }

        .filter-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        /* Modal */
        .modal {
            padding: 15px;
        }

        .modal-content {
            padding: 25px 15px !important;
            max-width: 95%;
        }

        .modal-content h2 {
            font-size: 1.6rem !important;
        }

        .close-modal {
            font-size: 2rem;
            right: 15px;
            top: 15px;
        }

        /* Payment Modal */
        .modal-content h4 {
            font-size: 1.1rem !important;
        }

        /* Admin Panel */
        .booking-item {
            padding: 20px 15px;
        }

        .booking-item h4 {
            font-size: 1.2rem !important;
        }

        .booking-item p {
            font-size: 0.95rem !important;
        }

        /* Upload Area */
        .upload-area {
            padding: 30px 20px;
        }

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

        /* Portfolio section */
        #portfolio .btn {
            font-size: 1.1rem !important;
            padding: 15px 30px !important;
        }

        /* Fix overflow issues */
        body,
        html {
            overflow-x: hidden;
            max-width: 100vw;
        }

        .glass-section {
            overflow-x: hidden;
        }

        /* Admin form adjustments */
        .form-group {
            margin-bottom: 20px;
        }

        /* Lightbox */
        .lightbox {
            padding: 20px;
        }

        .lightbox-content {
            max-width: 95%;
            max-height: 80%;
        }

        .lightbox-close {
            font-size: 2rem;
            right: 20px;
            top: 20px;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        h1 {
            font-size: 1.8rem !important;
        }

        h2 {
            font-size: 1.5rem !important;
        }

        .logo {
            font-size: 2.5rem !important;
        }

        .services-grid {
            gap: 15px;
        }

        .service-card {
            padding: 20px;
        }

        .calendar-day {
            font-size: 0.75rem;
        }

        .time-slots {
            grid-template-columns: 1fr !important;
        }

        nav a {
            font-size: 0.85rem;
            padding: 8px 12px;
        }

        .gallery-grid {
            grid-template-columns: 1fr !important;
        }

        .modal-content {
            padding: 20px 12px !important;
        }
    }

    .hidden {
        display: none;
    }

    /* Loading animation */
    .loading {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 27, 141, 0.3);
        border-radius: 50%;
        border-top-color: var(--pink);
        animation: spin 1s ease-in-out infinite;
    }

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