:root {
    --primary-color: #D4AF37;  /* Luxury gold */
    --secondary-color: #1E1E1E; /* Rich black */
    --accent-color: #E5E5E5;   /* Light silver */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --background-light: #FFFFFF;
    --background-dark: #F9F9F9;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E5A7 50%, #D4AF37 100%);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.header.scroll-up .nav-container {
    padding: 0.75rem var(--spacing-sm);
}

.logo {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scroll-up .logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.book-now {
    background: var(--gold-gradient);
    color: var(--text-dark) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.book-now::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    overflow: hidden;
    perspective: 1px;
    transform-style: preserve-3d;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    transform: translateZ(-1px) scale(2);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    transform: translateZ(0);
}

.hero-main {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    transform: translateZ(0.1px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    transform: translateZ(0.05px);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    transform: translateZ(0.15px);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background-color: #C5A028;
}

.btn-secondary {
    background-color: #2A2A2A;
    color: white;
}

.btn-secondary:hover {
    background-color: #1A1A1A;
}

.trust-indicators {
    transform: translateZ(0.2px);
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
}

.rating .text {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.cert-dot {
    color: #D4AF37;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 6rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.services-preview {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-card {
    background: #fff;
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.service-title {
    text-align: left;
    position: relative;
}

.service-title h3 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.service-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    color: #d4af37;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f2d272 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    text-align: left;
}

.service-description p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-size: 1rem;
    font-weight: 400;
}

.service-features li i {
    color: #d4af37;
    font-size: 1rem;
    background: rgba(212, 175, 55, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gold-gradient);
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-cta:hover::before {
    transform: translateX(100%);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .service-title h3 {
        font-size: 1.8rem;
    }

    .service-description p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.95rem;
    }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 10px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-20px, -20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(20px, 20px); }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-title h3 {
        font-size: 1.75rem;
    }
}

/* Services Section */
.services {
    padding: var(--spacing-lg) var(--spacing-sm);
    background: var(--background-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-lg) var(--spacing-sm);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,249,249,0.95) 100%);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-category {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.pricing-category h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.pricing-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: var(--spacing-sm) 0;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.current-price {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.pricing-card p {
    text-align: center;
    color: #666;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.book-now-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.book-now-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.book-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.book-now-button:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .pricing h2 {
        font-size: 2rem;
        padding: 0 var(--spacing-sm);
    }
    
    .pricing-category h3 {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .pricing-card {
        margin: 0 var(--spacing-sm);
    }
}

/* Contact Form */
.contact {
    padding: var(--spacing-lg) var(--spacing-sm);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.95) 100%),
                url('../images/contact-bg.svg') center/cover;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: grid;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    width: 100%;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Message Styles */
.message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: white;
    animation: slideIn 0.3s ease;
    z-index: 1000;
}

.message.success {
    background: #4CAF50;
}

.message.error {
    background: #f44336;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);

    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    opacity: 0.8;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: var(--spacing-sm);
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        margin: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing h2,
    .services h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .pricing-category h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        margin: 0 var(--spacing-sm);
    }
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
}

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

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

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.contact-info i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

/* Add floating shapes animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.shape1 { top: 10%; left: 10%; }
.shape2 { top: 60%; right: 10%; animation-delay: 1s; }
.shape3 { bottom: 10%; left: 20%; animation-delay: 2s; }

/* Add section transitions */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(249, 249, 249, 1), transparent);
    z-index: 1;
}

/* Add luxury accents */
.service-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 15px auto;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

/* Enhanced animations */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.primary-button, .submit-button {
    background: var(--gold-gradient);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    background-image: linear-gradient(
        45deg,
        var(--primary-color) 0%,
        #F4E5A7 50%,
        var(--primary-color) 100%
    );
}

/* Add elegant scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Enhanced form styling */
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Add subtle parallax effect */
.section-transition {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Enhanced card hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Add luxury dividers */
.section-divider {
    position: relative;
    height: 2px;
    background: var(--gold-gradient);
    margin: var(--spacing-lg) 0;
    opacity: 0.3;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

/* Enhanced mobile menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }
}

/* Add smooth reveal animation for sections */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-links {
        padding: var(--spacing-lg);
    }
    
    .nav-links a {
        font-size: 1.2rem;
        margin: 10px 0;
    }
}

/* Enhanced Form Styles */
.form-group.focused label {
    color: var(--primary-color);
    transform: translateY(-5px);
    font-size: 0.9em;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #4CAF50;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f44336;
}

.form-group.error::after {
    content: '⚠';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #f44336;
}

/* Enhanced Button Hover Effects */
.primary-button:hover,
.secondary-button:hover,
.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Pricing Card Enhancements */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: var(--transition);
    z-index: 0;
}

.pricing-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

/* Service Icon Animation */
.service-icon {
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.2) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50%;
}

.service-card:hover .service-icon::after {
    width: 120%;
    height: 120%;
}

/* Text Selection Style */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Loading Animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Enhanced Section Transitions */
.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(249, 249, 249, 1), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Focus Styles */
:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Enhanced Typography */
h1, h2, h3, h4 {
    letter-spacing: -0.5px;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 -1px -1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Hover Lift Effect */
.service-card,
.pricing-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover,
.pricing-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

/* Service Feature Sections */
.service-feature {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(249,249,249,0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

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

.service-header h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 300;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.service-details {
    padding: 1rem;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.benefits-list {
    margin: 2rem 0;
}

.benefits-list h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.benefits-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary-color);
}

.treatment-areas {
    margin: 2rem 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.area-item {
    text-align: center;
    padding: 1rem;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-3px);
}

.area-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.facial-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.facial-card {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.facial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.facial-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facial-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.facial-card p {
    color: #666;
    font-size: 0.9rem;
}

.back-facials {
    margin: 2rem 0;
}

.back-facial-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.option {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.option h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Enhanced FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-category {
    margin: 3rem 0;
}

.faq-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

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

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h4 i {
    color: var(--primary-color);
    font-size: 1.1em;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item:hover h4 i {
    transform: scale(1.1);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .facial-types {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .back-facial-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-feature {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .service-header h3 {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facial-types {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-card .stars {
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card .stars i {
    color: #FFD700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-card cite {
    color: var(--primary-color);
    font-weight: 500;
    font-style: normal;
}

/* Section Headings */
.why-choose-us h2,
.faq h2,
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    padding: 0 var(--spacing-md);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us,
.faq,
.testimonials {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .why-choose-us h2,
    .faq h2,
    .testimonials h2 {
        font-size: 2rem;
        padding: 0 var(--spacing-sm);
    }
}

/* Loading Animations */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    animation: logoReveal 1.5s ease forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo Animation */
.logo {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.nav-links a {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.nav-links a:nth-child(1) { animation-delay: 0.1s; }
.nav-links a:nth-child(2) { animation-delay: 0.2s; }
.nav-links a:nth-child(3) { animation-delay: 0.3s; }
.nav-links a:nth-child(4) { animation-delay: 0.4s; }
.nav-links a:nth-child(5) { animation-delay: 0.5s; }
.nav-links a:nth-child(6) { animation-delay: 0.6s; }

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

/* Content Reveal Animation */
.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.book-now-btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.book-now-btn:hover::before {
    transform: translateX(100%);
}

.service-option {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-option h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.price-new {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.areas {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .service-option {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-option h3 {
        font-size: 1.5rem;
    }

    .price-new {
        font-size: 1.8rem;
    }

    .book-now-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ========== JUNE SPECIAL POPUP - ISOLATED COMPONENT ========== */
.june-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.june-popup-modal {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #D4AF37;
    animation: juneSlideUp 0.3s ease-out;
}

.june-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.june-popup-close:hover {
    color: #D4AF37;
}

.june-popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 30px;
}

.june-popup-header h2 {
    font-size: 1.4rem;
    color: #1A1A1A;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.june-popup-pricing {
    margin-bottom: 1.5rem;
}

.june-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.june-price-row:last-child {
    border-bottom: none;
}

.june-service {
    font-weight: 600;
    color: #1A1A1A;
}

.june-price {
    font-weight: 700;
    color: #D4AF37;
    font-size: 1.1rem;
}

.june-popup-features {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #D4AF37;
}

.june-popup-features p {
    margin: 0 0 0.3rem 0;
    font-size: 0.9rem;
    color: #1A1A1A;
    line-height: 1.4;
}

.june-popup-features p:last-child {
    margin-bottom: 0;
}

.june-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.june-call-btn,
.june-book-btn {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.june-call-btn {
    background: #D4AF37;
    color: white;
}

.june-call-btn:hover {
    background: #c49c2a;
    transform: translateY(-2px);
}

.june-book-btn {
    background: #1E1E1E;
    color: white;
}

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

/* Floating Button */
.june-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    min-width: 110px;
    animation: juneFloat 3s ease-in-out infinite;
}

.june-floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(238, 90, 36, 0.6);
    animation: none;
}

.june-float-text {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.june-float-sub {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

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

@keyframes juneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .june-popup-modal {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .june-popup-header h2 {
        font-size: 1.2rem;
    }
    
    .june-price-row {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .june-price {
        font-size: 1rem;
    }
    
    .june-call-btn,
    .june-book-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .june-floating-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1rem;
        min-width: 95px;
    }
    
    .june-float-text {
        font-size: 0.75rem;
    }
    
    .june-float-sub {
        font-size: 0.65rem;
    }
}