.contact-hero {
    position: relative;
    height: 85vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    
}

.contact-hero.with-margin {
    margin-top: 80px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 60px 20px;
    width: 100%;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.contact-hero > .contact-hero-content > p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f5e6d3;
}

.hero-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hero-contact-item {
    background: rgba(61, 48, 32, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-contact-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(61, 48, 32, 0.5);
}

.hero-contact-item i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    /* animation: float 3s ease-in-out infinite; */
    color: #d4a855;
}

.hero-contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-contact-item p {
    font-size: 1.05rem;
    margin: 8px 0;
    color: #ccc;
    text-shadow: none;
    line-height: 1.6;
}

.hero-hours {
    color: #d4a855 !important;
    font-weight: 600;
}

.hero-contact-item a {
    color: #d4a855;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-contact-item a:hover {
    color: #f5e6d3;
}

.hero-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #d4a855 !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a 0%, #3d3020 50%, #5a4a2a 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: #d4a855;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: #8b7355;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape3 {
    width: 350px;
    height: 350px;
    background: #5a4a2a;
    top: 60%;
    left: 50%;
    animation-delay: 10s;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #2a1f10 0%, #3d3020 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(212, 168, 85, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #d4a855;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: #f5e6d3;
    transform: rotate(90deg);
}

.modal-content h2 {
    color: #d4a855;
    margin-bottom: 30px;
    font-size: 32px;
    text-align: center;
    letter-spacing: 2px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #d4a855;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-button {
    background: linear-gradient(135deg, #d4a855, #f5e6d3);
    color: #2a1f10;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #f5e6d3, #d4a855);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 85, 0.4);
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(61, 48, 32, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(61, 48, 32, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #d4a855;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 10002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4a855;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .contact-hero.with-margin {
        margin-top: 70px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero > .contact-hero-content > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .hero-contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-contact-item {
        padding: 30px 25px;
    }
    
    .hero-icon {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
