/* CONFIGURAÇÕES GLOBAIS */
:root {
    --primary: #d4af37; /* Dourado */
    --dark: #121212;    /* Preto Profundo */
    --gray: #1e1e1e;    /* Cinza Escuro */
    --white: #ffffff;
    --gold: #d4af37;
    --dark-bg: #0f0f0f;
    --gray-light: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* NAVBAR */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribui os 3 blocos: Esquerda | Centro | Direita */
    width: 100%;
}

/* Ajuste do Logo na Navbar */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto; /* Garante que ele "empurre" o resto para a direita se necessário */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre a imagem e o texto DBarber */
    text-decoration: none;
}

.logo-img {
    height: 70px; /* Ajuste a altura conforme o tamanho da sua imagem */
    width: auto;
    object-fit: contain;
}

/* Garante que o texto DBarber também esteja alinhado */
.logo span {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap; /* Impede que o nome quebre em duas linhas */
}

.nav-menu {
    flex: 2; /* Ocupa mais espaço para garantir a centralização */
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    
}

.nav-menu a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

/* Criando a linha invisível */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Efeito ao passar o mouse: a linha expande */
.nav-menu a:hover::after {
    width: 100%;
}

/* BOTÃO HAMBÚRGUER (Aparece apenas no celular) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    position: relative;
}

/* Galeria de Cortes - Design Luxuoso */
.gallery-section {
    margin-bottom: 100px;
    padding: 30px 20px;
    position: relative;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.title-decoration {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 15px 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin: 20px 0 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: rgba(212, 175, 55, 0.8);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 10px;
}

.premium-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset,
        0 0 60px rgba(212, 175, 55, 0.05);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 100px rgba(212, 175, 55, 0.3),
        0 0 150px rgba(212, 175, 55, 0.1);
}

.featured-gallery {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(212, 175, 55, 0.2) inset,
        0 0 80px rgba(212, 175, 55, 0.15);
}

.featured-gallery:hover {
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(212, 175, 55, 0.6) inset,
        0 0 120px rgba(212, 175, 55, 0.4),
        0 0 200px rgba(212, 175, 55, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.premium-card:hover .gallery-image-wrapper img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) contrast(1.2);
}

.image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.premium-card:hover .image-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.gallery-content {
    padding: 30px 25px;
    background: rgba(10, 10, 10, 0.95);
    position: relative;
    z-index: 2;
}

.gallery-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.gallery-badge.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.2));
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.premium-card:hover .gallery-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gallery-item-desc {
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.7);
    line-height: 1.6;
    margin-top: 8px;
    font-weight: 300;
}

.gallery-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-top: 20px;
    transition: width 0.4s ease;
}

.premium-card:hover .gallery-divider {
    width: 100%;
}

.gallery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-card:hover .gallery-glow {
    width: 150%;
    height: 150%;
}


/* BOTÕES */
.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
}



.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline:hover { background: var(--white); color: #000; }

/* CARDS DE PLANOS */
.card-plano {
    background: var(--gray);
    border: 1px solid var(--primary);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card-plano:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(212, 175, 55, 0.2);
}

.text-center { text-align: center; padding: 80px 0; }
.divider { width: 60px; border: 2px solid var(--gold); margin: 20px auto; }

/* RESPONSIVIDADE (MOBILE) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block; /* Mostra o botão hambúrguer */
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%; /* Escondido à direita */
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(15, 15, 15, 0.98);
        transition: 0.4s;
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        padding-top: 50px;
    }

    /* Quando o menu estiver aberto */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .grid-planos {
        grid-template-columns: 1fr;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Seção Comodidades */
/* Ajusta os ícones de comodidades para 2 colunas */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amenity-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 80px rgba(212, 175, 55, 0.3),
        0 0 120px rgba(212, 175, 55, 0.1);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.amenity-name {
    color: rgba(212, 175, 55, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-name {
    color: #d4af37;
    font-weight: 600;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.amenities-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.amenities-subtitle {
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 80px rgba(212, 175, 55, 0.3),
        0 0 120px rgba(212, 175, 55, 0.1);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.amenity-name {
    color: rgba(212, 175, 55, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-name {
    color: #d4af37;
    font-weight: 600;
}

/* Modal de Informações */
.amenity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.amenity-modal.active {
    display: flex;
}

.amenity-modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset,
        0 0 100px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.amenity-modal-close:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    transform: rotate(90deg);
}

.amenity-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.amenity-modal-content p {
    color: rgba(212, 175, 55, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.amenity-modal-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.amenity-modal-content li {
    color: rgba(212, 175, 55, 0.8);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.amenity-modal-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}
 
 /* Extra Services Section */
.extra-services-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.extra-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.extra-services-notice {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.notice-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
}

.notice-text strong {
    color: #d4af37;
    font-weight: 700;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    z-index: 1;
}

.extra-service-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.extra-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.extra-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.extra-service-card:hover::before {
    opacity: 1;
}

.extra-service-card.highlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-color: rgba(212, 175, 55, 0.5);
}

.extra-service-card.highlight-card::before {
    opacity: 1;
}

.extra-service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.extra-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.extra-service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.extra-service-description strong {
    color: #d4af37;
    font-weight: 700;
}

.extra-service-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.example-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.example-tag.included {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.extra-service-card:hover .example-tag {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.extra-services-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin: 50px auto 0;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.warning-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.warning-text {
    flex: 1;
}

.warning-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.warning-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.warning-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(239, 68, 68, 0.3);
}

.warning-contact a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.warning-contact a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 70px 20px 35px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d4af37;
    opacity: 0.8;
    margin-bottom: 10px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: #d4af37;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    opacity: 0.7;
}
