* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.menu-open .header-cta {
    display: none;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Skip Navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c2c2c;
    color: white;
    padding: 8px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: (20px);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

/* Logo Tagline */
.logo-tagline {
    font-size: 0.75rem;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -0.01em;
}

.logo-tagline .title-highlight {
    font-style: italic;
    color: #8B7355;
    font-weight: 300;
}

.logo-tagline .title-main {
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-tagline .title-emphasis {
    color: #E8B4A0;
    font-weight: 700;
    text-transform: lowercase;
    font-style: italic;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    background: linear-gradient(135deg, #2c2c2c 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #E8B4A0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #E8B4A0;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.contact-info svg {
    color: #E8B4A0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.header-btn:hover::before {
    left: 100%;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(232, 180, 160, 0.1);
    backdrop-filter: (10px);
    border: 2px solid rgba(232, 180, 160, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-toggle:hover {
    transform: scale(1.05);
    background: rgba(232, 180, 160, 0.15);
    border-color: rgba(232, 180, 160, 0.3);
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.2);
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #2c2c2c 0%, #E8B4A0 100%);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-toggle.active {
    background: rgba(232, 180, 160, 0.2);
    border-color: rgba(232, 180, 160, 0.4);
    transform: scale(1.05) rotate(180deg);
}

.mobile-toggle.active span {
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    width: 22px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    width: 22px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: (20px);
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(232, 180, 160, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    padding: 100px 0 40px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex: 1;
    justify-content: center;
}

.mobile-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 18px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    display: block;
    border-bottom: 1px solid rgba(232, 180, 160, 0.1);
}

.mobile-nav-link:hover {
    color: #E8B4A0;
    background: rgba(232, 180, 160, 0.05);
    padding-left: 35px;
}

.mobile-nav-link.active {
    color: #E8B4A0;
    background: rgba(232, 180, 160, 0.08);
    font-weight: 600;
    border-left: 3px solid #E8B4A0;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-contact {
    padding: 25px 20px;
    border-top: 1px solid rgba(232, 180, 160, 0.2);
    border-radius: 12px;
    background: rgba(232, 180, 160, 0.05);
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
    align-self: center;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(232, 180, 160, 0.3);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 160, 0.4);
}

.mobile-contact-btn svg {
    color: white;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links,
    .contact-info,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 16px;
    }


    .logo-text {
        font-size: 20px;
    }

    .logo-image {
        width: 85px;
        height: 85px;
    }

    .header-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }


    .logo-text {
        font-size: 18px;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }

    .header-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .header-btn span {
        display: none;
    }


    .mobile-contact-item {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .header-container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-image {
        width: 55px;
        height: 55px;
    }

    .mobile-toggle span {
        width: 20px;
    }
}

/* Hero Section Styles - Full Screen Coverage */
.hs-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80vh;
    border-radius: 1rem;
    padding-top: 0;
    margin-top: 80px;
    box-sizing: border-box;
}

.hs-carousel-body {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.hs-carousel-slide > div {
    position: relative;
    height: 100%;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hs-carousel-slide > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hs-carousel-slide .mt-auto {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: (8px);
    border-radius: 12px;
    margin-left: 2rem;
    margin-right: auto;
    max-width: fit-content;
    display: inline-block;
    text-align: left;
}

/* Button Styling */
.hs-carousel-slide a {
    backdrop-filter: (10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hs-carousel-slide a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Text Styling */
.hs-carousel-slide span {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

/* Desktop Slide backgrounds */
.slide-1 {
    background-image: url('asset/1.jpg');
}

.slide-2 {
    background-image: url('asset/2.jpg');
}

.slide-3 {
    background-image: url('asset/3.jpg');
}

/* Mobile Slide backgrounds - Different images for mobile */
@media (max-width: 768px) {
    .slide-1 {
        background-image: url('asset/1.jpg');
    }

    .slide-2 {
        background-image: url('asset/2.jpg');
    }

    .slide-3 {
        background-image: url('asset/3.jpg');
    }
}

/* Responsive adjustments for full screen coverage */
@media (max-width: 968px) {
    .hs-carousel {
        height: 75vh;
        margin-top: 80px;
        padding-top: 0;
    }

    .hs-carousel-slide .mt-auto {
        margin-bottom: 1.5rem;
        padding: 1.25rem 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: (6px);
        border-radius: 10px;
        margin-left: 1.5rem;
        margin-right: auto;
        max-width: fit-content;
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hs-carousel {
        height: 70vh;
        margin-top: 70px;
        padding-top: 0;
    }

    .hs-carousel-slide > div::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }

    .hs-carousel-slide .mt-auto {
        margin-bottom: 1.5rem;
        padding: 1rem 1.25rem;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: (5px);
        border-radius: 8px;
        margin-left: 1.25rem;
        margin-right: auto;
        max-width: fit-content;
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hs-carousel {
        height: 65vh;
        margin-top: 65px;
        padding-top: 0;
    }

    .hs-carousel-slide .mt-auto {
        margin-bottom: 1rem;
        padding: 0.75rem 1rem;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: (4px);
        border-radius: 6px;
        margin-left: 1rem;
        margin-right: auto;
        max-width: fit-content;
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 360px) {
    .hs-carousel {
        height: 60vh;
        margin-top: 65px;
        padding-top: 0;
    }

    .hs-carousel-slide .mt-auto {
        margin-bottom: 0.75rem;
        padding: 0.5rem 0.75rem;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: (3px);
        border-radius: 4px;
        margin-left: 0.75rem;
        margin-right: auto;
        max-width: fit-content;
        display: inline-block;
        text-align: left;
    }
}

/* Custom height classes - optimized */
.h-120 {
    height: 100%;
}

.h-screen {
    height: 100%;
}

/* Beauty Features Section */
.beauty-features-section {
    padding: 40px 0;
    background: linear-gradient(135deg,
        #fdf8f5 0%,
        #f9f3f0 25%,
        #f5efec 50%,
        #f1ebe8 75%,
        #ede7e4 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.beauty-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23E8B4A0" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.feature-block {
    text-align: center;
    position: relative;
    padding: 20px 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: (10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-block:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(232, 180, 160, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(232, 180, 160, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-block:hover .feature-icon::before {
    border-color: rgba(232, 180, 160, 0.4);
    transform: scale(1.1);
}

.feature-icon svg {
    color: white;
    transition: all 0.3s ease;
}

.feature-block:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-content {
    margin-bottom: 10px;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.feature-block:hover .feature-title {
    color: #E8B4A0;
    transform: scale(1.05);
    text-shadow: 2px 2px 4px rgba(232, 180, 160, 0.3);
}

.feature-description {
    font-size: 0.95rem;
    color: #6B5B73;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.feature-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E8B4A0, transparent);
    margin: 0 auto;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.feature-block:hover .feature-line {
    width: 80px;
    background: linear-gradient(90deg, #E8B4A0, #D4A574, #E8B4A0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .beauty-features-section {
        padding: 30px 0;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .features-container {
        padding: 0 16px;
    }

    .feature-block {
        padding: 15px 8px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .feature-content {
        margin-bottom: 8px;
    }

    .feature-line {
        width: 40px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .beauty-features-section {
        padding: 25px 0;
    }

    .features-container {
        padding: 0 12px;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-block {
        padding: 12px 6px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-content {
        margin-bottom: 6px;
    }

    .feature-line {
        width: 30px;
        height: 2px;
    }
}

/* Loading animation */
.hs-carousel .hs-carousel-body {
    opacity: 1 !important;
    transition: opacity 0.5s ease-in-out;
}

/* Essential utility classes only */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }

.mt-5 { margin-top: 1.25rem; }
.mt-auto { margin-top: auto; }

.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }

.text-white { color: white; }
.text-black { color: black; }

.bg-white { background-color: white; }
.bg-gray-100 { background-color: #f3f4f6; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.border { border-width: 1px; }
.border-transparent { border-color: transparent; }

.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-nowrap { flex-wrap: nowrap; }

.items-center { align-items: center; }

.gap-x-2 { column-gap: 0.5rem; }

.font-medium { font-weight: 500; }

.absolute { position: absolute; }
.relative { position: relative; }
.start-0 { left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.w-full { width: 100%; }

.focus\:outline-hidden:focus { outline: none; }
.focus\:bg-gray-100:focus { background-color: #f3f4f6; }

.hover\:bg-gray-100:hover { background-color: #f3f4f6; }

.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:pointer-events-none:disabled { pointer-events: none; }

.block { display: block; }

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 768px) {
    .md\:text-3xl { font-size: 1.875rem; }
}



/* About Section - Luxury Transformed */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
        #fdf8f5 0%,
        #f9f3f0 25%,
        #f5efec 50%,
        #f1ebe8 75%,
        #ede7e4 100%);
    position: relative;
    overflow: hidden;
}

/* About Background Elements */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Section Ornaments */
.section-ornament {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E8B4A0, transparent);
    margin: 0 auto 25px;
    position: relative;
}

.section-ornament::before,
.section-ornament::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #E8B4A0;
    border-radius: 50%;
}

.section-ornament::before { left: 20%; }
.section-ornament::after { right: 20%; }

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23d4a574" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    max-width: 55%;
    padding-right: 40px;
}

/* Luxury About Typography */
.about-title-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    font-style: italic;
    color: #2C2C2C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-title-luxury .title-highlight {
    font-style: italic;
    color: #8B7355;
    font-weight: 300;
}

.about-title-luxury .title-main {
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-title-luxury .title-emphasis {
    color: #E8B4A0;
    font-weight: 700;
    text-transform: lowercase;
    font-style: italic;
}

.about-description-luxury {
    font-size: 1.1rem;
    color: #6B5B73;
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.about-description-luxury:last-of-type {
    margin-bottom: 40px;
}

.about-btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 30px;
}

/* About Signature Element */
.about-signature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.about-signature .signature-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #E8B4A0, transparent);
}

.about-signature .signature-text {
    font-size: 0.85rem;
    color: #8B7355;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.about-btn-luxury:hover::before {
    left: 100%;
}

.about-btn-luxury:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(232, 180, 160, 0.4);
}

.about-btn-luxury svg {
    transition: transform 0.3s ease;
}

.about-btn-luxury:hover svg {
    transform: translateX(3px);
}

/* About Download Button - "Get To Know Us" */
.about-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #E8B4A0;
    color: #E8B4A0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about-btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.about-btn-download:hover::before {
    left: 0;
}

.about-btn-download:hover {
    color: white;
    border-color: #D4A574;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(232, 180, 160, 0.3);
}

.about-btn-download svg {
    transition: transform 0.3s ease;
}

.about-btn-download:hover svg {
    transform: translateY(2px);
}

/* Button Group */
.about-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Decorative Image Frame */
.image-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(232, 180, 160, 0.3);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.about-image:hover .image-frame {
    transform: translate(5px, 5px);
    border-color: rgba(232, 180, 160, 0.5);
}

.about-image {
    flex: 1;
    max-width: 45%;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 20px;
    z-index: -2;
    opacity: 0.3;
}

.beauty-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.beauty-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15);
}

/* About Section Responsive Design */
@media (max-width: 968px) {
    .about-section {
        padding: 100px 0;
    }

    .about-container {
        flex-direction: column-reverse;
        gap: 60px;
        text-align: center;
    }

    .about-content, 
    .about-image {
        max-width: 100%;
    }

    .about-content {
        padding-right: 0;
    }

    .about-title {
        font-size: 3.2rem;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image::before,
    .about-image::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        gap: 50px;
        padding: 0 16px;
    }

    .about-title {
        font-size: 2.8rem;
        margin-bottom: 28px;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-description:last-of-type {
        margin-bottom: 40px;
    }

    .about-btn {
        padding: 16px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        gap: 40px;
        padding: 0 15px;
    }

    .about-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .about-title::after {
        width: 40px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .about-description:last-of-type {
        margin-bottom: 36px;
    }

    .about-btn {
        padding: 14px 28px;
        font-size: 13px;
        border-radius: 25px;
    }

    .beauty-image {
        border-radius: 15px;
    }
}

@media (max-width: 360px) {
    .about-title {
        font-size: 1.9rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Products We Use Section */
.products-we-use-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
        #fdf8f5 0%,
        #f9f3f0 25%,
        #f5efec 50%,
        #f1ebe8 75%,
        #ede7e4 100%);
    position: relative;
    overflow: hidden;
}

.products-we-use-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23d4a574" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.products-we-use-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.products-we-use-image {
    flex: 1;
    max-width: 45%;
    position: relative;
}

.products-we-use-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.products-we-use-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 20px;
    z-index: -2;
    opacity: 0.3;
}

.products-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.products-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.products-image-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(232, 180, 160, 0.3);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.products-we-use-image:hover .products-image-frame {
    transform: translate(5px, 5px);
    border-color: rgba(232, 180, 160, 0.5);
}

.products-we-use-content {
    flex: 1;
    max-width: 55%;
    padding-left: 40px;
}


.products-description-luxury {
    font-size: 1.1rem;
    color: #6B5B73;
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.products-description-luxury:last-of-type {
    margin-bottom: 40px;
}

.organic-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #2C2C2C;
    font-weight: 500;
}

.feature-item svg {
    color: #4CAF50;
    flex-shrink: 0;
}

.products-btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.products-btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.products-btn-luxury:hover::before {
    left: 100%;
}

.products-btn-luxury:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(232, 180, 160, 0.4);
}

.products-btn-luxury svg {
    transition: transform 0.3s ease;
}

.products-btn-luxury:hover svg {
    transform: translateX(3px);
}

/* Products We Use Section Responsive Design */
@media (max-width: 968px) {
    .products-we-use-section {
        padding: 100px 0;
    }

    .products-we-use-container {
        flex-direction: row-reverse;
        gap: 60px;
    }

    .products-we-use-content,
    .products-we-use-image {
        max-width: 100%;
    }

    .products-we-use-content {
        padding-left: 0;
        padding-right: 20px;
    }


    .products-we-use-image::before,
    .products-we-use-image::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .products-we-use-section {
        padding: 80px 0;
    }

    .products-we-use-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 16px;
        text-align: center;
    }

    .products-we-use-content {
        padding-right: 0;
    }


    .products-description-luxury {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .products-description-luxury:last-of-type {
        margin-bottom: 35px;
    }

    .organic-features {
        align-items: center;
        margin-bottom: 35px;
    }

    .products-btn-luxury {
        padding: 16px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-we-use-section {
        padding: 60px 0;
    }

    .products-we-use-container {
        gap: 40px;
        padding: 0 15px;
    }


    .products-description-luxury {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .products-description-luxury:last-of-type {
        margin-bottom: 30px;
    }

    .organic-features {
        margin-bottom: 30px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .products-btn-luxury {
        padding: 14px 28px;
        font-size: 13px;
        border-radius: 25px;
    }

    .products-image {
        border-radius: 15px;
    }
}

@media (max-width: 360px) {

    .products-description-luxury {
        font-size: 0.9rem;
    }

    .products-btn-luxury {
        padding: 12px 24px;
        font-size: 12px;
    }

    .feature-item {
        font-size: 0.85rem;
    }
}


/* Product Section - Luxury Transformed */
.product-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
        #fdf8f5 0%,
        #f9f3f0 25%,
        #f5efec 50%,
        #f1ebe8 75%,
        #ede7e4 100%);
    overflow: hidden;
    position: relative;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Main Content */
.product-content {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

/* Luxury Product Typography */
.product-title-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    font-style: italic;
    color: #2C2C2C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-title-luxury .title-highlight {
    font-style: italic;
    color: #8B7355;
    font-weight: 300;
}

.product-title-luxury .title-main {
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title-luxury .title-emphasis {
    color: #E8B4A0;
    font-weight: 700;
    text-transform: lowercase;
    font-style: italic;
}

.product-description-luxury {
    font-size: 1.1rem;
    color: #6B5B73;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 500px;
}

.product-btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* Product Signature Element */
.product-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-signature .signature-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E8B4A0, transparent);
}

.product-signature .signature-text {
    font-size: 0.85rem;
    color: #8B7355;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.4);
}

.product-btn:active {
    transform: translateY(0);
}

.product-btn svg {
    transition: transform 0.3s ease;
}

.product-btn:hover svg {
    transform: translateX(5px);
}

/* Product Frame - Horizontal */
.product-frame {
    width: 100%;
    max-width: 900px;
    position: relative;
    margin: 0 auto;
}

.frame-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.9),
        0 0 0 11px rgba(232, 180, 160, 0.3);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.frame-image:hover .product-img {
    transform: scale(1.05);
}

/* CTA Popup - Centered on top of image */
.cta-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: (10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    visibility: hidden;
}

.cta-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}

.popup-content {
    position: relative;
    text-align: center;
}

.popup-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.popup-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 180, 160, 0.3);
}

.popup-btn svg {
    transition: transform 0.3s ease;
}

.popup-btn:hover svg {
    transform: translateX(3px);
}

.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #f3f3f3;
    transform: scale(1.1);
}

/* Frame Border Effect */
.frame-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(232, 180, 160, 0.3);
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
}

/* Overlay to make popup more visible */
.frame-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-popup.show + .frame-image::after {
    opacity: 1;
}

/* Animation for popup */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 180, 160, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(232, 180, 160, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 180, 160, 0);
    }
}

.cta-popup.show {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-popup {
        width: 300px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 70px 0;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .cta-popup {
        width: 280px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 50px 0;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-popup {
        width: 250px;
        padding: 20px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-text {
        font-size: 0.85rem;
    }
    
    .popup-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Salons Section Styles */
.salons-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.salons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    font-style: italic;
    color: #2C2C2C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-title .title-highlight {
    font-style: italic;
    color: #8B7355;
    font-weight: 300;
}

.section-title .title-main {
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title .title-emphasis {
    color: #E8B4A0;
    font-weight: 700;
    text-transform: lowercase;
    font-style: italic;
}

/* Shimmer animation for section titles */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E8B4A0, #D4A574, #E8B4A0, transparent);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(232, 180, 160, 0.3);
}

.section-title::before {
    content: '✦';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #E8B4A0;
    opacity: 0.8;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Salons Grid */
.salons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* Salon Card */
.salon-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Salon Image */
.salon-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.salon-card:hover .salon-image img {
    transform: scale(1.1);
}

.salon-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* Salon Details */
.salon-details {
    padding: 25px;
}

.salon-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    color: #2C2C2C;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.salon-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rating {
    font-size: 0.9rem;
    font-weight: 600;
    color: #E8B4A0;
}

.reviews {
    font-size: 0.85rem;
    color: #666;
}

.salon-address {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.salon-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.salon-hours, .salon-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.salon-hours svg, .salon-phone svg {
    color: #E8B4A0;
}

.salon-area {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.salon-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(232, 180, 160, 0.25);
    position: relative;
    overflow: hidden;
}

.salon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.salon-btn:hover::before {
    left: 100%;
}

.salon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 180, 160, 0.4);
    background: linear-gradient(135deg, #D4A574 0%, #E8B4A0 100%);
}

.salon-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(232, 180, 160, 0.3);
}


/* Salons Footer */
.salons-footer {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #333;
    border: 2px solid #E8B4A0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #E8B4A0;
    color: white;
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .salons-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .salons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .salon-card {
        font-size: 0.9rem;
    }

    .salon-name {
        font-size: 1.1rem;
    }

    .salon-details {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .salons-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .salons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .salon-details {
        padding: 15px;
    }

    .salon-name {
        font-size: 1rem;
    }

    .salon-address {
        font-size: 0.8rem;
    }

    .salon-hours, .salon-phone {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .salons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .salon-details {
        padding: 20px;
    }

    .salon-name {
        font-size: 1.2rem;
    }

    .salon-address {
        font-size: 0.85rem;
    }

    .salon-hours, .salon-phone {
        font-size: 0.8rem;
    }

    .view-all-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}







/* Footer Styles */
.footer {
    background-color: #292929;
    color: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
    gap: 40px;
}

/* Footer Column */
.footer-column {
    position: relative;
    text-align: left;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo & About */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #f1f1f1;
}

.footer-about {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3a3a3a;
    color: #f1f1f1;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-heading .title-highlight {
    font-style: italic;
    color: rgba(232, 180, 160, 0.8);
    font-weight: 300;
}

.footer-heading .title-main {
    display: block;
    font-weight: 800;
    color: #f1f1f1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-heading .title-emphasis {
    color: #E8B4A0;
    font-weight: 700;
    text-transform: lowercase;
    font-style: italic;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '›';
    margin-right: 8px;
    color: #E8B4A0;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #E8B4A0;
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-item svg {
    color: #E8B4A0;
    flex-shrink: 0;
}

/* Newsletter */
.newsletter-text {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto 0 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: #3a3a3a;
    color: #f1f1f1;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    background-color: #444;
}

.newsletter-btn {
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    border: none;
    color: white;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #D4A574 0%, #E8B4A0 100%);
}

.form-response {
    margin-top: 10px;
    font-size: 0.85rem;
    height: 20px;
}

.form-response.success {
    color: #4CAF50;
}

.form-response.error {
    color: #F44336;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1e1e1e;
    padding: 25px 0;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #E8B4A0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        text-align: center;
    }

    .footer-column:nth-child(1) {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }

    .footer-column:nth-child(1) {
        grid-column: span 2;
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .form-group {
        margin: 0 auto;
    }

    .footer-column:nth-child(1) {
        grid-column: span 1;
        order: 1;
    }

    .footer-column:nth-child(2) {
        order: 2;
    }

    .footer-column:nth-child(3) {
        order: 3;
    }

    .footer-column:nth-child(4) {
        order: 4;
    }

    .footer-column:nth-child(5) {
        order: 5;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 25px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-logo-image {
        width: 80px;
        height: 80px;
    }

    .footer-about {
        font-size: 0.85rem;
        margin-bottom: 20px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
    }

    .footer-link {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .footer-link::before {
        display: none;
    }

    .footer-link:hover {
        transform: none;
    }

    .contact-item {
        justify-content: center;
        font-size: 0.85rem;
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .newsletter-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-group {
        max-width: 250px;
    }

    .newsletter-input {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .newsletter-btn {
        padding: 10px 12px;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 0.8rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
    }
}






/* Slideshow styles removed - using normal scrolling */

.section-container {
    position: relative;
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 50px;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.content {
    display: flex;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    flex: 1;
    padding-right: 60px;
}

.image-content {
    flex: 1;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.image-content.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-content.double img {
    height: 100%;
}

.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #888;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 0.5px;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.details-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    text-align: left;
    position: relative;
}

.details-btn:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #888;
    transition: width 0.3s ease;
}

.details-btn:hover:after {
    width: 100%;
}

/* Section positioning */
#section1 {
    transform: translateY(0);
    z-index: 3;
}

#section2 {
    transform: translateY(85%);
    z-index: 2;
}

#section3 {
    transform: translateY(170%);
    z-index: 1;
}

/* Chat button */
.chat-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: white;
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 100;
}

.chat-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.chat-button span {
    font-size: 14px;
    color: #333;
}

/* Active section classes - will be toggled by JS */
.section.active {
    transform: translateY(0) !important;
}

.section.prev {
    transform: translateY(-15%) !important;
}

.section.next {
    transform: translateY(85%) !important;
}

.section.far-next {
    transform: translateY(170%) !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
    }
    
    .text-content {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .image-content {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 30px;
    }

    h1 {
        font-size: 42px;
    }
}

/* Instagram Embed Styles */
.instagram-media {
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Instagram embed container responsive styles */
.instagram-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

/* Mobile responsiveness for Instagram embed */
@media (max-width: 768px) {
    .instagram-media {
        min-width: 280px !important;
        max-width: 400px !important;
    }
}

@media (max-width: 480px) {
    .instagram-media {
        min-width: 250px !important;
        max-width: 320px !important;
    }
}

/* Ensure Instagram embed loads properly */
blockquote.instagram-media {
    border: 0;
    margin: 1px;
    max-width: 540px;
    min-width: 326px;
    padding: 0;
    width: calc(100% - 2px);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide:first-child {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Individual slide backgrounds */
.hero-slide.slide-1 {
    background-image: url('asset/1.jpg') !important;
}

.hero-slide.slide-2 {
    background-image: url('asset/2.jpg') !important;
}

.hero-slide.slide-3 {
    background-image: url('asset/3.jpg') !important;
}

.hero-slide.slide-4 {
    background-image: url('asset/4.jpg') !important;
}

.hero-slide.slide-5 {
    background-image: url('asset/5.jpg') !important;
}

.hero-slide.slide-6 {
    background-image: url('asset/6.jpg') !important;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E8B4A0, #D4A574);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 180, 160, 0.4);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.6);
}

.hero-btn svg {
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(5px);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover,
.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-indicators {
        bottom: 20px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Corporate Wellness Programs Section */
.corporate-section {
    position: relative;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 160, 0.04) 0%, rgba(212, 165, 116, 0.06) 100%);
    pointer-events: none;
    z-index: 0;
}

.corporate-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    min-height: 650px;
    position: relative;
    z-index: 1;
}

.corporate-image {
    position: relative;
    overflow: hidden;
}

.corporate-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

.corporate-content {
    text-align: left;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corporate-description-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
    font-style: italic;
}

.corporate-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
}

.benefit-item {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 15px rgba(232, 180, 160, 0.1);
    border: 1px solid rgba(232, 180, 160, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 180, 160, 0.08), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(232, 180, 160, 0.2);
    border-color: rgba(232, 180, 160, 0.4);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(232, 180, 160, 0.1), rgba(212, 165, 116, 0.15));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, #E8B4A0, #D4A574);
    transform: scale(1.1);
}

.benefit-icon svg {
    stroke: #E8B4A0;
    transition: stroke 0.3s ease;
}

.benefit-item:hover .benefit-icon svg {
    stroke: white;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.benefit-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.corporate-cta {
    margin-top: 35px;
    padding: 25px;
    background: rgba(232, 180, 160, 0.08);
    border-radius: 15px;
    border-left: 4px solid #E8B4A0;
}

.corporate-cta-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.corporate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E8B4A0, #D4A574);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(232, 180, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.corporate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.corporate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.corporate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 180, 160, 0.5);
}

.corporate-btn svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.corporate-btn:hover svg {
    transform: translateX(6px);
}

.corporate-btn span {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .corporate-container {
        grid-template-columns: 1fr 1fr;
        min-height: 550px;
    }

    .corporate-content {
        padding: 50px 40px;
    }

    .corporate-image img {
        min-height: 550px;
    }
}

@media (max-width: 768px) {
    .corporate-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .corporate-image {
        order: 1;
    }

    .corporate-image img {
        height: 350px;
        min-height: 350px;
    }

    .corporate-content {
        order: 2;
        text-align: left;
        padding: 50px 30px;
    }

    .corporate-description-luxury {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .corporate-benefits {
        gap: 15px;
        margin: 25px 0;
    }

    .benefit-item {
        padding: 18px 20px;
        flex-direction: row;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    .corporate-cta {
        padding: 20px;
        margin-top: 25px;
    }

    .corporate-cta-text {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .corporate-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .corporate-section {
        padding: 40px 0;
    }

    .corporate-container {
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .corporate-image img {
        height: 280px;
    }

    .corporate-description-luxury {
        font-size: 0.95rem;
    }

    .benefit-item {
        padding: 15px;
        gap: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon svg {
        width: 22px;
        height: 22px;
    }

    .benefit-title {
        font-size: 1.05rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    .corporate-cta {
        padding: 18px;
    }

    .corporate-cta-text {
        font-size: 0.95rem;
    }

    .corporate-btn {
        padding: 11px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Feature Descriptions */
.feature-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
    background: #f8f8f8;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #666;
    margin-top: 12px;
    margin-bottom: 45px;
    font-style: italic;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 0 55px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 25px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    background: white;
    padding: 30px 22px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(232, 180, 160, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(232, 180, 160, 0.2);
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: rgba(232, 180, 160, 0.15);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(232, 180, 160, 0.25);
}

.testimonial-rating {
    font-size: 1rem;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: auto;
    font-style: italic;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 180, 160, 0.2);
}

/* Carousel Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #E8B4A0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #E8B4A0, #D4A574);
    border-color: #D4A574;
}

.testimonial-nav:hover svg {
    stroke: white;
}

.testimonial-nav svg {
    stroke: #E8B4A0;
    transition: stroke 0.3s ease;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Carousel Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(232, 180, 160, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: linear-gradient(135deg, #E8B4A0, #D4A574);
    transform: scale(1.2);
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8B4A0, #D4A574);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 3px;
}

.author-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: #666;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8B4A0 0%, #D4A574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(232, 180, 160, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(232, 180, 160, 0.6);
    background: linear-gradient(135deg, #D4A574 0%, #E8B4A0 100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .testimonials-carousel {
        padding: 0 35px;
        margin-top: 30px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        padding: 20px 15px;
        min-height: 280px;
    }

    .testimonial-card::before {
        font-size: 50px;
        top: 8px;
        left: 12px;
    }

    .testimonial-rating {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .testimonial-author {
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .author-name {
        font-size: 0.85rem;
    }

    .author-title {
        font-size: 0.7rem;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
    }

    .testimonial-nav svg {
        width: 18px;
        height: 18px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .testimonials-carousel {
        padding: 0 30px;
        margin-top: 20px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 18px 12px;
        border-radius: 10px;
    }

    .testimonial-card::before {
        font-size: 40px;
        top: 5px;
        left: 8px;
    }

    .testimonial-rating {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .testimonial-author {
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .author-name {
        font-size: 0.8rem;
    }

    .author-title {
        font-size: 0.68rem;
    }

    .testimonial-nav {
        width: 32px;
        height: 32px;
    }

    .testimonial-nav svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-indicators {
        bottom: -30px;
    }

    .testimonial-indicators .indicator {
        width: 6px;
        height: 6px;
    }
}