@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body{
    font-family: "Red Hat Display", sans-serif;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
img{
    width: 100%;
    object-fit: contain;    
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}

/* Scrolled header styles */
.header.scrolled {
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);    
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.menu-list li a {
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: #393939;
}

.menu-list li a:hover {
    color: #D6A100;
}

.menu-list li a:hover::after {
    width: 100%;
}

.store-location {
    flex-shrink: 0;
}

.location-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #393939;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.location-link:hover {
    color: #D6A100;
}

.location-text {
    white-space: nowrap;
}

/* Hero Section */
.section-1 h2{
    font-weight: 300;
    margin-top: 30px;
}
.hero-section {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.showroom-img video{
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.16);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    line-height: 50px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 26px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-link{
    display: flex;
    gap: 20px;
}
.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #D6A100;
    color: #fff;
    border-color: #D6A100;
}

.btn-primary:hover {
    background: #B8900E;
    border-color: #B8900E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(214, 161, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
h2{
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}
.mb-50{
    margin-bottom: 50px;
}
p{
    font-size: 16px;
    line-height: 26px;
    color: #393939;
    margin-bottom: 16px;
}
p.mb-0{
    margin-bottom: 0px;
}
h2, h3, h4, h5, h6{
    color: #1C1C1C;
}
.container-lp{
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center{
    text-align: center;
}
.py-45{
    padding: 45px 0px;
}
.py-80{
    padding: 80px 0px;
}
.d-flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.flex-wrap{
    flex-wrap: wrap;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-end{
    justify-content: flex-end;
}
.justify-content-start{
    justify-content: flex-start;
}
.align-items-start{
    align-items: flex-start;
}
.align-items-end{
    align-items: flex-end;
}
.flex-direction-column{
    flex-direction: column;
}
.golden-text{
    color: #D6A100;
}

.history-content{
    padding-right: 110px;
}

/* Slider Header with Navigation */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.slider-title {
    margin: 0;
    flex: 1;
}

.slider-navigation {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Collection Slider Styles */
.collection-slider {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure slick slider is visible */
.collection-slider.slick-slider {
    display: block !important;
}

.collection-slider .slick-list {
    overflow: visible;
}

.collection-slider .slick-track {
    display: flex;
    align-items: center;
}

.collection-item {
    padding: 0 15px;
    display: block;
    float: left;
    width: 33.333%;
}
.faq-title{
    width: 35%;
}
.faqs{
    width: 55%;
}

/* Fallback display when slider is not initialized */
.collection-slider:not(.slick-initialized) .collection-item {
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
    margin-bottom: 20px;
}

.collection-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.collection-card:hover {
    transform: none;
    box-shadow: none;
}

/* Slick slide width control */
@media(min-width: 480px){
    .collection-slider .slick-slide {
        width: 360px !important;
        transition: width 0.5s ease-in-out;
    }
}

.collection-slider .slick-slide.slick-center {
    width: 600px !important;
    transition: width 0.5s ease-in-out;
}

.collection-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
    background-color: transparent;
}
.cards-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 30px;
}
.cards-grid .card{
    padding: 16px;
    background-color: #F8F8F8;
    min-height: 335px;
    display: flex;
}
.card-content{
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.card-content img{
    width: 261px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 16px;
}
.card-content p{
    margin-bottom: 0px;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #D6A100;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1C1C1C;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #D6A100;
}

.faq-question::after {
    content: '';
    width: 18px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53026 9.8856C9.23736 10.1785 8.76256 10.1785 8.46966 9.8856L0.823183 2.2391C0.530293 1.9462 0.530293 1.4714 0.823183 1.1785L1.17674 0.8249C1.46963 0.532 1.9445 0.532 2.2374 0.8249L8.99996 7.5875L15.7626 0.8249C16.0555 0.532 16.5303 0.532 16.8232 0.8249L17.1768 1.1785C17.4697 1.4714 17.4697 1.9462 17.1768 2.2391L9.53026 9.8856Z' fill='%231C1C1C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Store Locations Section */
.store-locations {
    width: 45%;
}

.store-locations h2 {
    margin-bottom: 15px;
}

.store-locations p {
    margin-bottom: 30px;
    color: #666;
}

.location-accordion {
    width: 100%;
}

.location-item {
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid #CCCCCC;
}

.location-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1C1C1C;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.location-question h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 1C10.3 1 8.2 1.9 6.6 3.5C5 5.1 4.1 7.2 4.1 9.4C4.1 11.2 4.7 12.9 5.8 14.3L12.5 22L19.2 14.3C20.3 12.9 20.9 11.2 20.9 9.4C20.9 7.2 20 5.1 18.4 3.5C16.8 1.9 14.7 1 12.5 1ZM12.5 12.5C11.8 12.5 11.1 12.3 10.5 11.9C9.9 11.5 9.4 11 9.1 10.4C8.8 9.8 8.7 9.1 8.8 8.4C8.9 7.7 9.2 7.1 9.6 6.6C10 6.1 10.6 5.8 11.3 5.7C12 5.6 12.7 5.7 13.3 6C13.9 6.3 14.4 6.7 14.8 7.2C15.2 7.7 15.4 8.3 15.4 8.9C15.4 9.6 15.1 10.2 14.6 10.7C14.1 11.2 13.5 11.5 12.8 11.5H12.5Z' fill='%23C7C7C7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
}

.location-item.active .location-question h3::before {
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 1C10.3 1 8.2 1.9 6.6 3.5C5 5.1 4.1 7.2 4.1 9.4C4.1 11.2 4.7 12.9 5.8 14.3L12.5 22L19.2 14.3C20.3 12.9 20.9 11.2 20.9 9.4C20.9 7.2 20 5.1 18.4 3.5C16.8 1.9 14.7 1 12.5 1ZM12.5 12.5C11.8 12.5 11.1 12.3 10.5 11.9C9.9 11.5 9.4 11 9.1 10.4C8.8 9.8 8.7 9.1 8.8 8.4C8.9 7.7 9.2 7.1 9.6 6.6C10 6.1 10.6 5.8 11.3 5.7C12 5.6 12.7 5.7 13.3 6C13.9 6.3 14.4 6.7 14.8 7.2C15.2 7.7 15.4 8.3 15.4 8.9C15.4 9.6 15.1 10.2 14.6 10.7C14.1 11.2 13.5 11.5 12.8 11.5H12.5Z' fill='%23EA2126'/%3E%3C/svg%3E");
}

.location-icon {
    font-weight: bold;
    color: #D6A100;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
    position: relative;
    font-size: 0;
    line-height: 0;
}

header .location-icon::before{
    display: none;
}

.location-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53026 9.8856C9.23736 10.1785 8.76256 10.1785 8.46966 9.8856L0.823183 2.2391C0.530293 1.9462 0.530293 1.4714 0.823183 1.1785L1.17674 0.8249C1.46963 0.532 1.9445 0.532 2.2374 0.8249L8.99996 7.5875L15.7626 0.8249C16.0555 0.532 16.5303 0.532 16.8232 0.8249L17.1768 1.1785C17.4697 1.4714 17.4697 1.9462 17.1768 2.2391L9.53026 9.8856Z' fill='%231C1C1C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
}

.location-item.active .location-icon {
    color: #EA2126;
}

.location-item.active .location-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53026 9.8856C9.23736 10.1785 8.76256 10.1785 8.46966 9.8856L0.823183 2.2391C0.530293 1.9462 0.530293 1.4714 0.823183 1.1785L1.17674 0.8249C1.46963 0.532 1.9445 0.532 2.2374 0.8249L8.99996 7.5875L15.7626 0.8249C16.0555 0.532 16.5303 0.532 16.8232 0.8249L17.1768 1.1785C17.4697 1.4714 17.4697 1.9462 17.1768 2.2391L9.53026 9.8856Z' fill='%231C1C1C'/%3E%3C/svg%3E");
    transform: translate(-50%, -50%) rotate(180deg);
}

.location-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.location-item.active .location-answer {
    max-height: 400px;
}

.location-details {
    padding: 20px;
    padding-top: 0px;
    padding-left: 35px;
}
p.location-para{
    max-width: 545px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.location-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0 0 8px 0;
}
.section-6{
    background-color: #F8F8F8;
}
.location-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.location-details .address,
.location-details .contact,
.location-details .timings {
    margin-bottom: 15px;
}

.location-details .timings {
    margin-bottom: 0;
}

/* Map Container */
.map-container {
    width: 50%;
    margin-left: 30px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.location-details a{
    padding: 7px 24px;
    border: 1px solid #D6A100;
    color: #393939;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    position: relative;
    padding-left: 45px;
    display: inline-block;
}
footer{
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 16px;
    padding-top: 90px;
}
.social-links a{
    color: transparent;
}
.social-links{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}
.location-details a::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.95 21.0034C17.8667 21.0034 15.8083 20.5494 13.775 19.6414C11.7417 18.7334 9.89167 17.4458 8.225 15.7784C6.55833 14.1111 5.271 12.2611 4.363 10.2284C3.455 8.19575 3.00067 6.13742 3 4.05342C3 3.75342 3.1 3.50342 3.3 3.30342C3.5 3.10342 3.75 3.00342 4.05 3.00342H8.1C8.33333 3.00342 8.54167 3.08275 8.725 3.24142C8.90833 3.40008 9.01667 3.58742 9.05 3.80342L9.7 7.30342C9.73333 7.57009 9.725 7.79508 9.675 7.97842C9.625 8.16175 9.53333 8.32008 9.4 8.45342L6.975 10.9034C7.30833 11.5201 7.704 12.1158 8.162 12.6904C8.62 13.2651 9.12433 13.8194 9.675 14.3534C10.1917 14.8701 10.7333 15.3494 11.3 15.7914C11.8667 16.2334 12.4667 16.6374 13.1 17.0034L15.45 14.6534C15.6 14.5034 15.796 14.3911 16.038 14.3164C16.28 14.2418 16.5173 14.2208 16.75 14.2534L20.2 14.9534C20.4333 15.0201 20.625 15.1411 20.775 15.3164C20.925 15.4918 21 15.6874 21 15.9034V19.9534C21 20.2534 20.9 20.5034 20.7 20.7034C20.5 20.9034 20.25 21.0034 19.95 21.0034Z' fill='%23D6A100'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/* Slick Slider Center Mode Customization */

/* Hide default Slick arrows and dots */
.slick-prev,
.slick-next {
    display: none !important;
}

.slick-dots {
    display: none !important;
}
.section-2{
    overflow: hidden;
}
.no-wrap-text{
    white-space: nowrap;
}
.min-width-370{
    min-width: 370px;
}
footer p{
    color: #fff;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer .footer-links a:hover{
    color: #D6A100;
}
footer .footer-links{
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 35px;;
}
.footer-links>div{
    width: 100%;
}
/* Header Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-menu {
       
        width: 100%;
    }
    
    .menu-list {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .menu-list li a {
        font-size: 14px;
    }
    
    .location-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .menu-list {
        gap: 15px;
    }
    
    .menu-list li a {
        font-size: 13px;
    }
    
    .location-link {
        padding: 8px;
        border-radius: 50%;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Sticky WhatsApp Icon */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}



.whatsapp-icon {
    width: 60px;
    height: 60px;
}

/* Popup Form Modal */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}
.name-section{
    display: flex;
    gap: 20px;  
}
.name-section .form-group{
    width: 50%;
}
#popupModal label{
    font-size: 14px;
    margin-bottom: 6px;
}
.popup-content {
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    max-width: 1150px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.popup-left {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    width: 45%;
}

.popup-logo {
    position: relative;
    z-index: 2;
    text-align: end;
    filter: brightness(100);
}

.popup-logo-img {
    height: 50px;
    width: auto;
}

.popup-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.popup-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: blur(2px);
}

.popup-right {
    flex: 1;
    padding: 70px 90px;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #EA2126;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

.popup-title {
    font-size: 30px;
    color: #1C1C1C;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.popup-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 400px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 13px 20px;
    border: 1px solid #e9ecef;
    border-radius: 3px;
    font-size: 14px;
    font-family: "Red Hat Display", sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #D6A100;
    box-shadow: 0 0 0 3px rgba(214, 161, 0, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.phone-input-group {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    border-color: #D6A100;
    box-shadow: 0 0 0 3px rgba(214, 161, 0, 0.1);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    font-weight: 600;
    color: #1C1C1C;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.phone-input-group input {
    border: none;
    border-radius: 0;
    flex: 1;
    padding: 15px 20px;
}

.phone-input-group input:focus {
    box-shadow: none;
}

.popup-submit-btn {
    background: #EA2126;
    color: #fff;
    border: none;
    padding: 13px 33px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Red Hat Display", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 20px !important;
    width: fit-content;
    margin: auto;
}

.popup-submit-btn:hover {
    background: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 33, 38, 0.3);
}
.history-content, .showroom-img{
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media (min-width: 1200px){
    .section-1 h2{
        margin-top: 30px;
    }
    #locations{
        padding-bottom: 100px;
    }
}
@media (max-width: 1200px) {
    .cards-grid{
        gap: 20px;
    }
    .history-content {
        padding-right: 50px;
    }
}
@media (max-width: 991px) {
    .cards-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .cards-grid .card{
        min-height: 250px;
    }
    .section-3>.container-lp>.d-flex, .section-5>.container-lp>.d-flex, .section-1>.container-lp>.d-flex {
        flex-direction: column;
        align-items: baseline;
    }
    .faq-title, .faqs{
        width: 100%;
    }
    .history-content{
        padding-right: 0px;
    }
    .slider-header{
        flex-direction: column;
        align-items: baseline;
        gap: 20px;
        margin-bottom: 15px;
    }
    .no-wrap-text{
        white-space: wrap;
    }
    .no-wrap-text br{
        display: none;
    }
    .name-section .form-group {
        width: 100%;
    }
    .popup-left{
        display: none;
    }
    .name-section{
        flex-direction: column;
    }
    .card-content{
        align-items: center;
    }
    .card-content p{
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .min-width-370 {
        min-width: auto;
    }
    .hero-text{
        padding: 0px;
    }
    .popup-content {
        flex-direction: column;
        max-width: 95%;
        margin: 10px;
    }
    
    .popup-left {
        min-height: 200px;
        padding: 20px;
    }
    
    .popup-right {
        padding: 30px 20px;
    }
    
    .popup-title {
        font-size: 28px;
    }
    
    .popup-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .country-code {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .phone-input-group input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .popup-submit-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .collection-slider {
        padding: 0 10px;
    }
    
    .collection-item {
        padding: 0 10px;
    }
    
    .collection-card img {
        height: 250px;
    }
    
    .slick-prev {
        left: -15px;
    }
    
    .slick-next {
        right: -15px;
    }
    
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
    footer .footer-links{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    footer{
        padding-top: 70px;
    }
    .footer-links>div {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }
    .footer-link{
        flex-wrap: wrap;
        justify-content: center;
    }
    .py-45 {
        padding: 30px 0px;
    }    
}
/* Mobile map styling */
.mobile-map {
    display: none;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

@media (max-width: 620px){
    .store-locations{
        width: 100%;
    }
    .map-container{
        display: none;
    }
    .mobile-map {
        display: block;
    }
}
@media (max-width: 575px){
    .cards-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}