/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    outline: none;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav a:hover {
    color: #e91e63;
}

.header-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
}

.header-icons i:hover {
    color: #e91e63;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(233, 30, 99, 0.1);
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        padding: 2rem;
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }
    
    .nav.active .nav-list {
        transform: translateY(0);
    }
    
    .nav-list li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav.active .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav.active .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav.active .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav.active .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .nav.active .nav-list li:nth-child(5) { transition-delay: 0.3s; }
    .nav.active .nav-list li:nth-child(6) { transition-delay: 0.35s; }
    .nav.active .nav-list li:nth-child(7) { transition-delay: 0.4s; }
    
    .nav a {
        font-size: 1.5rem;
        font-weight: 700;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(233, 30, 99, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav a:hover::before {
        left: 100%;
    }
    
    .nav a:hover {
        color: #e91e63;
        background: rgba(233, 30, 99, 0.05);
        border-radius: 10px;
        padding: 1rem;
        transform: translateX(5px);
    }
    
    .logo-img {
        height: 50px;
        transition: transform 0.3s ease;
    }
    
    .logo-img:hover {
        transform: scale(1.1);
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav a {
        font-size: 0.95rem;
    }
    
    .logo-img {
        height: 55px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .header .container {
        padding: 0.8rem 15px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav a {
        font-size: 1.3rem;
    }
    
    .nav-list {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-line {
        height: 2px;
    }
}

/* Large Mobile Styles */
@media (max-width: 600px) and (min-width: 481px) {
    .nav a {
        font-size: 1.4rem;
    }
    
    .nav-list {
        gap: 1.8rem;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
    .header .container {
        padding: 0.6rem 10px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 0.8rem 0;
    }
    
    .nav-list {
        gap: 1.2rem;
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        width: 22px;
        height: 22px;
    }
}

/* Hero Section */
.hero {
    height: 95vh;
    background: linear-gradient(rgba(233, 30, 99, 0.3), rgba(233, 30, 99, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="bg" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ff9ec7;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e91e63;stop-opacity:1" /></radialGradient></defs><rect width="100%" height="100%" fill="url(%23bg)"/><circle cx="200" cy="200" r="100" fill="%23ffb3d1" opacity="0.3"/><circle cx="1000" cy="600" r="150" fill="%23ff9ec7" opacity="0.2"/><circle cx="800" cy="300" r="80" fill="%23ffb3d1" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-feature i {
    font-size: 1.2rem;
    color: #fff;
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 140px;
    text-align: center;
}

.hero-btn.primary {
    background: #e91e63;
    color: white;
    border: 2px solid #e91e63;
}

.hero-btn.primary:hover {
    background: #c2185b;
    border-color: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}


.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-dots.left .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dots.right .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dots .dot.active,
.nav-dots .dot:hover {
    background: #e91e63;
    transform: scale(1.2);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: none;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.service-image.facials {
    background-image: url('../images/service-1.jpg');
}

.service-image.makeup {
    background-image: url('../images/Application-de-maquillage.webp');
}

.service-image.nails,
.service-image.nails-2 {
    background-image: url('../images/service-2.jpg');
}

.service-image.hair-styling {
    background-image: url('../images/Maquillage-de-mariée.png');
}

.service-image.hair {
    background-image: url('../images/Application.jpg');
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

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

.book-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.book-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* Winter Specials */
.winter-specials {
    background: #333;
    color: white;
    padding: 4rem 0;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}
.services .section-title{
    color: #333;
}

.specials-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.special-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.special-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63;
}

/* Book Now Section */
.book-now {
    background: #333;
    color: white;
    padding: 4rem 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.booking-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.booking-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    color: wheat;
}

.tarifs-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    color: gray;
}

.booking-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

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

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
}

.book-button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.book-button:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 4rem 0;
}

.testimonials .section-title {
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial-btn {
    background: #e91e63;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.testimonial-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Visit Us / Contact */
.visit-us {
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.visit-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="50" fill="white" opacity="0.1"/><circle cx="300" cy="200" r="30" fill="white" opacity="0.1"/><circle cx="500" cy="150" r="40" fill="white" opacity="0.1"/><circle cx="800" cy="100" r="60" fill="white" opacity="0.1"/><circle cx="1000" cy="200" r="35" fill="white" opacity="0.1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.contact-info .section-title {
    color: #e91e63;
    margin-bottom: 2rem;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
}

.address p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 2rem;
}

.hours h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e91e63;
}

.contact-form {
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 3rem;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    backdrop-filter: blur(10px);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 5px;
    background: white;
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.submit-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.directions {
    text-align: center;
    margin-top: 1rem;
}

.directions-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.directions-link:hover {
    color: #ff9ec7;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column h4 {
    color: #e91e63;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column i {
    color: #e91e63;
    margin-right: 0.5rem;
    width: 16px;
}

.footer-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b9d;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.location-info {
    margin-bottom: 1rem;
}

.hours {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .specials-list {
        grid-template-columns: 1fr;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .booking-card,
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.booking-card,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

.booking-card:hover .book-button {
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c2185b;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="50" fill="white" opacity="0.1"/><circle cx="300" cy="200" r="30" fill="white" opacity="0.1"/><circle cx="500" cy="150" r="40" fill="white" opacity="0.1"/><circle cx="800" cy="100" r="60" fill="white" opacity="0.1"/><circle cx="1000" cy="200" r="35" fill="white" opacity="0.1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Specials Page Styles */
.specials-content {
    padding: 4rem 0;
    background: #f8f8f8;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.special-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.special-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.special-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.special-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.price-section {
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
}

.special-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-special-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.book-special-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.special-terms {
    background: #333;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.special-terms h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.special-terms ul {
    list-style: none;
    padding: 0;
}

.special-terms li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.special-terms li::before {
    content: '•';
    color: #e91e63;
    position: absolute;
    left: 0;
}

/* About Page Styles */
.about-story {
    padding: 4rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.our-values {
    padding: 4rem 0;
    background: #f8f8f8;
}

.our-values h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.our-team {
    padding: 4rem 0;
    background: white;
}

.our-team h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.awards {
    padding: 4rem 0;
    background: #f8f8f8;
}

.awards h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.award-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.award-item p {
    color: #666;
}

/* Book Page Styles */
.booking-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.submit-booking-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.submit-booking-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.booking-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.booking-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 2rem;
    text-align: center;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h4 {
    color: #e91e63;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section p {
    color: #666;
    margin-bottom: 0.3rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    color: #666;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.info-section li::before {
    content: '•';
    color: #e91e63;
    position: absolute;
    left: 0;
}

.services-overview {
    padding: 4rem 0;
    background: white;
}

.services-overview h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: #f8f8f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

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

.info-icon {
    font-size: 1.5rem;
    color: #e91e63;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.map-section {
    padding: 4rem 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.map-container {
    margin-bottom: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.directions-info {
    text-align: center;
}

.directions-info h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.directions-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.directions-btn {
    background: #e91e63;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.directions-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.faq-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #e91e63;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .specials-grid,
    .values-grid,
    .team-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .contact-grid,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* CV Page Styles */
.cv-content {
    padding: 4rem 0;
    background: #f8f8f8;
}

.cv-grid {
    display: grid;
    gap: 3rem;
}

.profile-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e91e63;
}

.profile-info h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

.location {
    color: #e91e63;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.experience-section,
.skills-section,
.education-section,
.certifications-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-section h3,
.skills-section h3,
.education-section h3,
.certifications-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.experience-header h4 {
    color: #333;
    font-size: 1.3rem;
}

.date {
    color: #e91e63;
    font-weight: 600;
}

.experience-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.experience-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-category h4 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.skill-category li::before {
    content: '•';
    color: #e91e63;
    position: absolute;
    left: 0;
}

.education-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

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

.education-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.school {
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.cert-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Page Styles */
.pricing-content {
    padding: 4rem 0;
    background: #f8f8f8;
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #e91e63;
    transform: scale(1.05);
}

.pricing-card .service-image {
    height: 150px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.pricing-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.features li::before {
    content: '✓';
    color: #e91e63;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #e91e63;
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 1rem;
}

.package-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.package-features li::before {
    content: '✓';
    color: #e91e63;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.pricing-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-nav {
    padding: 4rem 0;
    background: white;
}

.gallery-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.gallery-category {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.gallery-category:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-category h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
    text-align: center;
}

.gallery-category p {
    color: #666;
    text-align: center;
    font-size: 0.9rem;
}

.featured-gallery {
    padding: 4rem 0;
    background: #f8f8f8;
}

.featured-gallery h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: default;
}

.featured-item.large {
    grid-column: span 2;
    height: 400px;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
    display: block;
}

.featured-item:hover img {
    transform: scale(1.05);
}

/* Loading state for images */
.featured-item img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.featured-item img.loading {
    opacity: 0.3;
    background: linear-gradient(135deg, #ff9ec7, #ffb3d1);
}

.featured-item img.loaded {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.featured-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-content {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.services-info {
    padding: 4rem 0;
    background: #f8f8f8;
}

.services-info h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: transparent;
    /* padding: 2rem; */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63;
}

.gallery-testimonials {
    padding: 4rem 0;
    background: white;
}

.gallery-testimonials h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service {
    color: #e91e63;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Before/After Gallery Styles */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.before-after-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
}

.before-image,
.after-image {
    position: relative;
    overflow: hidden;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.transformation-info {
    padding: 2rem;
}

.transformation-info h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.transformation-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.duration {
    color: #e91e63;
    font-weight: 600;
    font-size: 0.9rem;
}

.transformation-testimonials {
    padding: 4rem 0;
    background: #f8f8f8;
}

/* Backstage Gallery Styles */
.process-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.process-section h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e91e63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .profile-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .skills-grid,
    .certifications-grid,
    .pricing-grid,
    .package-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .featured-item {
        height: 250px;
    }
    
    .featured-item.large {
        grid-column: span 1;
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-categories,
    .gallery-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .featured-item {
        height: 200px;
    }
    
    .featured-item.large {
        height: 250px;
    }
}

/* Wave Effect Styles */
:root {
    --wave-color: #f8f8f8;
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-color: transparent;
    z-index: 1;
    transition: 500ms;
    pointer-events: none;
}

.waves::before,
.waves::after {
    content: '';
    position: absolute;
    width: 300vw;
    height: 300vw;
    top: -65vw;
    left: 50%;
    transform: translate(-50%, -75%);
}

.waves::before {
    border-radius: 44%;
    background: rgba(255, 255, 255, 0.3);
    animation: waves 8s linear infinite;
}

.waves::after {
    border-radius: 44%;
    background: rgba(255, 255, 255, 0.1);
    animation: waves 15s linear infinite;
}

@keyframes waves {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}
