/* ===== DUPLOS GEMINI - SECTIONS STYLES ===== */

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 30%),
        linear-gradient(135deg, #fdfeff 0%, #f9fbfe 15%, #f4f7fb 30%, #eff3f8 45%, #eaeef5 60%, #e4e9f2 75%, #dfe4ef 90%, #d9dfec 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23d4af37" opacity="0.15"/><circle cx="5" cy="5" r="0.8" fill="%23c9a96e" opacity="0.1"/><circle cx="35" cy="35" r="1" fill="%23b8941f" opacity="0.12"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>'),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.8) 50%, transparent 60%);
    opacity: 0.6;
    animation: backgroundShift 20s ease-in-out infinite;
}

.welcome-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-10px) translateY(-15px); }
    66% { transform: translateX(10px) translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.welcome-text {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #c9a96e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 0;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.9) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(145deg, #ffffff 0%, #fefefe 20%, #fcfdfe 40%, #f8fafb 60%, #f4f6f8 80%, #f0f2f5 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08), 
        0 2px 8px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #c9a96e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15), 
        0 12px 30px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: 
        radial-gradient(circle at top left, rgba(255,254,250,0.95) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(145deg, #fffef9 0%, #fffdf5 20%, #fefcf0 40%, #fdfaeb 60%, #fcf8e6 80%, #faf6e0 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== VENUES SECTION ===== */
.venues-modern {
    padding: 10rem 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(44, 24, 16, 0.8) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 69, 19, 0.6) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1412 20%, #2a241c 40%, #1f1a14 60%, #141210 80%, #0f0f0f 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

.venues-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="luxury-grid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23d4af37" opacity="0.15"/><circle cx="10" cy="10" r="1" fill="%23c9a96e" opacity="0.1"/><circle cx="50" cy="50" r="1.5" fill="%23b8941f" opacity="0.12"/><rect x="29" y="0" width="2" height="60" fill="%23d4af37" opacity="0.05"/><rect x="0" y="29" width="60" height="2" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23luxury-grid)"/></svg>'),
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 50%, transparent 52%);
    opacity: 0.7;
    animation: luxuryShift 25s ease-in-out infinite;
}

.venues-modern::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: luxuryFloat 20s ease-in-out infinite;
}

@keyframes luxuryShift {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    25% { transform: translateX(-20px) translateY(-30px) scale(1.05); }
    50% { transform: translateX(15px) translateY(-20px) scale(0.95); }
    75% { transform: translateX(-10px) translateY(25px) scale(1.02); }
}

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-40px) rotate(5deg) scale(1.1); }
    66% { transform: translateY(20px) rotate(-3deg) scale(0.9); }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid #d4af37;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #c9a96e);
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.venues-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.venue-card-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafb 30%, #f0f3f6 70%, #e8ecf0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.venue-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    background: linear-gradient(145deg, #fffef4 0%, #f7f3d8 30%, #ede6b5 70%, #e0d591 100%);
}

.venue-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.venue-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

/* Venue image placeholder - Dark Gray */
.venue-image:not([style*="background-image"]),
.venue-image[style*="background-image: url('')"],
.venue-image[style=""] {
    background: 
        linear-gradient(135deg, #374151 0%, #1f2937 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="40" y="60" width="120" height="80" fill="none" stroke="%23ffffff" stroke-width="4" rx="8"/><circle cx="80" cy="90" r="12"/><path d="M50 130l25-25 20 20 35-35 20 20v20H50z" stroke="%23ffffff" stroke-width="3" fill="%23ffffff" opacity="0.7"/><text x="100" y="175" text-anchor="middle" font-family="Arial, sans-serif" font-size="12" font-weight="bold" fill="%23ffffff" opacity="0.9">TROCAR VENUE</text></g></svg>') center/60% no-repeat;
}

.venue-card-modern:hover .venue-image {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.venue-content {
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.venue-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.venue-content p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #d4af37;
    font-size: 1rem;
}

.venue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.venue-btn:hover {
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

/* ===== SERVICES MODERN SECTION ===== */
.services-modern {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at 25% 10%, rgba(255, 250, 240, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 90%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
        conic-gradient(from 0deg at 20% 30%, rgba(248, 250, 251, 0.9) 0deg, rgba(241, 244, 247, 0.9) 90deg, rgba(234, 239, 243, 0.9) 180deg, rgba(227, 233, 239, 0.9) 270deg, rgba(248, 250, 251, 0.9) 360deg),
        linear-gradient(135deg, #fdfdfe 0%, #f9fbfc 20%, #f4f7fa 40%, #eef2f6 60%, #e8ecf2 80%, #e1e6ed 100%);
    position: relative;
    overflow: hidden;
}

.services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="services-luxury" width="80" height="80" patternUnits="userSpaceOnUse"><polygon points="40,10 50,30 70,30 56,42 61,62 40,50 19,62 24,42 10,30 30,30" fill="%23d4af37" opacity="0.08"/><circle cx="20" cy="20" r="2" fill="%23c9a96e" opacity="0.06"/><circle cx="60" cy="60" r="1.5" fill="%23b8941f" opacity="0.07"/><rect x="39" y="0" width="2" height="80" fill="%23d4af37" opacity="0.03"/><rect x="0" y="39" width="80" height="2" fill="%23d4af37" opacity="0.03"/></pattern></defs><rect width="300" height="300" fill="url(%23services-luxury)"/></svg>'),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px);
    opacity: 0.8;
    animation: servicesPattern 30s linear infinite;
}

.services-modern::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 700px;
    height: 700px;
    background: 
        radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        conic-gradient(from 45deg, rgba(255, 255, 255, 0.1) 0deg, rgba(212, 175, 55, 0.05) 90deg, rgba(255, 255, 255, 0.1) 180deg, rgba(212, 175, 55, 0.05) 270deg, rgba(255, 255, 255, 0.1) 360deg);
    border-radius: 50%;
    animation: servicesOrb 25s ease-in-out infinite;
}

@keyframes servicesPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-80px) translateY(-80px); }
}

@keyframes servicesOrb {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-50px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.95); }
    75% { transform: translateY(-40px) rotate(270deg) scale(1.05); }
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.service-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 30%, #f2f4f7 70%, #eaeff3 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(212, 175, 55, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #c9a96e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #fffef8 0%, #f9f5e2 30%, #f0e9c8 70%, #e6daa5 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.service-card-modern p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features i {
    color: #d4af37;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* ===== GALLERY SECTION ===== */
.gallery-modern {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 245, 225, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
        linear-gradient(120deg, #fefefe 0%, #fcfcfd 10%, #f8fafb 25%, #f4f7fa 40%, #f0f4f7 55%, #ecf0f4 70%, #e8ecf1 85%, #e4e8ee 100%),
        repeating-conic-gradient(from 0deg at 50% 50%, rgba(212, 175, 55, 0.02) 0deg, transparent 15deg, rgba(212, 175, 55, 0.02) 30deg, transparent 45deg);
    position: relative;
    overflow: hidden;
}

.gallery-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="gallery-mosaic" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="30" height="30" fill="%23d4af37" opacity="0.04" rx="3"/><rect x="60" y="10" width="20" height="40" fill="%23c9a96e" opacity="0.05" rx="2"/><rect x="10" y="60" width="40" height="20" fill="%23b8941f" opacity="0.03" rx="2"/><rect x="60" y="60" width="30" height="30" fill="%23d4af37" opacity="0.06" rx="3"/><circle cx="25" cy="25" r="3" fill="%23d4af37" opacity="0.08"/><circle cx="75" cy="75" r="2" fill="%23c9a96e" opacity="0.06"/></pattern></defs><rect width="400" height="400" fill="url(%23gallery-mosaic)"/></svg>'),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    opacity: 0.7;
    animation: galleryMosaic 35s ease-in-out infinite;
}

.gallery-modern::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 60%;
    width: 500px;
    height: 500px;
    background: 
        conic-gradient(from 90deg, rgba(212, 175, 55, 0.06) 0deg, rgba(255, 255, 255, 0.3) 120deg, rgba(212, 175, 55, 0.04) 240deg, rgba(255, 255, 255, 0.3) 360deg);
    border-radius: 50%;
    animation: galleryFloat 20s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes galleryMosaic {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    20% { transform: translateX(-30px) translateY(-20px) scale(1.05); }
    40% { transform: translateX(20px) translateY(-30px) scale(0.95); }
    60% { transform: translateX(-15px) translateY(25px) scale(1.02); }
    80% { transform: translateX(25px) translateY(-10px) scale(0.98); }
}

@keyframes galleryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-60px) rotate(120deg) scale(1.2); }
    66% { transform: translateY(40px) rotate(240deg) scale(0.8); }
}

.gallery-container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 40%, #f2f4f7 80%, #eaeff3 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    height: 300px;
    backdrop-filter: blur(5px);
}

.gallery-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    background: linear-gradient(135deg, #fffef6 0%, #f7f2d4 40%, #ede4ab 80%, #e2d682 100%);
}

.gallery-card-large {
    grid-column: span 2;
    grid-row: span 2;
    height: 620px;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.1) contrast(1.05);
    display: block;
}

/* Gallery placeholder - force dark background with maximum specificity */
.gallery-card .gallery-image-wrapper img:not([src]),
.gallery-card .gallery-image-wrapper img[src=""],
.gallery-card .gallery-image-wrapper img[src*="data:image/svg+xml"],
.gallery-card-large .gallery-image-wrapper img:not([src]),
.gallery-card-large .gallery-image-wrapper img[src=""],
.gallery-card-large .gallery-image-wrapper img[src*="data:image/svg+xml"],
.venue-card img:not([src]),
.venue-card img[src=""],
.gallery-item img:not([src]),
.gallery-item img[src=""],
div.gallery-card img:not([src]),
div.gallery-card img[src=""],
div.gallery-card-large img:not([src]),
div.gallery-card-large img[src=""] {
    background: #374151 !important;
    background-color: #374151 !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><rect width="150" height="150" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="25" y="35" width="100" height="80" fill="none" stroke="%23ffffff" stroke-width="3" rx="6"/><circle cx="50" cy="60" r="8"/><path d="M30 100l20-20 15 15 25-25 15 15v15H30z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="75" y="135" text-anchor="middle" font-family="Arial, sans-serif" font-size="9" font-weight="bold" fill="%23ffffff">TROCAR FOTO</text></g></svg>') !important;
    background-size: 60% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    filter: none !important;
    border: 1px solid #6b7280 !important;
}

.gallery-card .gallery-image-wrapper img:not([src]),
.gallery-card .gallery-image-wrapper img[src=""],
.gallery-card .gallery-image-wrapper img.placeholder-image,
.gallery-card-large .gallery-image-wrapper img:not([src]),
.gallery-card-large .gallery-image-wrapper img[src=""],
.gallery-card-large .gallery-image-wrapper img.placeholder-image {
    min-height: 200px;
    background: #374151 !important;
    background-color: #374151 !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><rect width="150" height="150" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="25" y="35" width="100" height="80" fill="none" stroke="%23ffffff" stroke-width="3" rx="6"/><circle cx="50" cy="60" r="8"/><path d="M30 100l20-20 15 15 25-25 15 15v15H30z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="75" y="135" text-anchor="middle" font-family="Arial, sans-serif" font-size="9" font-weight="bold" fill="%23ffffff">TROCAR FOTO</text></g></svg>') !important;
    background-size: 50% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 1px solid #6b7280 !important;
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.9) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery-icon i {
    font-size: 1.5rem;
    color: white;
}

.gallery-card:hover .gallery-icon {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: scale(1.1) rotate(5deg);
}

.gallery-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.gallery-btn-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn-view:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    transform: translateY(-2px);
}

.gallery-cta {
    margin-top: 5rem;
}

.gallery-btn-main {
    background: linear-gradient(135deg, #d4af37 0%, #c9a96e 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-btn-main i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gallery-btn-main:hover i {
    transform: scale(1.2);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at 10% 10%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 90%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 30%, rgba(247, 249, 251, 0.8) 0%, transparent 60%),
        linear-gradient(150deg, #ffffff 0%, #fcfdfe 15%, #f9fbfc 30%, #f5f8fa 45%, #f1f4f7 60%, #edf1f5 75%, #e9edf2 90%, #e5e9ef 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="team-professionals" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="20" r="3" fill="%23d4af37" opacity="0.08"/><circle cx="20" cy="50" r="2" fill="%23c9a96e" opacity="0.06"/><circle cx="80" cy="80" r="2.5" fill="%23b8941f" opacity="0.07"/><rect x="10" y="10" width="20" height="20" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.04" rx="2"/><rect x="70" y="30" width="15" height="15" fill="none" stroke="%23c9a96e" stroke-width="1" opacity="0.05" rx="2"/><path d="M30,70 L40,75 L30,80 L20,75 Z" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="300" height="300" fill="url(%23team-professionals)"/></svg>'),
        repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(212, 175, 55, 0.02) 8px, rgba(212, 175, 55, 0.02) 16px);
    opacity: 0.8;
    animation: teamPattern 40s linear infinite;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 60%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: teamOrb 18s ease-in-out infinite;
}

@keyframes teamPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

@keyframes teamOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.2); }
}

.team-section .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.team-section .section-header h2 {
    color: #000000;
}

.team-section .section-header p {
    color: #666666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(246, 248, 250, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 90%, rgba(255, 255, 255, 0.6) 0%, transparent 45%),
        conic-gradient(from 180deg at 80% 20%, rgba(246, 248, 250, 0.8) 0deg, rgba(238, 242, 245, 0.8) 120deg, rgba(230, 236, 240, 0.8) 240deg, rgba(246, 248, 250, 0.8) 360deg),
        linear-gradient(160deg, #f8fafb 0%, #f4f7f9 20%, #f0f3f6 40%, #ebeef2 60%, #e6eaef 80%, #e1e5eb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="testimonial-quotes" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M30,30 Q40,20 50,30 Q40,40 30,30" fill="%23d4af37" opacity="0.06"/><path d="M80,80 Q90,70 100,80 Q90,90 80,80" fill="%23c9a96e" opacity="0.05"/><circle cx="60" cy="30" r="2" fill="%23b8941f" opacity="0.07"/><circle cx="30" cy="90" r="1.5" fill="%23d4af37" opacity="0.08"/><path d="M10,60 L20,55 L30,60 L20,65 Z" fill="%23d4af37" opacity="0.04"/><path d="M90,40 L100,35 L110,40 L100,45 Z" fill="%23c9a96e" opacity="0.05"/></pattern></defs><rect width="400" height="400" fill="url(%23testimonial-quotes)"/></svg>'),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    opacity: 0.9;
    animation: testimonialQuotes 30s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 70%;
    width: 600px;
    height: 600px;
    background: 
        conic-gradient(from 45deg, rgba(212, 175, 55, 0.03) 0deg, rgba(255, 255, 255, 0.1) 90deg, rgba(212, 175, 55, 0.03) 180deg, rgba(255, 255, 255, 0.1) 270deg, rgba(212, 175, 55, 0.03) 360deg);
    border-radius: 50%;
    animation: testimonialGlow 22s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes testimonialQuotes {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-15px) translateY(-20px) rotate(2deg); }
    50% { transform: translateX(10px) translateY(-15px) rotate(-1deg); }
    75% { transform: translateX(-5px) translateY(18px) rotate(1deg); }
}

@keyframes testimonialGlow {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(30px) rotate(240deg) scale(0.9); }
}

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

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 25%, #f2f4f7 50%, #eaeff3 75%, #e2e8ed 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(212, 175, 55, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(8px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #c9a96e);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #fffef8 0%, #f8f4e6 25%, #f0e9c8 50%, #e8deab 75%, #ded18a 100%);
    border-color: rgba(212, 175, 55, 0.25);
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-modern {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 69, 19, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 10%, rgba(44, 24, 16, 0.1) 0%, transparent 50%),
        conic-gradient(from 45deg at 30% 70%, rgba(26, 26, 26, 0.9) 0deg, rgba(35, 28, 22, 0.9) 90deg, rgba(45, 35, 28, 0.9) 180deg, rgba(32, 25, 20, 0.9) 270deg, rgba(26, 26, 26, 0.9) 360deg),
        linear-gradient(125deg, #0f0f0f 0%, #1a1612 15%, #252018 30%, #1f1a14 45%, #1a1510 60%, #15120c 75%, #100f0a 90%, #0a0a08 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><defs><pattern id="cta-static" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="3" fill="%23d4af37" opacity="0.15"/><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="60" r="2" fill="%23c9a96e" opacity="0.12"/><polygon points="10,40 15,45 20,40 15,35" fill="%23d4af37" opacity="0.08"/><polygon points="70,20 75,25 80,20 75,15" fill="%23ffffff" opacity="0.06"/></pattern></defs><rect width="500" height="500" fill="url(%23cta-static)"/></svg>'),
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.03) 10deg, transparent 20deg, rgba(212, 175, 55, 0.03) 30deg, transparent 40deg);
    opacity: 0.6;
}

.cta-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        conic-gradient(from 0deg, rgba(212, 175, 55, 0.03) 0deg, transparent 60deg, rgba(212, 175, 55, 0.03) 120deg, transparent 180deg, rgba(212, 175, 55, 0.03) 240deg, transparent 300deg, rgba(212, 175, 55, 0.03) 360deg);
    border-radius: 50%;
}


.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-cta.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #c9a96e);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c9a96e, var(--primary-gold));
}

.btn-cta.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.cta-features .feature-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* ===== SERVICES SHOWCASE SECTION ===== */
.services-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="showcase-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23showcase-pattern)"/></svg>');
    opacity: 0.5;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.showcase-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 175, 55, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-icon {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.showcase-item p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== VENUE PAGES STYLES ===== */
.venue-details {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 40%, #f2f4f7 100%);
    position: relative;
    overflow: hidden;
}

.venue-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="venue-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.8" fill="%23d4af37" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23venue-pattern)"/></svg>');
    opacity: 0.5;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.details-content h2,
.details-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.details-intro {
    color: #333333 !important;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gallery-header h2,
.services-header h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.gallery-header p,
.services-header p {
    color: #333333;
    font-size: 1.2rem;
    line-height: 1.7;
}

.service-card h4 {
    color: #333333 !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.venue-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 3rem;
}

.venue-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-row .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-row .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-info h4,
.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.feature-info p,
.feature-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.details-image {
    position: relative;
}

.details-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.venue-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7f9fb 0%, #f0f3f6 50%, #e9edf1 100%);
    position: relative;
    overflow: hidden;
}

.venue-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-venue-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.7" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-venue-pattern)"/></svg>');
    opacity: 0.4;
}

.venue-gallery .section-header {
    margin-bottom: 4rem;
}

.venue-gallery .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.venue-gallery .section-header p {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
}

.gallery-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.gallery-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover {
    transform: scale(1.05);
}

.gallery-main .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-main:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.thumbnail-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumb-overlay {
    opacity: 1;
}

.venue-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 30%, #f4f6f8 70%, #eef1f5 100%);
    position: relative;
    overflow: hidden;
}

.venue-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-venue-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="0.6" fill="%23d4af37" opacity="0.07"/></pattern></defs><rect width="100" height="100" fill="url(%23services-venue-pattern)"/></svg>');
    opacity: 0.3;
}

.venue-services .section-header {
    margin-bottom: 4rem;
}

.venue-services .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.venue-services .section-header p {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
}

.venue-services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.venue-services .service-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.venue-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: white;
}

.venue-services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.venue-services .service-card:hover .service-icon {
    transform: scale(1.1);
}

.venue-services .service-icon i {
    font-size: 1.8rem;
    color: white;
}

.venue-services .service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.venue-services .service-card p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.venue-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.venue-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.venue-cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-card {
        height: 300px;
    }
    
    .gallery-card-large {
        grid-column: span 2;
        grid-row: span 2;
        height: 620px;
    }
}

@media (max-width: 1024px) {
    .venues-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-card {
        height: 250px;
    }
    
    .gallery-card-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venue-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-section,
    .venues-modern,
    .services-modern,
    .gallery-modern,
    .team-section,
    .testimonials-section,
    .cta-modern,
    .services-showcase,
    .venue-details,
    .venue-gallery,
    .venue-services,
    .venue-cta {
        padding: 4rem 0;
    }
    
    /* Simplify patterns on mobile for better performance */
    .welcome-section::before,
    .venues-modern::before,
    .services-modern::before,
    .gallery-modern::before,
    .team-section::before,
    .testimonials-section::before,
    .cta-modern::before {
        opacity: 0.4;
        animation-duration: 40s;
    }
    
    /* Hide complex after elements on mobile */
    .services-modern::after,
    .gallery-modern::after,
    .team-section::after,
    .testimonials-section::after {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venues-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .venue-card-modern {
        margin: 0 1rem;
    }
    
    .venue-content {
        padding: 2rem 1.5rem;
    }
    
    .venue-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-modern {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-card-modern h3 {
        font-size: 1.3rem;
    }
    
    .welcome-title {
        font-size: 2.2rem;
    }
    
    .welcome-text p {
        font-size: 1.1rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-image {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .showcase-item h3 {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .gallery-card {
        height: 200px;
    }
    
    .gallery-card-large {
        height: 200px;
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-content h4 {
        font-size: 1.3rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .gallery-icon i {
        font-size: 1.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .details-content h2,
    .venue-gallery .section-header h2,
    .venue-services .section-header h2,
    .venue-cta h2 {
        font-size: 2rem;
    }
    
    .venue-intro {
        font-size: 1.1rem;
    }
    
    .feature-row {
        gap: 1rem;
    }
    
    .feature-row .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-row .feature-icon i {
        font-size: 1.3rem;
    }
    
    .details-image img,
    .gallery-main img {
        height: 300px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .venue-services .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-services .service-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .welcome-section,
    .venues-modern,
    .services-modern,
    .gallery-modern,
    .team-section,
    .testimonials-section,
    .cta-modern,
    .services-showcase {
        padding: 3rem 0;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-modern {
        padding: 3rem 0;
    }
    
    .service-card-modern {
        padding: 2rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card-modern h3 {
        font-size: 1.2rem;
    }
    
    .service-card-modern p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .showcase-image {
        height: 200px;
    }
    
    .showcase-icon {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-card {
        height: 250px;
    }
    
    .gallery-card-large {
        height: 250px;
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
    
    .gallery-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .gallery-icon i {
        font-size: 1rem;
    }
    
    .gallery-btn-view {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .gallery-btn-main {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== FINAL OVERRIDE RULES FOR IMAGE PLACEHOLDERS ===== */
/* Ultra high specificity rules to force dark gray backgrounds */
html body .gallery-card img:not([src]),
html body .gallery-card img[src=""],
html body .gallery-card-large img:not([src]),
html body .gallery-card-large img[src=""],
html body .venue-card img:not([src]),
html body .venue-card img[src=""],
html body img:not([src]),
html body img[src=""],
html body .placeholder-image {
    background: #374151 !important;
    background-color: #374151 !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><rect width="150" height="150" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="25" y="35" width="100" height="80" fill="none" stroke="%23ffffff" stroke-width="3" rx="6"/><circle cx="50" cy="60" r="8"/><path d="M30 100l20-20 15 15 25-25 15 15v15H30z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="75" y="135" text-anchor="middle" font-family="Arial, sans-serif" font-size="9" font-weight="bold" fill="%23ffffff">TROCAR FOTO</text></g></svg>') !important;
    background-size: 50% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 200px !important;
    border: 1px solid #6b7280 !important;
}