* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

:root {
    /* Luxurious Rose Gold Palette */
    --primary: #C98B9B;
    --primary-dark: #A16B79;
    --primary-light: #E8D5DB;
    --secondary: #D4B2A7;
    --light: #FAF7F8;
    --dark: #332D2F;
    --gray: #8A7F85;
    --white: #ffffff;
    --shadow-sm: 0 4px 15px rgba(201, 139, 155, 0.08);
    --shadow-md: 0 10px 30px rgba(201, 139, 155, 0.12);
    --shadow-lg: 0 15px 40px rgba(201, 139, 155, 0.15);
    --border-radius: 20px;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-selector {
    display: flex;
    background: rgba(232, 213, 219, 0.4);
    border-radius: 30px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.lang-selector a.lang-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lang-selector a.lang-btn:hover {
    color: var(--primary-dark);
}

.lang-selector a.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 10px rgba(201, 139, 155, 0.4);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section - Revamped */
.hero {
    padding: 100px 0 140px;
    background: linear-gradient(135deg, rgba(250, 247, 248, 0.95), rgba(232, 213, 219, 0.6)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="%23C98B9B"/></svg>');
    background-size: cover, 30px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(232, 213, 219, 0.5);
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.highlight-text {
    color: var(--primary-dark);
    font-style: italic;
    position: relative;
    white-space: nowrap;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-light);
    opacity: 0.6;
    z-index: -1;
    border-radius: 6px;
}

.hero p {
    font-size: 1.25rem;
    margin: 0 0 40px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    object-fit: cover;
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

.hero-stats span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image-frame {
    border-radius: 30px 100px 30px 100px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 10px solid var(--white);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-position: center;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Floating Info Card (Glassmorphism) */
.floating-info-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 3;
    animation: float-delayed 7s ease-in-out infinite;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    color: var(--dark);
    font-size: 1.1rem;
}

.info-text span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Decorative Sparkles */
.sparkle {
    position: absolute;
    color: var(--primary);
    opacity: 0.4;
    animation: pulse-spin 4s linear infinite;
    z-index: 1;
}

.sparkle-1 {
    top: 20%;
    left: 10%;
    font-size: 1.5rem;
    animation-duration: 5s;
}

.sparkle-2 {
    top: 70%;
    right: 45%;
    font-size: 2rem;
    color: var(--primary-dark);
    animation-duration: 7s;
}

.sparkle-3 {
    top: 15%;
    right: 15%;
    font-size: 1.2rem;
    animation-duration: 4s;
}

.sparkle-4 {
    top: 5%;
    left: 8%;
    font-size: 1.8rem;
    color: var(--primary-light);
    animation-duration: 6s;
    opacity: 0.6;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-spin {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.4;
    }
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.btn:hover {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(201, 139, 155, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 139, 155, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 139, 155, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 139, 155, 0);
    }
}

.btn.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* SVG Background Blobs for feminine organic feel */
.hero-bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E8D5DB' d='M44.7,-76.4C58.8,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.6,90,-16.3,87.4,-1.5C84.8,13.3,77.1,26.6,67.3,37.3C57.5,48,45.6,56.1,32.7,64.2C19.8,72.3,5.9,80.4,-7.8,79.5C-21.5,78.6,-34.9,68.7,-48.6,60.1C-62.3,51.5,-76.3,44.2,-84.4,31.7C-92.5,19.2,-94.7,1.5,-90.4,-13.7C-86.1,-29,-75.3,-41.8,-63.1,-52.1C-50.9,-62.4,-37.3,-70.2,-23.1,-75.6C-8.9,-81,5.9,-84,18.7,-81Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-blob-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FAF7F8' d='M53.8,-76.4C69.3,-68.2,81.1,-51.7,85.1,-34.2C89.1,-16.7,85.3,1.8,79.6,19C73.9,36.2,66.3,52,53.2,62.2C40.1,72.4,21.5,77,-0.2,77.3C-21.9,77.6,-43.8,73.6,-57.8,62.1C-71.8,50.6,-77.9,31.6,-80.6,13.1C-83.3,-5.4,-82.6,-23.4,-74.6,-38.2C-66.6,-53,-51.3,-64.6,-35.1,-72.4C-18.9,-80.2,-1.8,-84.2,16.2,-81.9C34.2,-79.6,53.8,-76.4,53.8,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    transform: scaleX(-1);
}

.about-bg-blob {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FAF7F8' d='M53.8,-76.4C69.3,-68.2,81.1,-51.7,85.1,-34.2C89.1,-16.7,85.3,1.8,79.6,19C73.9,36.2,66.3,52,53.2,62.2C40.1,72.4,21.5,77,-0.2,77.3C-21.9,77.6,-43.8,73.6,-57.8,62.1C-71.8,50.6,-77.9,31.6,-80.6,13.1C-83.3,-5.4,-82.6,-23.4,-74.6,-38.2C-66.6,-53,-51.3,-64.6,-35.1,-72.4C-18.9,-80.2,-1.8,-84.2,16.2,-81.9C34.2,-79.6,53.8,-76.4,53.8,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.about {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.hero .container,
.about .container {
    position: relative;
    z-index: 10;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 70px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    min-width: 300px;
    max-width: 500px;
}

.about-image {
    border-radius: 100px 30px 100px 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 10px solid var(--white);
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    right: -25px;
    top: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(201, 139, 155, 0.5);
    z-index: 3;
    border: 5px solid var(--white);
    animation: float-delayed 6s ease-in-out infinite reverse;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.img-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--white);
    border-radius: calc(var(--border-radius) - 8px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-position: center;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: rgba(250, 247, 248, 0.5);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--white);
    border-color: rgba(201, 139, 155, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-item span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    font-style: italic;
    opacity: 0.8;
    margin-top: 15px;
    font-weight: 400;
    transform: rotate(-3deg);
}

/* Services Section */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--light);
    overflow: hidden;
}

.services-bg-blob {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E8D5DB' d='M44.7,-76.4C58.8,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.6,90,-16.3,87.4,-1.5C84.8,13.3,77.1,26.6,67.3,37.3C57.5,48,45.6,56.1,32.7,64.2C19.8,72.3,5.9,80.4,-7.8,79.5C-21.5,78.6,-34.9,68.7,-48.6,60.1C-62.3,51.5,-76.3,44.2,-84.4,31.7C-92.5,19.2,-94.7,1.5,-90.4,-13.7C-86.1,-29,-75.3,-41.8,-63.1,-52.1C-50.9,-62.4,-37.3,-70.2,-23.1,-75.6C-8.9,-81,5.9,-84,18.7,-81Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.8),
        var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(232, 213, 219, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Staggered Layout for Wide Screens */
@media (min-width: 900px) {
    .service-card-center {
        transform: translateY(40px);
    }
}

/* Premium Badge */
.service-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(201, 139, 155, 0.4);
    pointer-events: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        0 20px 40px rgba(201, 139, 155, 0.25);
    border-color: rgba(201, 139, 155, 0.6);
}

@media (min-width: 900px) {
    .service-card.service-card-center:hover {
        transform: translateY(25px) scale(1.02);
    }
}

.service-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon-float {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(201, 139, 155, 0.4);
    border: 3px solid var(--white);
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon-float {
    transform: rotate(15deg) scale(1.1);
}

.service-content {
    padding: 40px 35px 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
    flex-grow: 1;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.panel-btn:hover {
    color: var(--white);
    letter-spacing: 1px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--primary-dark);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* =========================================
   Restored & Enhanced Experience Section
   ========================================= */
.experience {
    position: relative;
    padding: 120px 0;
    /* Soft Animated Background Gradient with deeper rose tint */
    background: linear-gradient(135deg, var(--white) 0%, rgba(232, 213, 219, 0.6) 40%, rgba(201, 139, 155, 0.1) 80%, var(--white) 100%);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite backwards;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 139, 155, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.smooth-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: blobDrift 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(201, 139, 155, 0.15);
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.6);
    bottom: -150px;
    right: -50px;
}

@keyframes blobDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(150px, 100px) scale(1.1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

/* Enhanced Light Glassmorphism Card */
.card {
    background: rgba(255, 255, 255, 0.9);
    /* Frosty white */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px 40px;
    width: 100%;
    max-width: 370px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    /* Inner glowing edge + soft shadow */
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 1),
        0 15px 35px rgba(201, 139, 155, 0.12);
    border: 1px solid rgba(232, 213, 219, 0.6);
    transform-style: preserve-3d;
}

/* Glass Shine Effect on Card */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.card:hover::before {
    left: 200%;
}

.card:hover {
    transform: translateY(-20px) scale(1.03);
    /* Vibrant pink glow on hover */
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 1),
        0 40px 60px rgba(201, 139, 155, 0.25);
    border-color: rgba(201, 139, 155, 0.8);
    z-index: 20;
}

/* Floating Icon Animation & Pulse */
.card-icon {
    position: relative;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 139, 155, 0.1);
    animation: gentleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 15px rgba(201, 139, 155, 0.3));
    transition: all 0.4s ease;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(201, 139, 155, 0.2);
    z-index: -1;
    animation: iconPulse 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.card:hover .card-icon {
    color: var(--primary-dark);
    transform: scale(1.15);
    filter: drop-shadow(0 15px 25px rgba(201, 139, 155, 0.5));
    animation-play-state: paused;
}

.card-title {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s ease;
}

/* Animated Underline */
.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
    transition: width 0.4s ease, background 0.4s ease;
}

.card:hover .card-title {
    transform: translateX(5px);
    color: var(--primary-dark);
}

.card:hover .card-title::after {
    width: 80px;
    background: var(--primary);
}

.card-content {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Certificate specific styling inside cards */
.certificate-list {
    list-style: none;
    padding-top: 10px;
}

.certificate-item {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.certificate-item i {
    color: var(--primary);
}

.card:hover .certificate-item {
    color: var(--dark);
}

/* Reservation Section */
.reservation {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.05)" d="M50 0 L100 50 L50 100 L0 50 Z"></path></svg>');
    background-size: 150px 150px;
    opacity: 0.3;
    pointer-events: none;
}

.reservation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reservation p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.reservation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(232, 213, 219, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Real Reviews Section */
.real-reviews {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(250, 247, 248, 0.9), rgba(232, 213, 219, 0.3));
    overflow: hidden;
}

.real-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

/* Enable masonry-like staggered visual on desktop */
@media (min-width: 900px) {
    .real-review-item.stagger-item {
        transform: translateY(40px);
    }
}

.real-review-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.real-review-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.real-review-item.stagger-item:hover {
    transform: translateY(30px) scale(1.02);
}

/* Instagram Header Mockup */
.ig-message-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(232, 213, 219, 0.5);
}

.ig-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 12px;
}

.ig-info {
    flex: 1;
}

.ig-username {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.2;
}

.ig-status {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 2px;
}

.ig-icon {
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.7;
}

.ig-message-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.author-info h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info .stars {
    color: #d4a77e;
    /* Gold shade for stars */
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.instagram-feed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.instagram-item {
    width: 280px;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-item:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-handle {
    font-size: 1.5rem;
    margin-top: 30px;
    color: var(--primary-dark);
    font-weight: 600;
}

.instagram-handle a {
    color: var(--primary);
    text-decoration: none;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-column p,
.footer-column li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--white);
        width: 250px;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-info-card {
        left: 10px;
        bottom: -20px;
        padding: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .footer-content {
        flex-direction: column;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: -10px;
        top: 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-icon {
        height: 100px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* Floating Booking CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: bounce-subtle 3s infinite;
}

.floating-cta-icon {
    font-size: 1.5rem;
    background: white;
    color: #25D366;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.floating-cta-text {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Certificates Section - Ultra Premium Redesign */
.certificates {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light) 0%, #fff 50%, var(--primary-light) 100%);
    overflow: hidden;
    z-index: 1;
}

/* Luxury Background Blurs */
.luxury-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: drift 15s infinite alternate ease-in-out;
}

.blob-left {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(201, 139, 155, 0.3);
}

.blob-right {
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(232, 213, 219, 0.5);
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

.certificates .container {
    position: relative;
    z-index: 10;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 70px;
    color: var(--gray);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* The 3D Showcase Container */
.certif-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 50px;
    perspective: 1500px;
}

.certif-item {
    position: relative;
    width: 260px;
    margin-left: -70px;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: rotateY(30deg) scale(0.9) translateZ(0);
    transform-origin: center right;
    box-shadow: -20px 10px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    overflow: hidden;
}

.certif-item:first-child {
    margin-left: 0;
}

.certif-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.6s ease;
}

/* Glass Shine Effect on Hover */
.certif-item::after {
    content: '';
    position: absolute;
    top: 0; 
    left: -150%;
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 5;
    pointer-events: none;
}

/* Premium Badge */
.certif-badge {
    position: absolute;
    bottom: -10px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #aa7c11); /* Gold gradient */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px) rotate(-180deg);
}

/* Hover Dynamics */
/* Push non-hovered items back */
.certif-showcase:hover .certif-item {
    transform: rotateY(30deg) scale(0.85) translateZ(-50px);
    filter: blur(3px);
    opacity: 0.6;
}

/* The hovered item comes forward */
.certif-showcase .certif-item:hover {
    transform: rotateY(0deg) scale(1.15) translateZ(100px);
    z-index: 10;
    filter: blur(0);
    opacity: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 40px rgba(201, 139, 155, 0.3);
    margin: 0 40px;
}

.certif-showcase .certif-item:hover .certif-badge {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.certif-showcase .certif-item:hover::after {
    animation: luxurious-shine 1.2s ease-in-out forwards;
}

@keyframes luxurious-shine {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* If a preceding sibling is hovered, rotate the opposite way */
.certif-item:has(~ .certif-item:hover) {
    transform: rotateY(-30deg) scale(0.85) translateZ(-50px);
    transform-origin: center left;
}

/* Glowing Shelf */
.certif-shelf {
    width: 70%;
    height: 25px;
    margin: -10px auto 0;
    background: radial-gradient(ellipse at center, rgba(201,139,155,0.4) 0%, rgba(201,139,155,0) 70%);
    border-radius: 50%;
    filter: blur(8px);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .certif-showcase {
        flex-wrap: wrap;
        perspective: none;
        gap: 30px;
        margin-left: 0;
    }
    
    .certif-item, .certif-item:first-child {
        margin: 0 auto;
        transform: none;
        width: 100%;
        max-width: 350px;
    }
    
    .certif-showcase:hover .certif-item {
        transform: none;
        filter: none;
        opacity: 1;
    }
    
    .certif-item:has(~ .certif-item:hover) {
        transform: none;
    }
    
    .certif-showcase .certif-item:hover {
        transform: translateY(-10px) scale(1.02);
        margin: 0 auto;
        box-shadow: var(--shadow-lg);
    }
    
    .certif-badge {
        opacity: 1;
        transform: translateY(0) rotate(0);
        bottom: 10px;
    }
    
    .certif-shelf {
        display: none;
    }
}

/* ========================================================================= */
/* Luxury Salon Section - Extremely Premium Layout                           */
/* ========================================================================= */
.salon {
    position: relative;
    padding: 120px 0;
    background: var(--light);
    overflow: hidden;
    z-index: 1;
}

/* Elegant Background Blurs */
.salon-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: drift-slow 20s infinite alternate ease-in-out;
}

.blob-top-right {
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(201, 139, 155, 0.25);
}

.blob-bottom-left {
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(232, 213, 219, 0.4);
    animation-delay: -10s;
}

@keyframes drift-slow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 40px) scale(1.15); }
}

.salon .container {
    position: relative;
    z-index: 10;
}

.salon-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* The Hero Image of the Salon */
.salon-main-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    height: 600px; /* Fixed height for consistency */
}

.salon-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease; /* Very slow premium zoom */
}

.salon-main-image:hover img {
    transform: scale(1.08);
}

.salon-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.salon-overlay h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin: 0;
}

.premium-seal {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #aa7c11);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    border: 2px solid rgba(255,255,255,0.8);
    animation: gold-pulse 3s infinite;
}

@keyframes gold-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.instagram-spot-badge {
    position: absolute;
    top: 30px;
    right: -10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
    z-index: 10;
    animation: slide-bounce 2s infinite;
    border: 2px solid white;
}

.instagram-spot-badge i {
    font-size: 1.2rem;
}

@keyframes slide-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* The Interactive Side Grid */
.salon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.salon-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    background: var(--white);
}

.salon-item.span-full {
    grid-column: 1 / -1;
}

.salon-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.salon-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.item-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.salon-item:hover .item-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* High-End Button Variation */
.salon-cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.btn-gold {
    background: linear-gradient(135deg, #c5a059, #8f6d2f) !important;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4) !important;
    border: none !important;
    padding: 18px 45px !important;
    font-size: 1.15rem !important;
}

.btn-gold:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.6) !important;
    color: white !important;
}

/* RTL Support for Salon */
.rtl-layout .salon-layout {
    direction: rtl; /* Maintains visual balance */
}

.rtl-layout .salon-overlay {
    flex-direction: row-reverse;
}

/* Responsive Salon Section */
@media (max-width: 992px) {
    .salon-layout {
        grid-template-columns: 1fr;
    }
    
    .salon-main-image, .salon-grid {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .salon-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 250px);
        height: auto;
    }
    
    .salon-item.span-full {
        grid-column: 1;
    }
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .reservation-actions {
        flex-direction: column;
        gap: 15px;
    }

    .reservation-actions .btn {
        margin: 0 !important;
        width: 100%;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .floating-cta-text {
        display: none;
        /* Hide text on mobile, show only icon to save space */
    }

    .floating-cta-icon {
        margin-right: 0;
    }

    .hero-bg-blob {
        opacity: 0.2;
        /* Reduce visibility on smaller screens */
    }
}

/* Animation for elements */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================= */
/* RTL Layout Support (Arabic)                                               */
/* ========================================================================= */
.rtl-layout {
    font-family: 'Tajawal', 'Montserrat', Tahoma, sans-serif;
    text-align: right;
}

.rtl-layout h1,
.rtl-layout h2,
.rtl-layout h3,
.rtl-layout .logo {
    font-family: 'Tajawal', 'Playfair Display', serif;
}

.rtl-layout .nav-menu li {
    margin-right: 30px;
    margin-left: 0;
}

.rtl-layout .logo i {
    margin-left: 10px;
    margin-right: 0;
}

.rtl-layout .hero-content,
.rtl-layout .about-text,
.rtl-layout .service-content {
    text-align: right;
}

.rtl-layout .experience-badge {
    left: -25px;
    right: auto;
}

.rtl-layout .floating-info-card {
    right: -40px;
    left: auto;
}

.rtl-layout .avatars img {
    margin-right: -15px;
    margin-left: 0;
}

.rtl-layout .avatars img:first-child {
    margin-right: 0;
}

.rtl-layout .floating-cta-icon {
    margin-left: 12px;
    margin-right: 0;
}

.rtl-layout .floating-cta {
    left: 30px;
    right: auto;
}

.rtl-layout .footer-column {
    text-align: right;
}

/* Feature Item in About */
.rtl-layout .feature-item {
    text-align: right;
}

/* Margin utilities override (for inline styles) */
.rtl-layout [style*="margin-left: 15px"] {
    margin-right: 15px !important;
    margin-left: 0 !important;
}

@media (max-width: 768px) {
    .rtl-layout .floating-cta {
        left: 20px;
        right: auto;
    }
}