/* Contact Page */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Typography */
h1, h2, h3, h4, h5, h6,
.title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
}

p, span, div, .subtitle, .content {
    font-family: 'Lato', sans-serif !important;
}
.custom-hero-banner {
    position: relative;
    min-height: clamp(300px, 50vh, 500px);
    background-image: url('../images/banners/lollipop-party-packages-contact.avif');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.custom-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-content {
    padding: clamp(16px, 4vw, 32px) clamp(16px, 4vw, 40px);
    max-width: min(90vw, 900px);
    width: 100%;
    text-align: center;
}

.banner-title {
    color: #CCB693;
    font-size: clamp(22px, 4vw, 40px);
    margin: 0 0 clamp(8px, 1.5vh, 20px) 0;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.banner-breadcrumbs {
    color: #ffffff;
    font-size: clamp(12px, 2.5vw, 18px);
    position: relative;
    z-index: 10;
    margin-bottom: clamp(12px, 2vh, 20px);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .custom-hero-banner {
        background-attachment: scroll;
    }

    .banner-content {
        max-width: 95vw;
        padding: clamp(20px, 5vw, 32px) clamp(16px, 4vw, 24px);
    }
}

/* Contact Page */
.contact-container {
    background-color: white;
    min-height: 60vh;
    padding: 3rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Styles */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #CCB693, #889063);
    border-radius: 2px;
}

.contact-intro {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(204, 182, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CCB693, #889063, #E5D7CA);
}

.contact-intro-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-method-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(204, 182, 147, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CCB693, #889063);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CCB693, #889063);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(204, 182, 147, 0.3);
    transition: transform 0.3s ease;
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method-icon i {
    font-size: 2rem;
    color: white;
}

.contact-method-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #46332A;
    margin-bottom: 0.75rem;
}

.contact-method-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* HoneyBook Widget */
.contact-form-section {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(204, 182, 147, 0.2);
    margin-top: 3rem;
}

.contact-form-title {
    text-align: center;
    font-size: 2rem;
    color: #46332A;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #CCB693, #889063);
    border-radius: 2px;
}

.hb-p-63a0cdb173e0be0008510c04-4 {
    margin: 2rem auto;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Social Media */
.contact-social-section {
    background: #faf8f6;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(204, 182, 147, 0.15);
    text-align: center;
}

.contact-social-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-social-title {
    font-size: 2rem;
    color: #46332A;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.contact-social-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #CCB693, #889063);
    border-radius: 2px;
}

.contact-social-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-social-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
}

.contact-social-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.contact-social-image:hover img {
    transform: scale(1.02);
}

/* Social Links */
.contact-social-links {
    margin-top: 2rem;
    text-align: center;
}

.contact-social-links-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(204, 182, 147, 0.1);
    border: 1px solid rgba(204, 182, 147, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #46332A;
    min-width: 120px;
}

.social-link:hover {
    background: rgba(204, 182, 147, 0.2);
    border-color: #CCB693;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 182, 147, 0.3);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #46332A, #5a4336);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #CCB693;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #CCB693;
    color: #46332A;
}

.btn-primary:hover {
    background: #b8a07f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 182, 147, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #CCB693;
    border-color: #CCB693;
}

.btn-secondary:hover {
    background: #CCB693;
    color: #46332A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 182, 147, 0.4);
}

/* Banner Responsive */
@media (max-width: 768px) {
    .custom-hero-banner {
        min-height: clamp(250px, 40vh, 400px);
        background-position: center bottom;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        padding: 2rem 1rem 4rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-intro {
        padding: 2rem 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .custom-hero-banner {
        min-height: clamp(200px, 35vh, 300px);
        background-position: center bottom;
    }

    .contact-container {
        padding: 1.5rem 1rem 3rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        padding: 1.5rem 1rem;
    }
    
    .contact-method-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-method-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-method-icon i {
        font-size: 1.5rem;
    }

    .contact-social-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .contact-social-title {
        font-size: 1.8rem;
    }

    .contact-social-text {
        font-size: 1rem;
    }

    .contact-social-icons {
        gap: 1.5rem;
    }

    .social-link {
        min-width: 100px;
        padding: 0.8rem;
    }

    .social-link span {
        font-size: 0.8rem;
    }
}