/* =========================================
   ENHANCED CONTACT PAGE STYLES
   ========================================= */

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}
.contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Layout */
.contact-layout-enhanced {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form is wider */
    gap: 50px;
    margin-bottom: 80px;
}

/* Form Section */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 25px; font-family: 'Syne', sans-serif; }

.input-row { display: flex; gap: 20px; }
.input-row .form-group { flex: 1; }

/* Info Section (Right) */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Direct Connect Buttons */
.direct-connect-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.direct-connect-box h3 { font-size: 1.2rem; margin-bottom: 10px; }
.direct-connect-box p { color: #666; font-size: 0.9rem; margin-bottom: 20px; }

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}
.social-btn:hover { transform: translateY(-3px); }

.social-btn.whatsapp {
    background: #25D366;
    color: #fff;
}
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    color: #fff;
}
.social-btn i { font-size: 1.2rem; }

/* Store Details */
.store-details-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.store-details-box h3 { margin-bottom: 20px; }

.info-list { list-style: none; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #444;
    font-size: 0.95rem;
}
.info-list li i {
    color: #000;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* FAQ Section */
.faq-section { margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p { padding-bottom: 20px; color: #666; line-height: 1.6; }

/* Map */
.map-embed {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-layout-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .input-row { flex-direction: column; gap: 0; }
}
/* =========================================
   PREMIUM CONTACT STYLES
   ========================================= */

/* Floating Inputs (reused from Login, ensuring styling here) */
.floating-group input, .floating-group textarea {
    width: 100%;
    padding: 15px 15px 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}
.floating-group textarea { resize: vertical; }

.floating-group label {
    position: absolute; top: 15px; left: 0;
    color: #999; pointer-events: none; transition: 0.3s;
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label {
    top: -10px; font-size: 0.75rem; color: #000; font-weight: 600;
}

.styled-select {
    width: 100%; padding: 12px 0;
    border: none; border-bottom: 1px solid #ddd;
    outline: none; background: #fff; font-size: 1rem;
}

/* LIVE STATUS INDICATOR */
.status-indicator {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
    background: #e8f5e9; color: #2e7d32;
    padding: 8px 15px; border-radius: 20px;
    width: fit-content; font-size: 0.85rem;
}

.dot {
    width: 10px; height: 10px;
    background-color: #4caf50;
    border-radius: 50%;
    display: inline-block;
}

/* Pulsing Animation */
.pulse {
    box-shadow: 0 0 0 rgba(76, 175, 80, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Social Buttons */
.social-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 15px; margin-bottom: 15px;
    border-radius: 6px; font-weight: 600; text-decoration: none;
    transition: transform 0.2s; color: #fff;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.whatsapp { background: #25D366; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-layout-enhanced { grid-template-columns: 1fr; gap: 40px; }
}
/* =========================================
   ENHANCED MESSAGE BOX STYLES
   ========================================= */

/* 1. The Box Container */
.premium-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08); /* Subtle border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft, luxurious shadow */
    transition: transform 0.3s ease;
}
.premium-box:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* 2. Header Design */
.form-header-box {
    margin-bottom: 30px;
}
.form-header-box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.underline-accent {
    width: 40px;
    height: 3px;
    background: #000;
    margin-bottom: 15px;
}
.form-header-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* 3. Inputs with Icons */
.with-icon {
    position: relative;
}

/* Adjust input padding to make room for icon */
.floating-group.with-icon input,
.floating-group.with-icon textarea {
    padding-right: 35px; /* Space for icon */
}

/* The Icon Style */
.input-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    color: #ccc;
    font-size: 1rem;
    transition: color 0.3s;
}

/* Textarea icon position */
.textarea-icon {
    top: 20px;
}

/* Active State Colors */
.floating-group input:focus ~ .input-icon,
.floating-group textarea:focus ~ .input-icon {
    color: #000; /* Icon turns black when typing */
}

/* 4. Styled Select Box */
.select-wrapper {
    position: relative;
}
.styled-select {
    width: 100%;
    padding: 15px 15px 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    color: #333;
    cursor: pointer;
    appearance: none; /* Remove default arrow */
}
.input-icon-select {
    position: absolute;
    right: 30px;
    top: 15px;
    color: #ccc;
}
.select-arrow {
    position: absolute;
    right: 10px;
    top: 18px;
    font-size: 0.8rem;
    color: #333;
    pointer-events: none;
}

/* 5. The Enhanced Button */
.btn-whatsapp-action {
    width: 100%;
    background: #000; /* Start Black */
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-whatsapp-action i {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

/* Hover Effect: Turns WhatsApp Green */
.btn-whatsapp-action:hover {
    background: #25D366; /* WhatsApp Color */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); /* Green Glow */
}

.btn-whatsapp-action:hover i {
    transform: scale(1.2); /* Icon pops */
}
/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

body { background: #f9f9f9; color: #111; font-family: 'Poppins', sans-serif; }

/* HEADER FIX */
#main-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid #eee; }
.back-link { text-decoration: none; color: #000; font-weight: 600; font-size: 0.85rem; }

/* PAGE LAYOUT */
.page-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }

.contact-header { text-align: center; margin-bottom: 50px; }
.page-heading { font-family: 'Syne'; font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.contact-header p { color: #666; font-size: 1rem; }

/* GRID SYSTEM */
.contact-layout-enhanced {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Form wider than info */
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

/* FORM STYLING */
.premium-box {
    background: #fff; padding: 40px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-header-box h3 { font-family: 'Syne'; font-size: 1.5rem; margin-bottom: 10px; }
.underline-accent { width: 50px; height: 3px; background: #000; margin-bottom: 15px; }
.form-header-box p { color: #666; font-size: 0.9rem; margin-bottom: 30px; }

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

.form-group { position: relative; margin-bottom: 20px; }
.form-group input, .form-group textarea, .styled-select {
    width: 100%; padding: 15px 15px 15px 45px; /* Space for icon */
    border: 1px solid #eee; border-radius: 8px;
    font-family: 'Poppins'; font-size: 0.95rem; background: #fcfcfc;
    transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .styled-select:focus {
    border-color: #000; background: #fff; outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Icons inside inputs */
.input-icon, .input-icon-select {
    position: absolute; left: 15px; top: 18px; color: #aaa; pointer-events: none;
}
.textarea-icon { top: 18px; }
.select-arrow {
    position: absolute; right: 15px; top: 18px; color: #aaa; pointer-events: none;
}

/* Button */
.btn-whatsapp-action {
    width: 100%; background: #25D366; color: #fff; border: none;
    padding: 16px; border-radius: 8px; font-weight: 700; font-size: 1rem;
    cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: 0.3s;
}
.btn-whatsapp-action:hover { background: #1ebc57; transform: translateY(-2px); }

/* SIDEBAR INFO */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 25px; }

.direct-connect-box {
    background: #000; color: #fff; padding: 30px; border-radius: 12px;
}
.status-indicator { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; background: #2ecc71; border-radius: 50%; }
.dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); } }

.social-buttons { display: flex; gap: 10px; margin-top: 15px; }
.social-btn {
    flex: 1; padding: 10px; border-radius: 6px; text-decoration: none;
    font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s;
}
.social-btn.whatsapp { background: #25D366; color: #fff; }
.social-btn.instagram { background: #fff; color: #000; }
.social-btn:hover { opacity: 0.9; }

/* Store Details */
.store-details-box { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #eee; }
.info-list { list-style: none; padding: 0; margin-top: 15px; }
.info-list li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.info-list i { color: #000; font-size: 1.2rem; margin-top: 3px; }
.info-list strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.info-list p { margin: 0; font-size: 0.85rem; color: #666; }

/* FAQ Mini */
.faq-mini-section h3 { margin-bottom: 15px; font-size: 1.1rem; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 15px 0;
    font-weight: 600; font-size: 0.9rem; display: flex; justify-content: space-between; cursor: pointer;
}
.faq-answer { display: none; padding-bottom: 15px; font-size: 0.85rem; color: #666; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active i { transform: rotate(45deg); }

/* MAP */
.map-section { margin-top: 40px; }
.map-embed-wrapper {
    border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FOOTER */
#main-footer { background: #111; color: #fff; padding: 60px 0 20px; margin-top: 80px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-links-group { display: flex; gap: 60px; }
.col ul { list-style: none; padding: 0; }
.col a { color: #aaa; text-decoration: none; line-height: 2; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; text-align: center; color: #666; font-size: 0.8rem; }

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .contact-layout-enhanced { grid-template-columns: 1fr; gap: 30px; }
    .input-row { grid-template-columns: 1fr; }
    .page-heading { font-size: 2rem; }
    
    .contact-form-wrapper { padding: 25px; }
    .footer-top, .footer-links-group { flex-direction: column; gap: 30px; }
}