/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-black: #000000;
    --primary-red: #8B0000;
    --primary-white: #FFFFFF;
    --light-gray: #f8f9fa;
    --medium-gray: #666666;
    --dark-gray: #333333;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 8px 12px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--primary-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-red);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    animation: parallaxMove 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.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.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-red);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #660000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.5);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Counters */
.counters {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.counter-item {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.counter-item::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 ease;
}

.counter-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 0, 0, 0.5);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.3);
}

.counter-item:hover::before {
    left: 100%;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.counter-item:hover .counter-number {
    color: #ff4444;
    transform: scale(1.1);
}

.counter-label {
    font-size: 1rem;
    margin-top: 8px;
    opacity: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 600;
}

.feature i {
    font-size: 1.2rem;
}

/* Service Details Sections */
.service-details {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 0, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.service-details:nth-child(even) {
    background: var(--primary-white);
}

.service-details:nth-child(even)::before {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.01) 0%, transparent 50%, rgba(139, 0, 0, 0.01) 100%);
}

/* Enhanced Section Styling */
#about {
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(139, 0, 0, 0.02) 100%);
}

#services {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(139, 0, 0, 0.03) 100%);
}

#gallery {
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(139, 0, 0, 0.02) 100%);
}

#departments {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(139, 0, 0, 0.03) 100%);
}

#prices {
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(139, 0, 0, 0.02) 100%);
}

#products {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(139, 0, 0, 0.03) 100%);
}

#contact {
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(139, 0, 0, 0.02) 100%);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95) contrast(1.05);
}

.service-gallery img:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
    filter: brightness(1) contrast(1.1);
}

.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-red);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-btn:hover {
    background: #660000;
    transform: translateY(-2px);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 0, 0, 0.2);
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.service-card:active {
    transform: translateY(-10px) scale(0.98);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 10px 10px 0 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay i {
    font-size: 3rem;
    color: var(--primary-white);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(139, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(0.5deg);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.gallery-overlay i {
    font-size: 2rem;
}

/* Departments Section */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.department-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.department-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.department-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.department-card:hover .icon-overlay {
    opacity: 1;
}

.department-card:hover .department-icon img {
    transform: scale(1.1);
}

.icon-overlay i {
    font-size: 2.5rem;
    color: var(--primary-white);
}

.department-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.department-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Prices Section */
.prices {
    background: #f8f9fa;
}

.price-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-tab {
    padding: 12px 25px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-tab.active,
.price-tab:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

.price-table {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.price-table.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.price-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 30px;
}

.price-legend {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.price-items {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--primary-black);
}

.price {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.price-extras {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.price-extras h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
    margin-bottom: 20px;
    text-align: center;
}

/* Modern Price Table */
.price-table-modern {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.price-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary-red);
    color: var(--primary-white);
    font-weight: 600;
    padding: 15px;
    gap: 15px;
}

.service-col {
    font-size: 1.1rem;
}

.price-col {
    text-align: center;
    font-size: 1.1rem;
}

.price-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    align-items: center;
}

.price-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.special-service {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(139, 0, 0, 0.1));
    border-left: 4px solid var(--primary-red);
}

.service-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-black);
}

.price-table .service-icon {
    color: #666;
    font-size: 1rem;
    width: 18px;
    text-align: center;
    margin-right: 8px;
    opacity: 0.7;
}

.price {
    text-align: center;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 6px;
    background: rgba(139, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.price:hover {
    background: var(--primary-red);
    color: var(--primary-white);
    transform: scale(1.05);
}

.special-price {
    background: var(--primary-red);
    color: var(--primary-white);
    font-size: 1.2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(139, 0, 0, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
    }
}

/* Enhanced Section Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-logo img {
    transform: scale(1.1);
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.product-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.product-logo img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.product-card:hover .product-logo img {
    filter: grayscale(0%);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 5px;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.social-links {
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.social-link:hover {
    background: #660000;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-red);
    background: var(--primary-white);
    padding: 0 5px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #660000;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #660000;
    transform: translateY(-2px);
}


    50% {
        transform: scale(1.15);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary-black);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--primary-red);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: var(--primary-white);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-red);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-contact i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #660000;
    transform: translateY(-2px);
}

.language-toggle-footer {
    display: flex;
    gap: 10px;
}

.lang-btn-footer {
    padding: 8px 12px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.lang-btn-footer.active,
.lang-btn-footer:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--primary-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-red);
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-black);
    margin: 30px 0 15px;
}

.legal-content h4 {
    font-weight: 600;
    color: var(--primary-black);
    margin: 20px 0 10px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--medium-gray);
    text-align: justify;
}

.legal-content a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #660000;
    text-decoration: underline;
}

.legal-content strong {
    color: var(--primary-black);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes parallaxMove {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-form {
    padding: 40px;
}

.booking-matrix {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.matrix-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.matrix-row.full-width {
    grid-template-columns: 1fr;
}

.matrix-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.matrix-field label {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.95rem;
}

.matrix-field input,
.matrix-field select,
.matrix-field textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--primary-white);
}

.matrix-field input:focus,
.matrix-field select:focus,
.matrix-field textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.matrix-field input:disabled,
.matrix-field select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.char-counter {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
    margin-top: 5px;
}

.char-counter.valid {
    color: var(--primary-red);
    font-weight: 600;
}
    
    .matrix-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}
    
    .matrix-field input,
    .matrix-field select,
    .matrix-field textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

.booking-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.booking-buttons .submit-btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.booking-buttons .email-btn {
    background: var(--primary-red);
    color: var(--primary-white);
}

.booking-buttons .email-btn:hover {
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.booking-buttons .whatsapp-btn {
    background: #25D366;
    color: var(--primary-white);
}

.booking-buttons .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.booking-buttons .submit-btn i {
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Booking */
@media (max-width: 768px) {
    .booking-form {
    padding: 40px;
}

.booking-matrix {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.matrix-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.matrix-row.full-width {
    grid-template-columns: 1fr;
}

.matrix-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.matrix-field label {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.95rem;
}

.matrix-field input,
.matrix-field select,
.matrix-field textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--primary-white);
}

.matrix-field input:focus,
.matrix-field select:focus,
.matrix-field textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.matrix-field input:disabled,
.matrix-field select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.char-counter {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
    margin-top: 5px;
}

.char-counter.valid {
    color: var(--primary-red);
    font-weight: 600;
}
    
    .matrix-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}
    
    .matrix-field input,
    .matrix-field select,
    .matrix-field textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* Appointment Booking System */
.appointment-section {
    max-width: 1000px;
    margin: 0 auto;
}

.appointment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 50px;
    background: var(--light-gray);
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-radius: 45px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-black);
}

.tab-btn.active {
    background: var(--primary-red);
    color: var(--primary-white);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.tab-btn:hover:not(.active) {
    background: rgba(139, 0, 0, 0.1);
    color: var(--primary-red);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.appointment-form {
    background: var(--primary-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--primary-white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--primary-white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    padding: 10px;
}

.appointment-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.email-btn {
    background: var(--primary-red);
    color: var(--primary-white);
}

.email-btn:hover {
    background: #660000;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--primary-white);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.email-btn i,
.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.char-counter {
    position: absolute;
    bottom: -25px;
    right: 10px;
    font-size: 0.85rem;
    color: #666;
    transition: color 0.3s ease;
}

.char-counter.valid {
    color: var(--primary-red);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .appointment-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .appointment-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}






@media (max-width: 768px) {
    .booking-form {
        padding: 25px;
    }
    
    .matrix-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .matrix-field input,
    .matrix-field select,
    .matrix-field textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}
