﻿
:root {
    --primary: #5D1143;
    --deep-purple: #902167;
    --soft-pink: #D190B9;
    --cream: #EEE2DA;
    --soft-blue: #8DA5B5;
    --dark: #1F3747;
    --gray: #6F6F70;
    --white: #ffffff;
    --card-glass: rgba(255, 255, 255, 0.92);
}

body {
    background: #ffffff;
    font-family: 'Fraunces', serif;
    color: var(--dark);
}

.hero-section {
    min-height: 80vh;
    background: linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.90)), url('../../assets/images/Noor/breadcum-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    color: var(--primary);
    font-weight: 700;
}

.breadcrumb-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.breadcrumb-menu a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb-menu .active {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact-wrapper {
    padding: 3rem 0 7rem;
    background: linear-gradient(to bottom, #ffffff, #fdf9f7);
}

.contact-card {
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 2rem 3rem;
    box-shadow: 0 25px 70px rgba(93,17,67,0.12);
    border: 1px solid rgba(93,17,67,0.08);
    /*        height: 100%;*/
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--soft-pink));
        border-radius: 4px;
    }

.contact-detail h5 {
    font-size: 18px;
    color: var(--deep-purple);
    margin: 0.8rem 0 0.6rem;
    font-weight: 600;
}

.contact-detail p,
.contact-detail a {
    color: var(--dark);
    line-height: 1.8;
    font-size: 12px;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .contact-detail a:hover {
        color: var(--deep-purple);
    }

.office-list {
    font-size: 12px;
}

.office-item {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
    position: relative;
}

    .office-item::before {
        content: "●";
        color: var(--soft-pink);
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }

/* Form Side */
.form-card {
    background: white;
    border-radius: 28px;
    padding: 2.9rem;
    box-shadow: 0 20px 60px rgba(93,17,67,0.1);
    border: 1px solid rgba(93,17,67,0.08);
}

.form-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

.form-control {
    border: 2px solid rgba(93,17,67,0.15);
    border-radius: 16px;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 5px rgba(93,17,67,0.15);
        outline: none;
    }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235D1143' d='M1 0L6 7L11 0'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--deep-purple));
    color: white;
    padding: 0.8rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 12px 35px rgba(93, 17, 67, 0.3);
    transition: all 0.4s;
}

    .btn-submit:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(93,17,67,0.4);
    }

@media (max-width: 992px) {
    .contact-card, .form-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }

    .page-title {
        font-size: 2.8rem;
    }
}
/* Map Card – Clean & Elegant */
.map-card {
    padding: 0.5rem;
    border-radius: 28px;
    overflow: hidden;
}

    .map-card iframe {
        width: 100%;
        height: 200px;
        border: 0;
        border-radius: 20px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    }

@media (max-width: 992px) {
    .contact-card, .form-card, .map-card {
        border-radius: 24px;
    }

        .map-card iframe {
            height: 300px;
        }
    body {
        padding-top: 95px;
    }
}

.validation-error {
    color: #dc3545;
    font-size: 0.65rem;
    margin-top: 0.5rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

    .validation-error i {
        font-size: 0.65rem;
    }

.form-group {
    position: relative;
}

.form-control.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

    .form-control.error:focus {
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
    }

.form-control.valid {
    border-color: #28a745 !important;
    background-color: #f0fff4 !important;
}

.input-group-text.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: all;
}

.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid #28a745;
}

    .custom-toast.show {
        transform: translateX(0);
    }

.toast-content {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5D1143, #902167);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-close {
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
    flex-shrink: 0;
}

    .toast-close:hover {
        color: #333;
    }

.phone-input-wrapper {
    position: relative;
    width: 100%;
}