/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #ff0040;
    --primary-dark: #cc0033;
    --secondary-color: #1a1a1a;
    --accent-color: #gold;
    --bg-dark: #0a0a0a;
    --bg-light: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #999999;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --glow-primary: 0 0 20px rgba(255, 0, 64, 0.5);
    --glow-secondary: 0 0 30px rgba(255, 0, 64, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-container > * {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 0, 64, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-translate {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

#google_translate_element {
    margin: 0;
}

/* Google Translate Styling */
.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
}

.goog-te-gadget-simple {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
    border: 1px solid rgba(255, 0, 64, 0.6) !important;
    border-radius: 30px !important;
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
                0 0 10px rgba(255, 0, 64, 0.1) !important;
    cursor: pointer !important;
}

.goog-te-gadget-simple:hover {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.2) 0%, rgba(255, 0, 64, 0.1) 100%) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                0 0 25px rgba(255, 0, 64, 0.4) !important;
    transform: translateY(-2px) !important;
}

.goog-te-menu-value {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.goog-te-menu-value span {
    color: #ffffff !important;
}

.goog-te-menu-value span:first-child {
    color: #ffffff !important;
}

.goog-te-gadget-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff0040' viewBox='0 0 24 24'%3E%3Cpath d='M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z'/%3E%3C/svg%3E") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
}

.goog-te-combo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border: 1px solid rgba(255, 0, 64, 0.4) !important;
    border-radius: 15px !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    padding: 5px 10px !important;
    min-width: 120px !important;
}

.goog-te-combo option {
    background: #2a2a2a !important;
    color: #ffffff !important;
    padding: 5px !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Ensure all text is white */
.goog-te-gadget-simple .goog-te-menu-value,
.goog-te-gadget-simple .goog-te-menu-value *,
.goog-te-gadget-simple span,
.goog-te-gadget-simple a {
    color: #ffffff !important;
}

/* Hide Google Translate attribution */
.goog-logo-link {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 0, 64, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-align: center;
}

.title-main {
    display: inline;
    font-size: 4rem;
    font-weight: 700;
    color: #cc0033;
    text-shadow: 0 0 20px rgba(204, 0, 51, 0.5);
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite alternate;
}

/* Mobile override to keep block display */
@media (max-width: 1024px) {
    .title-main {
        display: block;
    }
}

.title-large {
    font-size: 7rem !important;
    white-space: nowrap;
    transform: translateZ(0);
    will-change: transform, opacity;
    animation: heartbeat 2s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    padding: 20px 40px;
    border-radius: 15px;
    border: 2px solid rgba(204, 0, 51, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: inline-block;
    margin: 0 auto;
}

@keyframes heartbeat {
    0% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(204, 0, 51, 0.5);
        border-color: rgba(204, 0, 51, 0.3);
    }
    15% { 
        transform: scale(1.05);
        text-shadow: 0 0 40px rgba(204, 0, 51, 0.8), 0 0 60px rgba(204, 0, 51, 0.4);
        border-color: rgba(204, 0, 51, 0.7);
    }
    30% { 
        transform: scale(1);
        text-shadow: 0 0 25px rgba(204, 0, 51, 0.6);
        border-color: rgba(204, 0, 51, 0.4);
    }
    45% { 
        transform: scale(1.08);
        text-shadow: 0 0 50px rgba(204, 0, 51, 1), 0 0 80px rgba(204, 0, 51, 0.6);
        border-color: rgba(204, 0, 51, 0.9);
    }
    60% { 
        transform: scale(1);
        text-shadow: 0 0 30px rgba(204, 0, 51, 0.7);
        border-color: rgba(204, 0, 51, 0.5);
    }
    100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(204, 0, 51, 0.5);
        border-color: rgba(204, 0, 51, 0.3);
    }
}

.title-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



@keyframes pulse {
    0% { text-shadow: 0 0 20px rgba(204, 0, 51, 0.5); }
    100% { text-shadow: 0 0 30px rgba(204, 0, 51, 0.8), 0 0 40px rgba(204, 0, 51, 0.3); }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary);
    animation: pulse 1s ease-in-out infinite alternate;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9) 0%, rgba(35, 35, 35, 0.95) 100%);
    border: 2px solid rgba(255, 0, 64, 0.3);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(255, 0, 64, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(255, 0, 64, 0.3),
                0 0 80px rgba(255, 0, 64, 0.1);
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.95) 0%, rgba(40, 40, 40, 1) 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 64, 0.3),
                0 0 30px rgba(255, 0, 64, 0.2);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 0, 64, 0.4),
                0 0 50px rgba(255, 0, 64, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 0, 64, 0.4);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.service-card:hover p {
    color: #e0e0e0;
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: var(--bg-dark);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.room-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), var(--glow-primary);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.room-info h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.room-info p {
    color: var(--text-gray);
}

.rooms-features {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Cooperation Section */
.cooperation {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card), var(--glow-primary);
}

.partner-header {
    text-align: center;
    margin-bottom: 30px;
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.partner-card h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.partner-subtitle {
    color: var(--primary-color);
    font-weight: 600;
}

.partner-content {
    margin-bottom: 30px;
}

.partner-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-features {
    margin: 20px 0;
}

.partner-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.partner-features .feature i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.partner-highlight {
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 20px;
}

.partner-action {
    text-align: center;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
}

.partner-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary);
}

/* Ambiente Section */
.ambiente {
    padding: 100px 0;
    background: var(--bg-dark);
}

.ambiente-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.ambiente-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 250px;
}

.ambiente-card.wide {
    grid-column: span 2;
    height: 300px;
}

.ambiente-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), var(--glow-primary);
}

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

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

.ambiente-card:hover .ambiente-image img {
    transform: scale(1.1);
}

.ambiente-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.ambiente-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.ambiente-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.ambiente-features {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ambiente-feature {
    text-align: center;
    padding: 20px;
}

.ambiente-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ambiente-feature h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ambiente-feature p {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
}

.contact-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-cta > p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
}

.privacy-note i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
}

/* Bottom Contact Info */
.bottom-contact-info {
    background: var(--bg-light);
    border-top: 1px solid var(--primary-color);
    padding: 30px 0;
    text-align: center;
}

.bottom-contact-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(20px);
    max-width: 400px;
    margin: 0 auto;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.3);
}

.contact-address,
.contact-city {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-phone {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 0, 64, 0.3);
}

/* Utility Functions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling Enhancement */
section {
    scroll-margin-top: 80px;
}