@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #faf9f7;
}

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

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Navigation Styles - Dark Blue Theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

.navbar.scrolled {
    background: rgba(45, 55, 72, 0.98);
    box-shadow: 0 2px 30px rgba(45, 55, 72, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    gap: 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #daa520;
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-left: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 2px;
    background: #daa520;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf9f7 0%, #f7f2f0 50%, #f1ebe8 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #daa520, #b8860b);
    margin: 1rem 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(218, 165, 32, 0.25);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #fff;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #daa520, #b8860b);
}

.btn-secondary {
    background: transparent;
    color: #daa520;
    border: 2px solid #daa520;
}

.btn-secondary:hover {
    background: #daa520;
    color: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-secondary.offers-btn {
    background: transparent;
    color: #C21807;
    border: 2px solid #C21807;
}

.btn-secondary.offers-btn:hover {
    background: #C21807;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 24, 7, 0.3);
}

.hero-buttons .btn {
    padding: 16px 35px;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    background: rgba(184, 134, 11, 0.1);
    color: #b8860b;
    text-decoration: none;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 3rem auto 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.back-to-top:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

.back-to-top i {
    font-size: 0.8rem;
}

.section-footer {
    text-align: center;
    padding-top: 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #daa520, #b8860b);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: #718096;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #b8860b;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.15);
}

.feature i {
    font-size: 2.2rem;
    color: #b8860b;
    min-width: 60px;
    margin-top: 0.3rem;
}

.feature h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-container {
    width: 400px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(218, 165, 32, 0.25);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Treatments Section */
.treatments {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f7f2f0 0%, #f1ebe8 100%);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.25rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.service-card.featured {
    border-color: #b8860b;
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.service-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.service-card li {
    color: #4a5568;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card .hero-buttons {
    margin-top: auto;
    justify-content: center;
}

.service-card .btn {
    padding: 16px 35px;
}

/* Skincare Section */
.skincare {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f7f2f0 0%, #f1ebe8 100%);
    background-image: url('tropic_background.jpg');
    background-repeat: repeat;
    background-size: auto;
    position: relative;
}

.skincare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 242, 240, 0.85) 0%, rgba(241, 235, 232, 0.85) 100%);
    pointer-events: none;
}

.skincare .container {
    position: relative;
    z-index: 1;
}

.skincare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    max-height: 1060px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.skincare-grid.show-all {
    max-height: none;
}

.skincare-toggle-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.skincare-toggle-btn {
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.skincare-toggle-btn i {
    font-size: 0.9rem;
}

.skincare-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 520px;
}

.skincare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.25);
}

.skincare-image {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    position: relative;
}

.skincare-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

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

.skincare-content {
    padding: 1.5rem 1.5rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.skincare-content h3 {
    font-family: 'Playfair Display', serif;
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.skincare-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.skincare-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding: 0 0.5rem 0.5rem;
}

.btn-skincare {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    font-size: 0.9rem;
}

.btn-skincare:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #daa520, #b8860b);
}

/* Pricing Section */
.pricing {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b8860b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
}

.pricing-category h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #daa520, #b8860b);
    margin: 1rem auto;
    border-radius: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.85rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.price-card.featured {
    border-color: #b8860b;
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.2);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #fff;
    padding: 4.5px 15px;
    border-radius: 0 25px 0 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    z-index: 10;
}

.price-header h4 {
    font-family: 'Playfair Display', serif;
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.price-description {
    margin-bottom: 0.9rem;
}

.price-description p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.price-card .btn {
    padding: 16px 35px;
}

/* Offers Section */
.offers {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f7f2f0 0%, #f1ebe8 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background: #C21807;
    padding: 1.25rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(194, 24, 7, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(194, 24, 7, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(194, 24, 7, 0.3);
    border-color: rgba(194, 24, 7, 0.5);
}

.offer-card.featured {
    border-color: #C21807;
    box-shadow: 0 15px 50px rgba(194, 24, 7, 0.3);
}

.offer-card .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.offer-card .service-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.offer-card p {
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.offer-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.offer-card li {
    color: #fff;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.offer-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
    font-size: 1.1rem;
}

.offer-card .hero-buttons {
    margin-top: auto;
    justify-content: center;
}

.offer-card .btn {
    padding: 16px 35px;
}

/* Christmas Offer Styling */
.offer-card.christmas-offer {
    background: linear-gradient(135deg, #1a5f3b 0%, #2d8659 100%);
    border: 3px solid #C21807;
    box-shadow: 0 15px 50px rgba(194, 24, 7, 0.4);
    position: relative;
    overflow: hidden;
}

.offer-card.christmas-offer:hover {
    box-shadow: 0 20px 60px rgba(194, 24, 7, 0.5);
}

.offer-card.christmas-offer .featured-badge {
    z-index: 10;
}

.offer-card.christmas-offer .christmas-subtitle {
    font-family: 'Great Vibes', cursive;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
}

.offer-card.christmas-offer .price-strike {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.offer-card.christmas-offer .offer-price {
    color: #daa520;
    font-weight: bold;
    font-size: 1.1rem;
}

.offer-card.christmas-offer li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.offer-card.christmas-offer .offer-text {
    flex: 1;
}

.offer-card.christmas-offer .offer-pricing {
    text-align: right;
    white-space: nowrap;
}

.offer-card.christmas-offer .price-strike,
.offer-card.christmas-offer .offer-price {
    white-space: nowrap;
}

/* Snowflakes Animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 30%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.snowflake:nth-child(3) {
    left: 50%;
    animation-duration: 7s;
    animation-delay: 1s;
}

.snowflake:nth-child(4) {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.snowflake:nth-child(5) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.snowflake:nth-child(6) {
    left: 20%;
    animation-duration: 8.5s;
    animation-delay: 2.5s;
}

@keyframes snowfall {
    0% {
        top: -10%;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 110%;
        opacity: 0;
    }
}

.offer-card.christmas-offer .service-icon,
.offer-card.christmas-offer h3,
.offer-card.christmas-offer h4,
.offer-card.christmas-offer p,
.offer-card.christmas-offer ul,
.offer-card.christmas-offer .hero-buttons {
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #f6ad55;
    font-size: 1.3rem;
}

.testimonial-card p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-info strong {
    color: #2d3748;
    font-size: 1.15rem;
    font-weight: 600;
}

.client-info span {
    color: #b8860b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f7f2f0 0%, #f1ebe8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.15);
}

.contact-item i {
    font-size: 1.8rem;
    color: #b8860b;
    margin-top: 0.5rem;
    min-width: 40px;
}

.contact-item h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.contact-item p a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: #b8860b;
}

.contact-item .btn {
    padding: 12px 25px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b8860b;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

.status-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.status-success {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.status-error {
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

/* Footer Styles */
.footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 30px 0 15px;
    border-top: 3px solid #daa520;
}

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

.footer-section h3 {
    font-family: 'Great Vibes', cursive;
    color: #daa520;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-section h4 {
    color: #daa520;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-section address {
    font-style: normal;
}

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

.footer-section li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section a:hover {
    color: #daa520;
    transform: translateX(3px);
}

.footer-section a i {
    font-size: 0.8rem;
    min-width: 14px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #daa520;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #daa520;
    color: #2d3748;
    border-color: #daa520;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    margin-top: 1rem;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.85rem;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 1200px) {
    .skincare-grid {
        grid-template-columns: repeat(3, 1fr);
        max-height: 1060px;
    }
    
    .skincare-grid.show-all {
        max-height: none;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 2rem;
    }
    
    .nav-logo h2 {
        font-size: 2.8rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-image-container {
        width: 350px;
        height: 350px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .skincare-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 1060px;
    }
    
    .skincare-grid.show-all {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: rgba(45, 55, 72, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(45, 55, 72, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu .btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 280px;
        height: 280px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skincare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-height: 1070px;
    }
    
    .skincare-grid.show-all {
        max-height: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 100px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-logo h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        width: 250px;
        height: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-image-container {
        width: 300px;
        height: 300px;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .skincare-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 20px 0 10px;
    }
    
    .footer-section h3 {
        font-size: 1.6rem;
    }
}
