/* ===== CSS Variables ===== */
:root {
    --primary-color: #f8b4c1;
    --secondary-color: #e8a0ae;
    --accent-color: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fff5f7;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(248, 180, 193, 0.2);
    --shadow-hover: 0 15px 40px rgba(248, 180, 193, 0.3);
    --shadow-3d: 0 20px 60px rgba(248, 180, 193, 0.3), 0 10px 20px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #f8b4c1 0%, #e8a0ae 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    --gradient-3d: linear-gradient(145deg, #ffffff, #f8f8f8);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    perspective: 1000px;
}

body.loading {
    overflow: hidden;
}

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

/* ===== 3D Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8b4c1 0%, #e8a0ae 50%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--white);
    transform-style: preserve-3d;
}

.makeup-brush {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: rotate3d 3s linear infinite, float3d 2s ease-in-out infinite;
    transform-style: preserve-3d;
}

.preloader-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.loading-progress {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(248, 180, 193, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    background: url('hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        3px 3px 15px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(248, 180, 193, 0.6),
        0 0 60px rgba(248, 180, 193, 0.4);
    animation: fadeInUp 1s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(248, 180, 193, 0.5);
    animation: fadeInUp 1.2s ease;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(248, 180, 193, 0.5), 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1.4s ease;
    transform-style: preserve-3d;
    position: relative;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-8px) translateZ(20px) scale(1.05);
    box-shadow: 0 25px 60px rgba(248, 180, 193, 0.7), 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-4px) translateZ(10px) scale(1.02);
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

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

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

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

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(248, 180, 193, 0.2);
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateZ(-10px);
    opacity: 0.3;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 1rem;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(248, 180, 193, 0.4);
    animation: float3d 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background: var(--white);
}

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

.about-image {
    transform-style: preserve-3d;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transform: translateZ(20px);
    transition: all 0.5s ease;
}

.about-image:hover .image-wrapper {
    transform: translateZ(40px) rotateY(-5deg) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(248, 180, 193, 0.4), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(248, 180, 193, 0.1);
    transform-style: preserve-3d;
}

.feature-item:hover {
    transform: translateX(15px) translateZ(15px);
    box-shadow: 0 15px 40px rgba(248, 180, 193, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--gradient);
}

.feature-item:hover i,
.feature-item:hover span {
    color: var(--white);
}

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

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1500px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 180, 193, 0.1), rgba(232, 160, 174, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-20px) translateZ(30px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(248, 180, 193, 0.4), 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Ensure all service images display properly */
.service-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fix for portrait/landscape images */
.service-image img[src*=".PNG"],
.service-image img[src*=".png"] {
    object-fit: cover;
    object-position: center center;
}

.service-image img[src*=".JPG"],
.service-image img[src*=".jpg"],
.service-image img[src*=".jpeg"] {
    object-fit: cover;
    object-position: center center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

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

.service-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1500px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-3d);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    transform-style: preserve-3d;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-20px) translateZ(40px) scale(1.05);
    box-shadow: 0 50px 100px rgba(248, 180, 193, 0.5), 0 25px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.08) translateZ(20px);
    box-shadow: 0 40px 80px rgba(248, 180, 193, 0.5), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-20px) translateZ(60px) scale(1.12);
    box-shadow: 0 60px 120px rgba(248, 180, 193, 0.6), 0 30px 60px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite;
    transform-style: preserve-3d;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-header i {
    color: var(--white);
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card.featured .amount {
    color: var(--white);
}

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

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(248, 180, 193, 0.3);
    transform-style: preserve-3d;
    position: relative;
}

.pricing-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.featured .pricing-button {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.pricing-button:hover {
    transform: translateY(-5px) translateZ(15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(248, 180, 193, 0.5);
}

.pricing-button:hover::after {
    opacity: 1;
}

.pricing-card.featured .pricing-button:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    perspective: 1500px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-3d);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 40px 80px rgba(248, 180, 193, 0.4), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 180, 193, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-3d);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    border: 1px solid rgba(248, 180, 193, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    border-radius: 20px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px) translateZ(30px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(248, 180, 193, 0.4), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Booking Section ===== */
.booking {
    background: var(--bg-light);
}

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

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.booking-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.booking-form-wrapper:hover {
    transform: translateZ(20px);
    box-shadow: 0 40px 80px rgba(248, 180, 193, 0.4), 0 20px 40px rgba(0, 0, 0, 0.15);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    transform-style: preserve-3d;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(248, 180, 193, 0.15), 0 10px 30px rgba(248, 180, 193, 0.2);
    transform: translateZ(10px) scale(1.02);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(248, 180, 193, 0.4);
    transform-style: preserve-3d;
    position: relative;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-8px) translateZ(20px) scale(1.05);
    box-shadow: 0 20px 50px rgba(248, 180, 193, 0.6), 0 10px 25px rgba(0, 0, 0, 0.15);
}

.submit-button:hover::before {
    opacity: 1;
}

.submit-button:active {
    transform: translateY(-4px) translateZ(10px) scale(1.02);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(248, 180, 193, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.contact-item:hover .contact-icon {
    transform: translateZ(20px) rotate(360deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(248, 180, 193, 0.6);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    height: 400px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.contact-map:hover {
    transform: translateZ(20px);
    box-shadow: 0 30px 70px rgba(248, 180, 193, 0.4), 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(248, 180, 193, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-8px) translateZ(15px) rotate(360deg) scale(1.2);
    box-shadow: 0 15px 40px rgba(248, 180, 193, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse3d 2s infinite;
    transform-style: preserve-3d;
}

.whatsapp-float:hover {
    transform: scale(1.2) translateZ(20px) rotate(15deg);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.7), 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse3d {
    0%, 100% { 
        transform: scale(1) translateZ(0);
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.1) translateZ(10px);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7), 0 8px 20px rgba(0, 0, 0, 0.25);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) translateZ(0);
    }
    50% {
        transform: translateY(-10px) translateZ(10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(248, 180, 193, 0.5), 0 0 40px rgba(248, 180, 193, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(248, 180, 193, 0.8), 0 0 80px rgba(248, 180, 193, 0.5);
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 3.5rem;
        font-weight: 900;
    }

    .hero-tagline {
        font-size: 1.4rem;
        font-weight: 500;
    }

    .about-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix service images on mobile */
    .service-image {
        height: 280px;
    }
    
    .service-image img {
        object-fit: cover;
        object-position: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        font-weight: 500;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Fix service images on small mobile */
    .service-image {
        height: 250px;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .booking-form-wrapper {
        padding: 2rem;
    }

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


/* ===== Additional 3D Enhancements ===== */

.service-price {
    font-weight: 600;
    font-size: 1.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(248, 180, 193, 0.3);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(248, 180, 193, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-author img {
    transform: translateZ(20px) scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(248, 180, 193, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce3d 2s infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

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

/* ===== Glassmorphism Effects ===== */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(248, 180, 193, 0.2);
}

/* ===== Neon Glow on Hover ===== */
.pricing-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(248, 180, 193, 0.5));
}

.pricing-card:hover .pricing-header i {
    filter: drop-shadow(0 0 20px rgba(248, 180, 193, 0.8)) drop-shadow(0 0 40px rgba(248, 180, 193, 0.6));
    transform: scale(1.2) rotateY(360deg);
}

/* ===== Depth Layers ===== */
.service-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
    z-index: 2;
}

/* ===== Shimmer Enhancement ===== */
.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

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

/* ===== Floating Particles Effect ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle, rgba(248, 180, 193, 0.08) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* ===== Enhanced Card Shadows ===== */
.service-card,
.pricing-card,
.testimonial-card,
.booking-form-wrapper {
    position: relative;
}

.service-card::after,
.pricing-card::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(248, 180, 193, 0.3), transparent);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::after,
.pricing-card:hover::after,
.testimonial-card:hover::after {
    opacity: 1;
}

/* ===== Responsive 3D Adjustments ===== */
@media (max-width: 968px) {
    .service-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover,
    .gallery-item:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .makeup-brush {
        font-size: 3rem;
    }
    
    .preloader-content h2 {
        font-size: 1.8rem;
    }
    
    .loading-bar {
        width: 200px;
    }
}
