/* Contact Hero */
.page-hero-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Quick Contact */
.quick-contact {
    padding: 3rem 0;
    background: white;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    transform: translateY(-5px);
}

.quick-contact-item i {
    font-size: 2rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.quick-contact-item:hover i {
    color: white;
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.contact-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.text-small {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.btn-secondary-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-secondary-small:hover {
    background: #d4af37;
    color: white;
}

.hours-list-detailed {
    list-style: none;
    padding: 0;
}

.hours-list-detailed li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-list-detailed li.closed {
    color: #999;
}

/* Map Section */
.map-section {
    position: relative;
    height: 400px;
    background: #e0e0e0;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

/* Transportation Section */
.transportation-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.transportation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transport-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.transport-card:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    transform: translateY(-5px);
}

.transport-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.transport-card:hover i {
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: #d4af37;
    font-size: 1.5rem;
}

/* Social Section */
.social-section {
    padding: 5rem 0;
    background: white;
}

.social-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    transform: translateY(-5px);
}

.social-link i {
    font-size: 2.5rem;
}

/* Compact Hero with Wave Animation */
.contact-hero-compact {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-wave-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-path {
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        d: path("M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,197.3C960,203,1056,181,1152,154.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }
    50% {
        d: path("M0,160L48,144C96,128,192,96,288,90.7C384,85,480,107,576,128C672,149,768,171,864,165.3C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }
}

.hero-content-compact {
    position: relative;
    text-align: center;
    color: white;
}

.hero-label-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content-compact h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-compact p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

/* Hide old hero */
.page-hero.contact-hero {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transportation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero */
    .contact-hero-compact {
        padding: 6rem 0 3rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-compact p {
        font-size: 1.1rem;
    }
    
    .hero-label-small {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Quick contact */
    .quick-contact {
        padding: 2rem 0;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-contact-item {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .quick-contact-item i {
        font-size: 1.75rem;
    }
    
    .quick-contact-item span {
        font-size: 0.85rem;
    }
    
    /* Contact section */
    .contact-section {
        padding: 3rem 0;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .contact-info-main h2 {
        font-size: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-card-large {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-card-large h3 {
        font-size: 1.3rem;
    }
    
    .contact-card-large p {
        font-size: 0.95rem;
    }
    
    .text-small {
        font-size: 0.85rem;
    }
    
    .hours-list-detailed li {
        padding: 0.65rem 0;
        font-size: 0.9rem;
    }
    
    /* Map */
    .map-section {
        height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3.5rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.1rem;
    }
    
    /* Transportation */
    .transportation-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .transportation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .transport-card {
        padding: 1.75rem 1.5rem;
    }
    
    .transport-card i {
        font-size: 2.5rem;
    }
    
    .transport-card h3 {
        font-size: 1.2rem;
    }
    
    .transport-card p {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.75rem 1.5rem;
    }
    
    .faq-question i {
        font-size: 1.3rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* Social */
    .social-section {
        padding: 3rem 0;
    }
    
    .social-content h2 {
        font-size: 2rem;
    }
    
    .social-content p {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-link {
        padding: 1.25rem;
        min-width: 200px;
    }
    
    .social-link i {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-compact {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2rem;
    }
    
    .hero-content-compact p {
        font-size: 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-item {
        padding: 1.25rem 1rem;
    }
    
    .quick-contact-item i {
        font-size: 1.6rem;
    }
    
    .contact-info-main h2 {
        font-size: 1.7rem;
    }
    
    .contact-card-large {
        padding: 1.75rem 1.25rem;
    }
    
    .card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .contact-card-large h3 {
        font-size: 1.2rem;
    }
    
    .map-section {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .transport-card {
        padding: 1.5rem 1.25rem;
    }
    
    .transport-card i {
        font-size: 2.25rem;
    }
    
    .transport-card h3 {
        font-size: 1.1rem;
    }
    
    .faq-item {
        padding: 1.5rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .social-content h2 {
        font-size: 1.7rem;
    }
    
    .social-link {
        min-width: 100%;
    }
}
