/* Global Styles */
:root {
    --pink: #D81B60;
    --gold: #C0A16B;
    --black: #000000;
    --white: #FFFFFF;
    --peach: #FFB74D;
    --light-pink: #F8E1E8;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --success: #28a745;
    --warning: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 35px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--pink);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--pink);
}

 /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 40px;
        }
        
        .hero-text {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            position: relative;
        }
        
        .hero-image-main {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: rotate(3deg);
            transition: transform 0.5s ease;
        }
        
        .hero-image:hover .hero-image-main {
            transform: rotate(0deg);
        }
        
        .hero-image-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: var(--gold);
            opacity: 0.1;
            top: -40px;
            right: 80px;
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--black);
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--pink);
            position: relative;
        }
        
        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--gold);
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
            max-width: 500px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 0.9rem;
        }
        
        .btn-primary {
            background-color: var(--pink);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3);
        }
        
        .btn-primary:hover {
            background-color: #c2185b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(216, 27, 96, 0.4);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--black);
            border: 2px solid var(--gold);
        }
        
        .btn-secondary:hover {
            background-color: var(--gold);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .hero-features {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background-color: var(--pink);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-text {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .floating-1 {
            width: 100px;
            height: 100px;
            background-color: var(--pink);
            top: 20%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-2 {
            width: 150px;
            height: 150px;
            background-color: var(--gold);
            bottom: 10%;
            right: 10%;
            animation: float 8s ease-in-out infinite 1s;
        }
        
        .floating-3 {
            width: 70px;
            height: 70px;
            background-color: var(--peach);
            top: 60%;
            left: 15%;
            animation: float 5s ease-in-out infinite 0.5s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        /* Editable Content */
        .editable-content {
            position: relative;
            padding: 10px;
            border: 2px dashed transparent;
            transition: border-color 0.3s;
            border-radius: 5px;
        }
        
        .editable-content:hover {
            border-color: var(--pink);
        }
        
        .editable-content:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        .edit-tooltip {
            position: absolute;
            top: -30px;
            right: 0;
            background-color: var(--black);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .editable-content:hover .edit-tooltip {
            opacity: 1;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-image {
                justify-content: center;
                margin-top: 40px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-features {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                height: auto;
                min-height: auto;
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 15px;
            }
        }

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    color: var(--pink);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    border-radius: 2px;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--pink);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Ensure service cards in gallery have same styling */
.gallery-section .service-card {
    margin-bottom: 30px;
}

/* Optional: Add specific styling for design cards */
.design-highlight::before {
    background: linear-gradient(90deg, var(--pink), var(--gold), var(--peach));
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 42px;
    color: var(--pink);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 600;
}

.contact-card p {
    margin-bottom: 0;
    font-size: 16px;
}

.map {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
    color: var(--white);
    padding: 70px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.7;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--pink);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(216, 27, 96, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 14px;
}

.copyright a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--pink);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.floating-1 {
    width: 120px;
    height: 120px;
    background-color: var(--pink);
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    width: 180px;
    height: 180px;
    background-color: var(--gold);
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite 1s;
}

.floating-3 {
    width: 80px;
    height: 80px;
    background-color: var(--peach);
    top: 60%;
    left: 15%;
    animation: float 5s ease-in-out infinite 0.5s;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    width: 85%;
    max-width: 700px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: fadeInUp 0.5s ease-out;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--pink);
    background-color: var(--light-gray);
}

/* Page-Specific Hero Styles */
.hero-services {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 50%, var(--light-pink) 100%);
}

.hero-gallery {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 50%, var(--light-pink) 100%);
}

.hero-booking {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 50%, var(--light-pink) 100%);
}

/* Booking System Styles */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.calendar-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* POPI Compliance Notice */
.popi-notice {
    background-color: #e8f4fd;
    border-left: 4px solid #2196F3;
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
}

.popi-notice h3 {
    color: #2196F3;
    margin-bottom: 15px;
    font-size: 20px;
}

.popi-notice ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.popi-notice li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.popi-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.popi-checkbox input {
    margin-top: 3px;
}

.popi-checkbox label {
    font-size: 14px;
    line-height: 1.5;
}

/* Calendar Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--pink);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background-color: var(--light-pink);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 12px;
    color: var(--dark-gray);
    font-size: 14px;
}

.calendar-day {
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.calendar-day:hover {
    background-color: var(--light-pink);
    transform: translateY(-2px);
}

.calendar-day.selected {
    background-color: var(--pink);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background-color: var(--light-gray);
}

.calendar-day.disabled:hover {
    background-color: var(--light-gray);
    transform: none;
}

.calendar-day.today {
    border: 2px solid var(--gold);
    background-color: rgba(192, 161, 107, 0.1);
}

/* Time Slots */
.time-slots-container {
    margin-top: 30px;
}

.time-slots-title {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.time-slot {
    padding: 12px 8px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background-color: var(--white);
}

.time-slot:hover {
    background-color: var(--light-pink);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.time-slot.selected {
    background-color: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3);
}

.time-slot.booked {
    background-color: var(--light-gray);
    color: #999;
    cursor: not-allowed;
    border-color: var(--light-gray);
}

.time-slot.booked:hover {
    background-color: var(--light-gray);
    transform: none;
    border-color: var(--light-gray);
}

/* Confirmation Section */
.confirmation-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 40px;
    display: none;
    border-left: 4px solid var(--success);
}

.confirmation-section.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.confirmation-details {
    margin-bottom: 25px;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.confirmation-details p {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.confirmation-details p:last-child {
    border-bottom: none;
}

.confirmation-details strong {
    color: var(--dark-gray);
    min-width: 120px;
}

/* Button Styles */
.btn-full {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn:disabled:hover {
    background-color: #ccc;
    transform: none;
    box-shadow: none;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-option {
    position: relative;
}

.service-option input {
    display: none;
}

.service-option label {
    display: block;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
    background-color: var(--white);
    font-weight: 500;
}

.service-option label:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-option input:checked + label {
    border-color: var(--pink);
    background-color: rgba(216, 27, 96, 0.05);
    color: var(--pink);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.2);
}

/* Admin Panel */
.admin-panel {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 40px;
    display: none;
    border-left: 4px solid var(--warning);
}

.admin-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.bookings-list {
    margin-top: 25px;
}

.booking-item {
    padding: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.booking-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.booking-info {
    flex: 1;
}

.booking-actions {
    display: flex;
    gap: 10px;
}

.status-confirmed {
    color: var(--success);
    font-weight: 600;
}

.status-pending {
    color: var(--warning);
    font-weight: 600;
}

/* Service Icon Styles */
.service-icon {
    background: linear-gradient(135deg, var(--pink), var(--gold));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(216, 27, 96, 0.4);
}

/* Gallery Overlay Styles */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    background: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-small:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 161, 107, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-content,
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .hero p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        text-align: center;
    }
    
    .hero-image-main {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 12px 0;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .feature {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .service-card,
    .contact-card {
        padding: 25px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 5% auto;
    }
}



