@import 'color.css';
@import 'button.css';
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap');
@import  'topNavigation.css';
@import  'header.css';
@import  'animation.css';
@import  'hero.css';
@import  'contact.css';
@import  'caroual.css';
@import  'about.css';
@import 'whyPrimier.css';
@import 'table.css';
@import 'model.css';
@import 'map.css';
@import 'footer.css';
@import 'thanks.css';
@import 'offer.css';
@import 'loading.css';

*{
    font-family: 'League Spartan', sans-serif;
    box-sizing: border-box;
}

html,body{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    font-size: 16px;
    font-weight: 300;
    background-color: var(--bg-black);
    color: var(--text-light);
}

::selection{
    background: var(--gold);
    color: #1a1605;
}

::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(var(--gold-soft), var(--gold-deep));
    border-radius: 10px;
}

.spaceInBottomMobile{
    padding-bottom:50px;
    background-color: var(--bg-black);
}
@media screen and (min-width : 700px) {
    .spaceInBottomMobile{
        display: none;
    }
}

section{
    width: 100%;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding:8px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
  -moz-appearance: textfield;
}

.upperCase{
    text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}

textarea{
    font-size: 16px;
    width: 100%;
    resize: none;
    padding: 12px;
    background-color: var(--bg-charcoal-light);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    border-radius: 6px;
}
textarea:focus{
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.heading{
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
}
.horizontal{
    width: 90px;
    height: 3px;
    padding: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: auto;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 15px;
}
.grayColorBackground{
    background-color: var(--gold-deep);
    width: 100px;
    padding: 2px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.heading-container{
    padding-bottom: 20px;
    padding-top: 20px;
}

.giveMissedCall{
    position: fixed;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #1a1605;
    padding: 7px;
    z-index: 50;
}

.hidden{
    display: none;
}

.bold{
    font-family: 700;
}

.desktop{
    display: none;
}
.mobile{
    display: block;
}

@media screen and (min-width : 700px) {
    .desktop{
        display: block;
    }
    .mobile{
        display: none;
    }
}

.enquiryButtonMobile{
    font-weight: 700;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 40;
    display: flex;
    gap: 5px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
}
.enquiryButtonMobile button{
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
    color: #1a1605;
    width : 100%;
    height: 100%;
    padding: 14px 10px;
    border-color: transparent;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    letter-spacing: 0.5px;
}
.enquiryButtonMobile button:active{
    filter: brightness(0.9);
}
@media screen and (min-width :700px) {
    .enquiryButtonMobile{
        display: none;
    }
}

.whatsappBtn{
    position: fixed;
    bottom:60px;
    right: 10px;
    width: 52px;
    height: 52px;
    z-index: 80px;
    border-radius: 999px;
    background-color: #1fb855;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color:white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5), 0 0 0 2px var(--border-gold);
    z-index: 60;
    transition: transform 0.25s ease;
}
.whatsappBtn:hover{
    transform: scale(1.08);
}
.whatsappBtn a{
    color :white;
}

.closeWhatsapp{
    position: absolute;
    font-size: 18px;
    top: -10px;
    right: -10px;
    display: block;
    margin-left: auto;
    width: fit-content;
    color:black;
    cursor: pointer;
}

@media screen and (min-width : 700px) {
    .whatsappBtn{
        bottom:50px;
        right: 50px;
    }
    .closeWhatsapp{
        display: none;
    }
}

.enquiryDesktop{
    position: fixed;
    width: 90px;
    height: 34px;
    z-index: 70;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
    color: #1a1605;
    font-weight: 600;
    top: 20%;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 50px 50px 0px;
    box-shadow: 4px 4px 14px rgba(0,0,0,0.45);
    cursor: pointer;
    transition: width 0.25s ease;
}
.enquiryDesktop:hover{
    width: 100px;
}

.callUsDesktop{
    position: fixed;
    width: 115px;
    height: 34px;
    z-index: 70;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
    color: #1a1605;
    font-weight: 600;
    bottom: 20%;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 50px 50px 0px;
    box-shadow: 4px 4px 14px rgba(0,0,0,0.45);
    cursor: pointer;
    padding: 3px;
    font-size: 15px;
    gap: 5px;
}
.ol{
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.5;
    font-size: 18px;
    color: var(--text-muted);
}
.callUsDesktop.desktop{
    display: none;
}
.callUsDesktop.mobile{
    display: flex;
}
.callUsDesktop a  {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1605;
}
@media screen and (min-width : 700px) {
    .callUsDesktop.desktop{
        display: flex;
    }
    .callUsDesktop.mobile{
        display: none;
    }
}

.mobileCall{
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color:#1a1605;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
@media screen and (min-width : 700px) {
    .mobileCall{
        display: none;
    }
}

.downloadBrochureDesktop{
    display: none;
}
@media screen and (min-width : 700px) {
    .downloadBrochureDesktop{
        position: fixed;
        right: 0;
        top: 40%;
        z-index: 80;
        display: block;
        writing-mode: vertical-rl;
        padding: 12px 6px;
        background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
        color: #1a1605;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: -3px 3px 12px rgba(0,0,0,0.4);
    }
}

.commitementContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 20px;
}
.commitementContainer .commitmentHeading{
    margin-top : 15px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}
.commitementContainer .iconsCommentement{
    display: flex;
    justify-content: space-between;
    gap: 7px;
}
.commitementContainer  .iconsCommentement-list{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 10px;
}

.commitementContainer .icons-model{
    font-size: 24px;
    color:var(--gold);
}
.dataPrivacySection{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}
.whatsappColor{
    color : #075E54;
}
.icons-text-model{
    text-align: center;
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 13px;
}

#thanksPageDownloadSection{
    min-height: calc(100vh - 230px);
}

.downloadBrochureLink{
    font-size: 18px;
    font-weight: 600;
    color : var(--gold);
}

.privacyPolicyLink{
    text-decoration: underline;
    color:var(--bg-footer-text)
}
.privacyPolicyLink:hover{
    color : var(--gold);
}
.privacyPolicyContent{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: var(--text-muted);
}
.privacy-policy-container{
    max-width: 1000px;
    margin:auto;
}