/* 
   BeautyParlour Style Sheet - style.css
   Color Theme: Soft pink, rose gold, white, cream, dark charcoal
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary-pink: #E91E63;
    --accent-gold: #B76E79;
    --bg-cream: #FFF4F7;
    --bg-beige: #F8EDEB;
    --text-dark: #222222;
    --text-muted: #666666;
    --white: #FFFFFF;
    --pink-gradient: linear-gradient(135deg, #E91E63 0%, #B76E79 100%);
    --gold-gradient: linear-gradient(135deg, #B76E79 0%, #E91E63 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px rgba(183, 110, 121, 0.05);
    --shadow-md: 0 8px 20px rgba(183, 110, 121, 0.1);
    --shadow-lg: 0 15px 35px rgba(183, 110, 121, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold);
}

/* Buttons */
.btn-premium {
    background: var(--pink-gradient);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary-pink);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 13px 31px;
    border-radius: 50px;
    border: 2px solid var(--primary-pink);
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.btn-outline-premium:hover {
    background: var(--pink-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 244, 247, 0.1);
}

.top-contact-bar a {
    color: var(--bg-cream);
}

.top-contact-bar a:hover {
    color: var(--accent-gold);
}

.top-social-icons a {
    margin-left: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.top-social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Sticky Header */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition-smooth);
}

.navbar-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
    transition: var(--transition-smooth);
}

.navbar-premium.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar-premium .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.navbar-premium .navbar-brand span {
    color: var(--primary-pink);
}

.navbar-premium .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 12px;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: var(--transition-smooth);
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-item.active .nav-link {
    color: var(--primary-pink);
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-item.active .nav-link::after {
    width: 100%;
}

/* Page Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--pink-gradient);
    border-radius: 2px;
}

.section-padding {
    padding: 100px 0;
}

/* Background Elements */
.bg-cream-section {
    background-color: var(--bg-cream);
}

.bg-beige-section {
    background-color: var(--bg-beige);
}

/* Hero Swiper Slider */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider-container .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(34, 34, 34, 0.8) 0%, rgba(34, 34, 34, 0.4) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
}

.hero-slide-content span {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hero-slide-content h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-slide-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-pink);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-pink);
    color: var(--white);
    border-color: transparent;
}

.swiper-pagination-bullet-active {
    background: var(--primary-pink) !important;
    width: 25px !important;
    border-radius: 5px !important;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

/* Page Title Banner */
.page-title-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.page-title-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.75);
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.breadcrumb-custom {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.breadcrumb-custom li a {
    color: var(--bg-cream);
}

.breadcrumb-custom li::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom li:last-child::after {
    content: '';
}

.breadcrumb-custom li.active {
    color: var(--primary-pink);
    font-weight: 500;
}

/* Service Card Design */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(183, 110, 121, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.service-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pink-gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.service-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(183, 110, 121, 0.1);
    padding-top: 15px;
    margin-top: auto;
}

.service-duration {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-duration i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.service-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-pink);
}

/* Service Card Hover States */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 30, 99, 0.15);
}

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

/* About Section */
.about-image-stack {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-main {
    width: 85%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.usp-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.usp-icon {
    background: var(--bg-cream);
    color: var(--primary-pink);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.usp-item:hover .usp-icon {
    background: var(--pink-gradient);
    color: var(--white);
    transform: rotateY(180deg);
}

.usp-text h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.usp-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Bridal Highlights */
.bridal-highlight-container {
    background: var(--bg-cream);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bridal-highlight-text {
    padding: 60px;
}

.bridal-highlight-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Team Card styling */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(183, 110, 121, 0.08);
    transition: var(--transition-smooth);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.85);
    padding: 12px 0;
    display: flex;
    justify-content: center;
    transition: var(--transition-smooth);
}

.team-socials a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1rem;
}

.team-socials a:hover {
    color: var(--primary-pink);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-card:hover .team-socials {
    bottom: 0;
}

/* Before / After Slider & Gallery */
.before-after-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(183, 110, 121, 0.08);
}

.before-after-images {
    position: relative;
    display: flex;
}

.before-after-half {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.before-after-half img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    bottom: 15px;
    background: rgba(34, 34, 34, 0.8);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}

.before-after-label.before {
    left: 15px;
}

.before-after-label.after {
    right: 15px;
}

.before-after-info {
    padding: 20px;
    text-align: center;
}

.before-after-info h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.before-after-info p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Pricing Package Card */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(183, 110, 121, 0.08);
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card.featured {
    background: var(--bg-cream);
    border: 2px solid var(--primary-pink);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--primary-pink);
    color: var(--white);
    padding: 4px 15px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
    transform: rotate(10deg);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-price {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 25px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.pricing-features li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pricing-features li i {
    color: var(--primary-pink);
    margin-right: 8px;
}

.pricing-features li.disabled {
    text-decoration: line-through;
    opacity: 0.5;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card:not(.featured):hover {
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Gallery Filtering */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 8px 24px;
    border: 1px solid rgba(183, 110, 121, 0.2);
    background: transparent;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--pink-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.25);
}

.gallery-grid-item {
    margin-bottom: 30px;
    display: block;
}

.gallery-item-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding-top: 100%; /* 1:1 Square aspect ratio */
}

.gallery-item-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay span {
    font-family: var(--font-body);
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gallery-view-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.gallery-view-btn:hover {
    background: var(--white);
    color: var(--primary-pink);
}

.gallery-item-inner:hover img {
    transform: scale(1.1);
}

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

/* Lightbox Modal */
.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-modal .modal-body {
    padding: 0;
    position: relative;
}

.lightbox-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Testimonials Carousel */
.testimonials-section {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(183, 110, 121, 0.08);
    position: relative;
    max-width: 800px;
    margin: 20px auto;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: rgba(233, 30, 99, 0.05);
}

.testimonial-rating {
    color: #FFD700; /* gold color */
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.testimonial-client {
    display: flex;
    align-items: center;
}

.testimonial-client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--accent-gold);
}

.testimonial-client-info h4 {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.testimonial-client-info p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin: 0;
}

/* Blog Card design */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(183, 110, 121, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 ratio */
}

.blog-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    color: var(--primary-pink);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary-pink);
}

.blog-content p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-pink);
    margin-top: auto;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 30, 99, 0.15);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Appointment Form Area */
.appointment-booking-box {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(183, 110, 121, 0.1);
    overflow: hidden;
}

.appointment-info-sidebar {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 50px;
    height: 100%;
}

.appointment-info-sidebar h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.appointment-info-sidebar p {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.appointment-info-item {
    display: flex;
    margin-bottom: 25px;
}

.appointment-info-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--bg-cream);
}

.appointment-info-text h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.appointment-info-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
}

.appointment-form-wrapper {
    padding: 50px;
}

.appointment-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 18px;
    font-family: var(--font-body);
    border: 1px solid rgba(183, 110, 121, 0.2);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
    outline: 0;
}

.form-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Contact Cards and Forms */
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(183, 110, 121, 0.08);
    transition: var(--transition-smooth);
    height: 100%;
}

.contact-info-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

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

.contact-info-card:hover .contact-info-card-icon {
    background: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(183, 110, 121, 0.08);
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    border: 1px solid rgba(183, 110, 121, 0.15);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px 25px;
    background-color: var(--white);
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-cream);
    color: var(--primary-pink);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E91E63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 25px;
    background-color: var(--white);
}

/* Instagram Gallery Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

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

/* Premium Footer */
.premium-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    padding-top: 80px;
    border-top: 3px solid var(--primary-pink);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-pink);
}

.footer-widget h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-pink);
}

.footer-widget p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact-info li i {
    color: var(--primary-pink);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.85rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn-newsletter {
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 8px 22px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.newsletter-form .btn-newsletter:hover {
    background: var(--accent-gold);
}

.footer-bottom {
    background-color: #171717;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links li a:hover {
    color: var(--primary-pink);
}

/* Floating Actions */
.floating-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.floating-whatsapp {
    right: 25px;
    background-color: #25D366;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.floating-call {
    left: 25px;
    background: var(--pink-gradient);
}

.floating-call:hover {
    transform: scale(1.1) rotate(-10deg);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Floating social side panel - luxury addition for FB / Insta floaters */
.floating-social-panel {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 10px 5px;
    box-shadow: var(--shadow-sm);
}

.floating-social-panel a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin: 5px 0;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.floating-social-panel a:hover {
    color: var(--white);
}

.floating-social-panel a.facebook:hover {
    background-color: #3b5998;
}

.floating-social-panel a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-social-panel a.youtube:hover {
    background-color: #ff0000;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}
