/* ==========================================================================
   ZONE 5: CONTACT CONSULTATION - FULL WIDTH (BRAND COLORS ONLY)
   Color Palette: #FAB693, #F89F90, #E17864, #6A7C4F, #FAB863, #DBEB94
   ========================================================================== */

.premium-contact-section {
    padding: 40px 0 30px 0;
    background: #fff8f0;
    position: relative;
    z-index: 5;
}

.premium-contact-container {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}

/* Base Card Styles */
.contact-card {
    background: #fff8f0;
    border-radius: 0;
    box-shadow: none;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    border: none;
    transition: none;
}

.contact-card:hover {
    transform: none;
    box-shadow: none;
}

/* Left Card - Full remaining width */
.contact-main-card {
    flex: 1;
    min-width: 0;
    text-align: center;
    border-radius: 24px 0 0 24px;
    border: 1px solid rgba(250, 184, 99, 0.15);
    border-right: none;
}

.contact-main-title {
    margin-bottom: 25px;
}

.contact-sub-heading {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-main-heading {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #FAB863, #E17864);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
    padding-bottom: 10px; /* Prevent clipping bottom of text */
    position: relative;
}

.contact-main-heading::after {
    content: '';
    position: absolute;
    bottom: 25px;
    right: -25px;
    width: 12px;
    height: 12px;
    background: #6A7C4F;
    border-radius: 50%;
    box-shadow: 18px 0 0 0 #DBEB94;
}

.contact-desc {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Action Buttons */
.contact-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.action-btn-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 320px;
    justify-content: center;
}

.action-btn-premium i {
    font-size: 2.5rem;
}

.action-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.action-btn-text .label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.action-btn-text .value {
    font-size: 1.6rem;
    font-weight: 800;
}

/* Line Button - Brand Orange instead of green */
.btn-premium-line {
    background: linear-gradient(135deg, #FAB863, #FAB693);
    color: #fff;
    box-shadow: 0 10px 25px rgba(250, 184, 99, 0.3);
}

.btn-premium-line:hover {
    background: linear-gradient(135deg, #DBEB94, #6A7C4F); /* Green LINE brand feel */
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(106, 124, 79, 0.4);
    color: #202020;
}

/* Phone Button - Brand Coral */
.btn-premium-phone {
    background: #ffffff;
    color: #E17864;
    border: 2px solid #E17864;
    box-shadow: 0 10px 25px rgba(225, 120, 100, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium-phone:hover {
    background: linear-gradient(135deg, #E17864, #FAB863);
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(225, 120, 100, 0.3);
}

/* Footer Info Row */
.contact-footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(250, 184, 99, 0.15);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 35px;
}

.info-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.info-item-premium i {
    font-size: 1.6rem;
    color: #FAB863;
}

.info-item-premium .text strong {
    display: block;
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.info-item-premium .text span {
    font-size: 0.95rem;
    color: #777;
}

.premium-badge-btn {
    background: linear-gradient(135deg, #FAB863, #E17864);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(225, 120, 100, 0.3);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 120, 100, 0.4);
}

/* Right Card (QR) - White bg, brand colors */
.contact-qr-card {
    width: 380px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 0 24px 24px 0;
    border: 1px solid rgba(250, 184, 99, 0.15);
    border-left: 1px solid rgba(250, 184, 99, 0.1);
}

.qr-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.qr-image-wrapper {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    border: 2px dashed #FAB863;
    margin-bottom: 25px;
    width: 220px;
    height: 220px;
}

.qr-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    filter: hue-rotate(260deg) saturate(1.3);
}

.btn-scan-me {
    background: #ffffff;
    color: #E17864;
    border: 2px solid #E17864;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-scan-me:hover {
    background: linear-gradient(135deg, #FAB863, #E17864);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(225, 120, 100, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .premium-contact-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .contact-main-card {
        border-radius: 24px 24px 0 0;
        border-right: 1px solid rgba(250, 184, 99, 0.15);
        border-bottom: none;
    }
    
    .contact-qr-card {
        width: 100%;
        border-radius: 0 0 24px 24px;
        border-left: 1px solid rgba(250, 184, 99, 0.15);
        border-top: 1px solid rgba(250, 184, 99, 0.1);
        padding: 40px 30px;
    }
    
    .contact-footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-item-premium {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .premium-contact-section {
        padding: 40px 0 20px 0;
    }
    .premium-contact-container {
        padding: 0 10px;
    }
    .contact-card {
        padding: 30px 15px;
    }
    .contact-main-title {
        margin-bottom: 15px;
    }
    .contact-main-heading {
        font-size: 1.6rem;
    }
    .contact-sub-heading {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .contact-desc {
        font-size: 1.05rem !important;
        margin-bottom: 25px !important;
        margin-top: 10px !important;
        line-height: 1.5;
    }
    .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    .action-btn-premium {
        width: 100%;
        max-width: 300px;
        min-width: unset;
        padding: 12px 20px;
        border-radius: 12px;
    }
    .action-btn-premium i {
        font-size: 1.6rem;
    }
    .action-btn-text .label {
        font-size: 0.85rem;
    }
    .action-btn-text .value {
        font-size: 1.15rem;
    }
    .contact-footer-info {
        gap: 15px;
        padding-top: 20px;
    }
    .info-item-premium {
        gap: 5px;
    }
    .info-item-premium i {
        font-size: 1.4rem;
    }
    .info-item-premium .text strong {
        font-size: 1rem;
    }
    .info-item-premium .text span {
        font-size: 0.85rem;
    }
    .premium-badge-btn {
        margin-top: 5px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
