/* Premium Contact Section */
.contact-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.contact-left {
    padding: 20px 0;
}

.contact-badge {
    display: inline-block;
    background: rgba(253, 185, 51, 0.1);
    color: #FDB933;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(253, 185, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 5px 0;
}

.card-content a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #FDB933;
}

/* Contact CTA Buttons */
.contact-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-reserve {
    background: linear-gradient(135deg, #FDB933, #FFD700);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(253, 185, 51, 0.3);
    display: inline-block;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(253, 185, 51, 0.4);
}

.btn-directions {
    background: transparent;
    color: #2c3e50;
    padding: 15px 35px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-directions:hover {
    background: white;
    border-color: #FDB933;
    color: #FDB933;
    transform: translateY(-3px);
}

/* Map Section */
.contact-right {
    position: relative;
    height: 600px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Premium Footer */
.footer-premium {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D8 100%);
    color: #2c3e50;
    position: relative;
    border-top: 3px solid #FDB933;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.footer-top {
    padding: 100px 0 80px;
    border-bottom: 1px solid rgba(253, 185, 51, 0.2);
    width: 100%;
    box-sizing: border-box;
}

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

/* Centered Logo Section */
.footer-logo-section {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 40px;
}

.footer-logo-section .footer-logo {
    margin-bottom: 20px;
}

.footer-logo-section .footer-logo img {
    height: 80px;
    width: auto;
}

.footer-logo-section .brand-tagline {
    font-size: 1.3rem;
    color: #FDB933;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-logo-section .brand-description {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Links Grid Below Logo */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(253, 185, 51, 0.15);
}

/* Social Icons in Logo Section */
.footer-logo-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #FDB933;
    margin-bottom: 15px;
    font-weight: 500;
}

.brand-description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #FDB933;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(253, 185, 51, 0.2);
}

.social-link:hover {
    background: #FDB933;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 185, 51, 0.4);
}

.social-link svg {
    fill: #2c3e50;
}

.social-link:hover svg {
    fill: white;
}

/* Footer Columns */
.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 18px;
}

.footer-column ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

/* Newsletter */
.newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.newsletter p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    background: white;
    border: 2px solid #FDB933;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 185, 51, 0.1);
}

.newsletter-form .form-group:focus-within {
    border-color: #FF6B35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #adb5bd;
}

.newsletter-form button {
    background: linear-gradient(135deg, #FDB933, #FFD700);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #FF6B35, #FDB933);
}

.newsletter-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #adb5bd;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #FDB933 0%, #FFD700 100%);
    padding: 35px 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.copyright {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

.separator {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-right {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-cards {
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        flex-direction: column;
    }

    .btn-reserve,
    .btn-directions {
        width: 100%;
        text-align: center;
    }
}