/* =====================================
   GLOBAL TYPOGRAPHY
===================================== */

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

p {
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    p {
        font-size: 14px;
    }
}

/* =====================================
   HERO SECTION
===================================== */

#ishaContactHeroSection{
    background-image: url('../images/contact/elegant-sterling.png');
    background-size: cover;
    background-position: center;
}

#ishaContactHeroSection {
    min-height: 60vh;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
}

.ishaHeroTitle {
    font-size: 3rem;
}

.ishaHeroSubtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: auto;
}

@media (max-width: 992px) {
    .ishaHeroTitle {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .ishaHeroTitle {
        font-size: 1.8rem;
    }

    .ishaHeroSubtitle {
        font-size: 0.95rem;
    }
}

/* =====================================
   CONTACT FORM SECTION
===================================== */

.aurumContactFormColumn,
.aurumContactInfoColumn {
    background: #fff;
}

.aurumContactHeading {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.aurumContactSubheading {
    margin-bottom: 30px;
}

.aurumFormRow {
    display: flex;
    gap: 20px;
}

.aurumInputGroup {
    margin-bottom: 20px;
    width: 100%;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: none;
}

.aurumSubmitBtn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #B76E79;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.aurumSubmitBtn:hover {
    background: #a75f6b;
}

/* Mobile stacking */
@media (max-width: 576px) {
    .aurumFormRow {
        flex-direction: column;
        gap: 0;
    }
}


/* =====================================
   CONTACT INFO CARDS
===================================== */

.aurumInfoCard {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
}

.aurumHighlight {
    color: #B76E79;
    font-weight: 500;
}

/* =====================================
   SOCIAL SECTION
===================================== */

.aurumSocialCard {
    margin-top: 40px;
    text-align: center;
}

.aurumSocialIcons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.aurumSocialIcons img {
    width: 24px;
    height: 24px;
}

@media (max-width: 576px) {
    .aurumSocialIcons img {
        width: 20px;
        height: 20px;
    }
}


/* =====================================
   PRIVATE APPOINTMENT SECTION
===================================== */

#veloraPrivateAppointmentSection {
    margin-top: 80px;
}

.veloraPrivateImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.veloraPrivateContentColumn {
    padding: 60px;
}

.veloraPrivateHeading {
    font-size: 2rem;
    margin-bottom: 20px;
}

.veloraPrivateDescription {
    margin-bottom: 30px;
}

.veloraPrivateCTA {
    background: #B76E79;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .veloraPrivateContentColumn {
        padding: 40px 20px;
    }

    .veloraPrivateImage {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .veloraPrivateHeading {
        font-size: 1.6rem;
    }
}

/* =====================================
   FAQ SECTION
===================================== */

#lumoraFaqSection {
    margin-top: 80px;
}

.lumoraFaqHeading {
    font-size: 2rem;
}

.accordion-button {
    font-size: 15px;
}

.accordion-body {
    font-size: 14px;
}

/* =====================================
   TRUST BAR
===================================== */

#ishaTrustBarSection {
    padding: 40px 0;
}

.ishaTrustBarContainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.ishaTrustItem {
    flex: 1 1 18%;
}

@media (max-width: 992px) {
    .ishaTrustItem {
        flex: 1 1 30%;
    }
}

@media (max-width: 576px) {
    .ishaTrustBarContainer {
        flex-direction: column;
    }

    .ishaTrustItem {
        flex: 1 1 100%;
    }
}
