/* ================================================
   CONTACT PAGE - Laura's Beauty Touch
   Clean, Modern, High-Performance Design
   ================================================ */

/* ================================================
   BASE & PERFORMANCE
   ================================================ */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

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

/* ================================================
   HERO SECTION
   ================================================ */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--forest-green, #3B4A2F) 0%, 
        #4a5d3c 50%,
        var(--mint-green, #A9C89C) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    background: rgba(250, 250, 247, 0.95);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--ivory-white, #FAFAF7);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: var(--ivory-white, #FAFAF7);
    opacity: 0.95;
}

/* ================================================
   QUICK CONTACT CARDS
   ================================================ */
.quick-contact {
    padding: 80px 20px;
    background: var(--ivory-white, #FAFAF7);
}

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

.contact-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card.featured {
    background: linear-gradient(135deg, var(--forest-green, #3B4A2F), #4a5d3c);
}

.contact-card.featured h3,
.contact-card.featured p {
    color: var(--ivory-white, #FAFAF7);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-green, #A9C89C), var(--forest-green, #3B4A2F));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--ivory-white, #FAFAF7);
}

.contact-card.featured .card-icon {
    background: rgba(250, 250, 247, 0.2);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    margin-bottom: 15px;
}

.contact-card p {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: var(--charcoal, #1C1C1C);
    margin-bottom: 10px;
    line-height: 1.6;
}

.phone-big {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    margin: 15px 0 !important;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    background: transparent;
    border: 2px solid var(--mint-green, #A9C89C);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: var(--mint-green, #A9C89C);
    color: var(--ivory-white, #FAFAF7);
    transform: translateX(5px);
}

.contact-card.featured .card-btn {
    border-color: var(--ivory-white, #FAFAF7);
    color: var(--ivory-white, #FAFAF7);
}

.contact-card.featured .card-btn:hover {
    background: var(--ivory-white, #FAFAF7);
    color: var(--forest-green, #3B4A2F);
}

/* ================================================
   MAP SECTION
   ================================================ */
.map-section {
    padding: 80px 20px;
    background: #ffffff;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    margin-bottom: 15px;
}

.map-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: var(--charcoal, #1C1C1C);
    opacity: 0.8;
}

.map-embed {
    max-width: 1400px;
    margin: 0 auto 40px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    display: block;
    width: 100%;
}

.map-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--forest-green, #3B4A2F);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--mint-green, #A9C89C);
}

/* ================================================
   BOOK NOW BANNER
   ================================================ */
.book-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--forest-green, #3B4A2F), #4a5d3c);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 250, 247, 0.15);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--ivory-white, #FAFAF7);
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ivory-white, #FAFAF7);
    margin-bottom: 12px;
}

.banner-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: var(--ivory-white, #FAFAF7);
    opacity: 0.95;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    background: var(--ivory-white, #FAFAF7);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
    background: var(--mint-green, #A9C89C);
    color: var(--ivory-white, #FAFAF7);
    transform: scale(1.05);
}

/* ================================================
   FORM SECTION
   ================================================ */
.form-section {
    padding: 80px 20px;
    background: var(--ivory-white, #FAFAF7);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mint-green, #A9C89C);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    margin-bottom: 15px;
}

.form-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--charcoal, #1C1C1C);
    opacity: 0.8;
}

.form-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ================================================
   INSTAGRAM SECTION
   ================================================ */
.instagram-section {
    padding: 80px 20px;
    background: #ffffff;
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.insta-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E1306C, #F56040, #FCAF45);
    border-radius: 50%;
    font-size: 2rem;
    color: #ffffff;
}

.instagram-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    margin-bottom: 15px;
}

.instagram-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--charcoal, #1C1C1C);
    opacity: 0.8;
}

.instagram-feed {
    margin: 50px 0;
}

.instagram-cta {
    text-align: center;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #E1306C, #F56040);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.4);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: 80px 20px;
    background: var(--ivory-white, #FAFAF7);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mint-green, #A9C89C);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    margin-bottom: 15px;
}

.faq-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--charcoal, #1C1C1C);
    opacity: 0.8;
}

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

.faq-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-green, #A9C89C), var(--forest-green, #3B4A2F));
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--ivory-white, #FAFAF7);
    margin-bottom: 25px;
}

.faq-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green, #3B4A2F);
    margin-bottom: 15px;
}

.faq-box p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--charcoal, #1C1C1C);
    opacity: 0.85;
    line-height: 1.7;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .quick-contact {
        padding: 60px 20px;
    }
    
    .contact-card {
        padding: 35px 25px;
    }
    
    .map-section,
    .form-section,
    .instagram-section,
    .faq-section {
        padding: 60px 20px;
    }
    
    .map-header h2,
    .form-header h2,
    .instagram-header h2,
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .form-box {
        padding: 35px 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
    }
    
    .phone-big {
        font-size: 1.4rem !important;
    }
}
