/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.nav-menu a i {
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 1rem;
}

.lang-btn {
    border: 1px solid rgba(201, 169, 97, 0.45);
    background: transparent;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.lang-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0f0f0f;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    animation: heroZoom 20s ease-in-out infinite alternate;
    opacity: 1;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    animation: shimmer 3s infinite, floatText 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatText {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 1.2s both, pulseButton 2s ease-in-out 2s infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

@keyframes pulseButton {
    0%, 100% { box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffef9 0%, var(--white) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(228, 204, 92, 0.4);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 1.5rem 0 1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.service-duration {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.service-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.category-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--gold);
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.category-arrow {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
}

/* ===== SERVICE QUICK HEADER ===== */
.service-details-top {
    margin-top: 80px;
    padding-top: 1.5rem;
}

.service-header-quick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.service-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.cta-button-quick {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-button-quick:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ===== SERVICE HERO SECTION ===== */
.service-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(139, 115, 85, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1439 960"><defs><style>.a{fill:rgba(255,255,255,.05);}</style></defs><path class="a" d="M0,0H1439V960H0Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    margin-top: 80px;
}

.service-hero-simple {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    margin-top: 80px;
}

.service-hero-simple .service-hero-content {
    color: var(--primary-color);
}

.service-hero-simple .section-title {
    color: var(--primary-color);
}

.service-hero-simple .section-subtitle {
    color: #666;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.back-button:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.service-hero-simple .back-button {
    color: var(--secondary-color);
}

.service-hero-simple .back-button:hover {
    color: var(--gold);
}

/* ===== SERVICE DETAILS PAGES ===== */
.service-details {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-detail-card {
    background: var(--white);
    border-left: 5px solid var(--secondary-color);
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

.service-detail-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-header h3 i {
    color: var(--secondary-color);
}

.service-info {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    white-space: nowrap;
}

.service-time,
.service-cost {
    font-size: 0.95rem;
    font-weight: 600;
}

.service-time {
    color: #666;
    display: none;
    align-items: center;
    gap: 6px;
}

.service-cost {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.service-detail-body {
    color: #555;
    line-height: 1.8;
}

.service-detail-body p {
    margin-bottom: 0.7rem;
}

.service-detail-body strong {
    color: var(--primary-color);
}

.service-detail-body ul {
    list-style: none;
    margin: 0.8rem 0 1rem 0;
}

.service-detail-body li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.6rem;
}

.service-detail-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== SERVICE CTA ===== */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(139, 115, 85, 0.8) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.service-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== SERVICE INFO SECTION ===== */
.service-info-section {
    margin: 3rem 0;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 15px;
}

.service-info-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-item {
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.2);
    color: var(--gold);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 300;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 120px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(219, 192, 86, 0.3);
    transition: var(--transition);
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(219, 192, 86, 0.5);
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.9rem;
}

.member-rating i {
    color: var(--gold);
}

.member-rating span {
    margin-left: 6px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center 72%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(201, 169, 97, 0.03) 20px,
        rgba(201, 169, 97, 0.03) 40px
    );
    animation: slidePattern 15s linear infinite;
}

.image-placeholder i {
    font-size: 4rem;
    z-index: 1;
}

.image-placeholder span {
    z-index: 1;
    text-align: center;
}

.about-text {
    padding: 2rem 0;
}

.about-text .section-title {
    text-align: left;
    left: 0;
    transform: none;
}

.about-text .section-title::after {
    margin-left: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-number i {
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-rating {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.95rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-clicked {
    animation: gallery-click-animation 0.3s ease;
}

@keyframes gallery-click-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.reviewer-avatar {
    transition: transform 0.3s ease;
}

.member-rating i {
    transition: transform 0.2s ease;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1) rotate(5deg);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}

.info-card h3 i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.info-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.schedule-item:hover {
    background: #e8e8e8;
}

.schedule-item span {
    font-weight: 500;
    color: #555;
}

.schedule-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.schedule-item.closed strong {
    color: #999;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-button.whatsapp {
    background: #25d366;
}

.contact-button.whatsapp:hover {
    background: #20ba5a;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-size: 0.85rem !important;
    opacity: 0.7 !important;
    margin-top: 1rem !important;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-info h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom i {
    color: var(--secondary-color);
    margin: 0 5px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 380px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
    filter: saturate(1.08);
}

/* ===== FLOATING SOCIAL BUTTONS ===== */
.floating-social {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1);
}

.social-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-float.instagram {
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d92e7f 50%, #9b36b7 75%, #515bd4 100%);
}

.social-float.instagram:hover {
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d92e7f 50%, #9b36b7 75%, #515bd4 100%);
    filter: brightness(1.1);
}

.social-float.facebook {
    background: #1877f2;
}

.social-float.facebook:hover {
    background: #0a66c2;
}

.social-float.twitter {
    background: #1da1f2;
}

.social-float.twitter:hover {
    background: #1a8cd8;
}

.social-float.linkedin {
    background: #0077b5;
}

.social-float.linkedin:hover {
    background: #005885;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
        letter-spacing: 8px;
    }
    
    .services-grid,
    .team-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 12px;
    }

    .lang-btn {
        padding: 5px 9px;
        font-size: 0.68rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        justify-content: flex-start;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom-width: 2px;
    }
    
    .hero-title {
        letter-spacing: 5px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo {
        height: 30px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stat {
        align-items: center;
    }

    .service-header-quick {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .service-page-title {
        font-size: 1.8rem;
    }

    .cta-button-quick {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand,
    .footer-info,
    .footer-social {
        width: 100%;
    }

    .footer-address {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .services-grid,
    .team-grid,
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 320px;
    }

    .image-placeholder {
        height: 400px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 3px;
    }

    .logo-img {
        height: 35px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .footer-logo {
        height: 25px;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .service-card,
    .team-member,
    .review-card,
    .info-card {
        padding: 2rem 1.5rem;
    }

    .gallery-item {
        height: 270px;
    }

    .service-details {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .floating-social {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .social-float {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}