/* Aesthetics Page Specific Styles */

/* Aesthetics Hero Section */
.aesthetics-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.aesthetics-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.aesthetics-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aesthetics-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(212, 175, 55, 0.3));
    z-index: -1;
}

.aesthetics-hero .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.aesthetics-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.aesthetics-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Aesthetic Services Grid */
.aesthetic-services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card.luxury {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card.luxury:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card.luxury:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-gold);
    font-size: 14px;
    width: 16px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card.luxury .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Aesthetics Section */
.why-choose-aesthetics {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Before & After Gallery */
.before-after-gallery {
    padding: 100px 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
    position: relative;
}

.before, .after {
    position: relative;
    overflow: hidden;
}

.before img, .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.after .label {
    background: var(--accent-gold);
    color: var(--white);
}

.gallery-item h4 {
    padding: 20px;
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.consultation-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.consultation-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.contact-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-methods .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consultation-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.consultation-form h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.consultation-form .form-group {
    margin-bottom: 25px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.consultation-form select {
    color: var(--text-dark);
    background: var(--white);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.2);
}

.consultation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.consultation-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Aesthetics */
@media (max-width: 768px) {
    .aesthetics-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .aesthetics-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-methods .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .aesthetics-hero {
        height: 60vh;
    }
    
    .aesthetics-hero .hero-title {
        font-size: 2rem;
    }
    
    .service-card.luxury {
        margin: 0 10px;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .before-after {
        height: 200px;
    }
}

/* Animation for luxury cards */
@keyframes luxuryGlow {
    0% { box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2); }
    100% { box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
}

.service-card.luxury:hover {
    animation: luxuryGlow 2s infinite;
}

/* Gold gradient text effect */
.gold-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Luxury button hover effects */
.btn-gold {
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

/* Premium section dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 60px 0;
    border: none;
}
