/* Studio A Website Styles - Bilingual with Slideshow */
* {margin: 0; padding: 0; box-sizing: border-box;}
:root {
    --primary-color: #b8985f;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}
body {font-family: 'Roboto', 'Arial', sans-serif; color: var(--text-color); line-height: 1.6; overflow-x: hidden;}
a {text-decoration: none; color: inherit; transition: all 0.3s ease;}
img {max-width: 100%; height: auto; display: block;}
.container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}

/* Header */
.header {background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000;}
.top-bar {background: var(--secondary-color); color: var(--white); padding: 10px 0; font-size: 11px;}
.top-bar .container {display: flex; justify-content: space-between; align-items: center;}
.top-bar-info {display: flex; gap: 30px;}
.top-bar a {color: var(--white);}
.top-bar a:hover {color: var(--primary-color);}
.main-nav {padding: 20px 0;}
.main-nav .container {display: flex; justify-content: space-between; align-items: center;}
.logo {height: 80px; width: auto;}
.nav-menu {display: flex; list-style: none; gap: 30px; align-items: center;}
.nav-menu a {font-weight: 500; color: var(--secondary-color); padding: 10px 0; position: relative;}
.nav-menu a:hover, .nav-menu a.active {color: var(--primary-color);}
.nav-menu a::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease;}
.nav-menu a:hover::after {width: 100%;}
.booking-btn {background: var(--primary-color); color: var(--white); padding: 12px 30px; border-radius: 25px; font-weight: 600; border: 2px solid var(--primary-color);}
.booking-btn:hover {background: transparent; color: var(--primary-color);}
.language-switcher {display: flex; gap: 10px; align-items: center;}
.lang-btn {padding: 8px 15px; border: 2px solid var(--primary-color); background: transparent; color: var(--secondary-color); border-radius: 5px; cursor: pointer; font-weight: 500; transition: all 0.3s ease; font-size: 14px;}
.lang-btn:hover, .lang-btn.active {background: var(--primary-color); color: var(--white);}
.mobile-menu-toggle {display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--secondary-color);}

/* Slideshow Banner */
.slideshow-banner {position: relative; width: 100%; height: 500px; overflow: hidden; background: var(--secondary-color);}
.slideshow-container {position: relative; width: 100%; height: 100%;}
.slide {position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; justify-content: center;}
.slide.active {opacity: 1; z-index: 1;}
.slide img {width: 100%; height: 100%; object-fit: cover;}
.slide-content {position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); padding: 40px 20px 30px; text-align: center;}
.slide-content h2 {font-size: 36px; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);}
.slide-content p {font-size: 18px; margin-bottom: 20px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5);}
.slide-cta {display: inline-block; background: var(--primary-color); color: var(--white); padding: 12px 30px; margin-bottom: 10px; border-radius: 25px; font-weight: 600; transition: all 0.3s ease;}
.slide-cta:hover {background: var(--white); color: var(--primary-color); transform: scale(1.05);}
.slideshow-controls {position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;}
.slide-dot {width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent;}
.slide-dot.active {background: var(--primary-color); transform: scale(1.3); border-color: var(--white);}
.slide-dot:hover {background: var(--white);}
.slide-prev, .slide-next {position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: var(--white); border: none; font-size: 30px; padding: 15px 20px; cursor: pointer; z-index: 10; transition: all 0.3s ease; border-radius: 5px;}
.slide-prev {left: 20px;}
.slide-next {right: 20px;}
.slide-prev:hover, .slide-next:hover {background: var(--primary-color);}
.admin-controls {display: none; position: absolute; top: 10px; right: 10px; z-index: 100;}
.admin-controls.visible {display: block;}
.admin-btn {background: var(--primary-color); color: var(--white); border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: 600; margin: 0 5px; transition: all 0.3s ease;}
.admin-btn:hover {background: var(--secondary-color);}

/* Rest of styles */
.hero {background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(44, 44, 44, 0.05) 100%); padding: 80px 0; text-align: center;}
.hero h1 {font-size: 48px; color: var(--secondary-color); margin-bottom: 20px; font-weight: 700;}
.hero p {font-size: 20px; color: var(--text-color); max-width: 800px; margin: 0 auto 30px;}
.hero-cta {display: inline-block; background: var(--primary-color); color: var(--white); padding: 15px 40px; border-radius: 30px; font-size: 18px; font-weight: 600; margin-top: 20px;}
.hero-cta:hover {transform: translateY(-3px); box-shadow: 0 10px 20px rgba(184, 152, 95, 0.3);}
.featured-procedures {padding: 80px 0; background: var(--white);}
.section-title {text-align: center; margin-bottom: 60px;}
.section-title h2 {font-size: 36px; color: var(--secondary-color); margin-bottom: 15px; font-weight: 700;}
.section-title p {font-size: 18px; color: var(--text-color);}
.procedures-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;}
.procedure-card {background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease;}
.procedure-card:hover {transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.15);}
.procedure-card img {width: 100%; height: 250px; object-fit: cover;}
.procedure-card-content {padding: 25px;}
.procedure-card h3 {font-size: 24px; color: var(--secondary-color); margin-bottom: 15px;}
.procedure-card p {color: var(--text-color); margin-bottom: 20px; line-height: 1.8;}
.procedure-card .learn-more {color: var(--primary-color); font-weight: 600; display: inline-flex; align-items: center; gap: 5px;}
.procedure-card .learn-more:hover {gap: 10px;}
.about-section {padding: 80px 0; background: var(--light-bg);}
.about-content {display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;}
.about-text h2 {font-size: 36px; color: var(--secondary-color); margin-bottom: 25px; font-weight: 700;}
.about-text p {font-size: 16px; line-height: 1.8; margin-bottom: 20px;}
.about-image img {border-radius: 10px; box-shadow: var(--shadow);}
.services-categories {padding: 80px 0; background: var(--white);}
.categories-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;}
.category-card {background: var(--light-bg); padding: 40px 30px; border-radius: 10px; text-align: center; transition: all 0.3s ease; border: 2px solid transparent;}
.category-card:hover {border-color: var(--primary-color); background: var(--white); box-shadow: var(--shadow);}
.category-icon {font-size: 48px; color: var(--primary-color); margin-bottom: 20px;}
.category-card h3 {font-size: 22px; color: var(--secondary-color); margin-bottom: 15px;}
.category-card p {color: var(--text-color); font-size: 15px;}
.testimonials {padding: 80px 0; background: var(--light-bg);}
.testimonials-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;}
.testimonial-card {background: var(--white); padding: 30px; border-radius: 10px; box-shadow: var(--shadow);}
.testimonial-rating {color: var(--primary-color); margin-bottom: 15px; font-size: 20px;}
.testimonial-text {font-style: italic; color: var(--text-color); margin-bottom: 20px; line-height: 1.8;}
.testimonial-author {font-weight: 600; color: var(--secondary-color);}
.contact-section {padding: 80px 0; background: var(--white);}
.contact-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 50px;}
.contact-info h3 {font-size: 28px; color: var(--secondary-color); margin-bottom: 25px;}
.contact-item {display: flex; gap: 15px; margin-bottom: 20px;}
.contact-icon {font-size: 24px; color: var(--primary-color);}
.contact-form {background: var(--light-bg); padding: 40px; border-radius: 10px;}
.form-group {margin-bottom: 20px;}
.form-group label {display: block; margin-bottom: 8px; color: var(--secondary-color); font-weight: 500;}
.form-group input, .form-group textarea, .form-group select {width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 5px; font-family: inherit; font-size: 14px;}
.form-group textarea {resize: vertical; min-height: 120px;}
.submit-btn {background: var(--primary-color); color: var(--white); padding: 12px 40px; border: none; border-radius: 25px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease;}
.submit-btn:hover {background: var(--secondary-color); transform: translateY(-2px);}
.footer {background: var(--secondary-color); color: var(--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 h3 {color: var(--primary-color); margin-bottom: 20px; font-size: 20px;}
.footer-section ul {list-style: none;}
.footer-section ul li {margin-bottom: 10px;}
.footer-section a:hover {color: var(--primary-color);}
.social-links {display: flex; gap: 15px; margin-top: 20px;}
.social-links a {display: inline-block; width: 40px; height: 40px; background: var(--primary-color); border-radius: 50%; text-align: center; line-height: 40px; font-size: 18px;}
.social-links a:hover {background: var(--white); color: var(--primary-color);}
.footer-bottom {border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 14px;}
.page-header {background: linear-gradient(135deg, rgba(184, 152, 95, 0.1) 0%, rgba(44, 44, 44, 0.05) 100%); padding: 60px 0; text-align: center;}
.page-header h1 {font-size: 42px; color: var(--secondary-color); margin-bottom: 15px;}
.page-content {padding: 60px 0;}
.service-detail {max-width: 900px; margin: 0 auto;}
.service-detail h2 {font-size: 32px; color: var(--secondary-color); margin: 40px 0 20px;}
.service-detail h3 {font-size: 24px; color: var(--primary-color); margin: 30px 0 15px;}
.service-detail p {margin-bottom: 15px; line-height: 1.8;}
.service-detail ul {margin: 20px 0; padding-left: 30px;}
.service-detail ul li {margin-bottom: 10px;}
.price-box {background: var(--light-bg); padding: 30px; border-radius: 10px; margin: 30px 0; border-left: 4px solid var(--primary-color);}
.price-box h3 {color: var(--secondary-color); margin-bottom: 15px;}
.price {font-size: 32px; color: var(--primary-color); font-weight: 700;}
@keyframes fadeIn {from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);}}
.fade-in {animation: fadeIn 0.6s ease-out;}
@keyframes slideIn {from {transform: translateX(100%); opacity: 0;} to {transform: translateX(0); opacity: 1;}}
@keyframes slideOut {from {transform: translateX(0); opacity: 1;} to {transform: translateX(100%); opacity: 0;}}
.header.scrolled {box-shadow: 0 4px 20px rgba(0,0,0,0.15);}
@media (max-width: 768px) {
    .mobile-menu-toggle {display: block;}
    .nav-menu {display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: var(--shadow); padding: 20px;}
    .nav-menu.active {display: flex;}
    .hero h1 {font-size: 32px;}
    .hero p {font-size: 16px;}
    .about-content, .contact-grid {grid-template-columns: 1fr;}
    .procedures-grid {grid-template-columns: 1fr;}
    .section-title h2 {font-size: 28px;}
    .language-switcher {width: 100%; justify-content: center; padding: 10px 0;}
    .slideshow-banner {height: 300px;}
    .slide-content h2 {font-size: 24px;}
    .slide-content p {font-size: 14px;}
    .slide-prev, .slide-next {padding: 10px 15px; font-size: 20px;}
}
