/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-image: url('images_main/nature.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
    backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #9E8600 0%, #B8A000 100%);
    color: #ffffff;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(158, 134, 0, 0.3);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.header-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.header-navigation .nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-navigation .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
}

.header-navigation .nav-link:hover,
.header-navigation .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.header-navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-navigation .nav-link:hover::after,
.header-navigation .nav-link.active::after {
    width: 80%;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    text-align: left;
    align-items: center;
    flex-shrink: 0;
}


.logo-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.spa-name {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    text-align: left;
    align-items: center;
    margin-left: auto;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 0.8rem;
    min-width: 180px;
    gap: 0.8rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
    text-align: left;
}

.contact-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-value:hover {
    color: #f0f0f0;
}


/* Hero Video Section */
.hero-video {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid #9E8600;
    border-bottom: 3px solid #9E8600;
    box-shadow: 0 4px 20px rgba(158, 134, 0, 0.2);
    background: linear-gradient(135deg, #9E8600 0%, #8B7500 100%);
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    min-width: 100vw;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #9E8600 0%, #8B7500 100%);
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images_main/nature.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(158, 134, 0, 0.9) 0%, rgba(184, 134, 11, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, rgba(158, 134, 0, 1) 0%, rgba(184, 134, 11, 1) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.video-play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .video-play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-play-button i {
        font-size: 1.8rem;
    }
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(25, 25, 25, 0.7) 25%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(25, 25, 25, 0.7) 75%, 
        rgba(0, 0, 0, 0.6) 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    backdrop-filter: blur(10px) saturate(1.5);
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        0 0 30px rgba(255, 215, 0, 0.1);
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(45deg, 
        #FFD700, #FFA500, #FFD700, #B8860B, #FFD700);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    animation: border-shimmer 4s linear infinite;
}

@keyframes border-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.welcome-content {
    max-width: 800px;
}

.welcome-title {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-shadow: 
        3px 3px 0px #B8860B,
        6px 6px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 3s ease-in-out infinite;
}

.welcome-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFF8DC;
    font-weight: 300;
    margin: 0;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    font-style: italic;
}

@keyframes shimmer-text {
    0%, 100% { 
        background-position: 0% 50%; 
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%; 
        filter: brightness(1.2);
    }
}


/* Main Content Styles */
.main-content {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #9E8600 0%, #B8A000 50%, #8B7500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #9E8600;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(158, 134, 0, 0.2);
}

/* Combined Introduction and Therapy Section */
.intro-therapy-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 248, 248, 0.8) 50%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(2px);
    padding: 4rem 0;
    margin-bottom: 4rem;
    position: relative;
    border-top: 3px solid #9E8600;
    border-bottom: 3px solid #9E8600;
    box-shadow: 0 4px 20px rgba(158, 134, 0, 0.2);
}

.intro-therapy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(158, 134, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(158, 134, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c2c2c;
    font-weight: 500;
    text-align: left;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.right-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9E8600;
    text-align: center;
    margin-bottom: 1rem;
}

/* Image Placeholders */
.image-placeholder-large {
    width: 100%;
    height: 350px;
    border: 2px solid #9E8600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.image-placeholder-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 134, 0, 0.3);
}

.image-placeholder-large .section-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.section-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
    display: block;
}

.image-placeholder-medium {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.95) 100%);
    border: 2px solid #9E8600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder-medium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 134, 0, 0.3);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 3rem;
    color: #9E8600;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.placeholder-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Decorative Elements */
.decorative-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.decorative-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 248, 248, 0.9) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(158, 134, 0, 0.1);
    border: 2px solid rgba(158, 134, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decorative-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.2);
}

.decorative-item i {
    font-size: 1.5rem;
    color: #9E8600;
    width: 30px;
    text-align: center;
}

.decorative-item span {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.9rem;
}

/* Additional Images */
.additional-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.additional-images .image-placeholder-medium {
    width: 100%;
    height: 220px;
    border: 2px solid #9E8600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(158, 134, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.additional-images .image-placeholder-medium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 134, 0, 0.25);
}

.additional-images .placeholder-icon {
    font-size: 2.5rem;
    color: #9E8600;
    margin-bottom: 0.8rem;
    display: block;
}

.additional-images .placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.additional-images .placeholder-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}


.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.95) 100%);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-left: 4px solid #9E8600;
    border: 2px solid rgba(158, 134, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(158, 134, 0, 0.25);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9E8600 0%, #B8A000 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(158, 134, 0, 0.4);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #9E8600;
}

.benefit-content p {
    color: #2c2c2c;
    line-height: 1.6;
    font-weight: 500;
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, rgba(158, 134, 0, 0.7) 0%, rgba(184, 160, 0, 0.8) 50%, rgba(158, 134, 0, 0.7) 100%);
    backdrop-filter: blur(1px);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.experience-section .section-title {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.experience-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Ingredients Section */
.ingredients-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 248, 248, 0.7) 50%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(2px);
    position: relative;
    border-top: 2px solid #9E8600;
    border-bottom: 2px solid #9E8600;
    box-shadow: 0 2px 15px rgba(158, 134, 0, 0.15);
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(158, 134, 0, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(158, 134, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.ingredients-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #9E8600;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.ingredient-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.95) 100%);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(158, 134, 0, 0.3);
    backdrop-filter: blur(10px);
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(158, 134, 0, 0.3);
    border-color: #9E8600;
}

.ingredient-image {
    margin-bottom: 1rem;
    width: 100px;
    height: 100px;
    border: 2px solid #9E8600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.4);
    overflow: hidden;
}

.herb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9E8600 0%, #B8A000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(158, 134, 0, 0.4);
}

.ingredient-name {
    font-size: 1rem;
    font-weight: 600;
    color: #9E8600;
    margin-top: 0.5rem;
}

/* Feedback Section */
.feedback-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 248, 248, 0.7) 50%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(2px);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-top: 2px solid #9E8600;
    box-shadow: 0 2px 15px rgba(158, 134, 0, 0.15);
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(158, 134, 0, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 60% 40%, rgba(158, 134, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.feedback-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #2c2c2c;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #9E8600 0%, #8B7500 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #f0f0f0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .header-navigation {
        margin-left: 0;
        margin-right: 0;
        order: 2;
    }
    
    .header-navigation .nav-menu {
        gap: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-left: 0;
        order: 3;
    }
    
    .contact-item {
        min-width: auto;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-container {
        width: 85px;
        height: 85px;
        border-radius: 10px;
    }
    
    .spa-name {
        font-size: 2.5rem;
    }
    
    .hero-video {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-video-background {
        display: none !important;
    }
    
    .hero-background-image {
        display: block !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .right-content {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .decorative-elements {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .decorative-item {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .additional-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .additional-images .image-placeholder-medium {
        height: 160px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-video {
        height: 60vh;
    }
    
    .hero-overlay {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
        border-radius: 25px;
    }
    
    .welcome-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .welcome-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
    
    .play-button {
        font-size: 3rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .spa-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}
