/* ===========================
   Colors / Base
   =========================== */
:root{
  --primary-color:#99753F;
  --primary-hover:#C3923E;
  --secondary-color:#1C3B5E; 
  --accent-color:#3A5E81;
  --text-color:#444;
  --light-bg:#f8f8f8;
  --max-width:1200px;
}
*{box-sizing:border-box}
body{
    font-family:'Poppins',sans-serif;
    color:var(--text-color);
    margin:0;
    background:#fff;
    /* overflow-x:hidden */
}
a{text-decoration:none;color:inherit}
h1,h2,h3,h4{color:var(--secondary-color);line-height:1.2;margin-bottom:.5rem}
.container{max-width:var(--max-width);width:90%;margin:auto}

/* ----------------------------------------------------
   ----- NEW: AUTOMATIC PULSATING FADE & ZOOM ANIMATION -----
   ---------------------------------------------------- */
@keyframes pulse-fade {
    0% {
        opacity: 0.7; /* Changed from 0.9 */
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05); /* Changed from 1.02 */
    }
    100% {
        opacity: 0.7; /* Changed from 0.9 */
        transform: scale(1);
    }
}
/* ---------------------------------------------------- */

/* ----- Buttons / utilities ----- */
.btn-primary-custom{
    background:var(--primary-color);
    border:none;
    color:#fff;
    padding:.6rem 1.2rem;
    border-radius:6px;
    font-weight:600; 
    transition: background 0.3s, transform 0.3s;
    transform: scale(1);
    animation: pulse-fade 3s infinite ease-in-out; /* Keep it subtle at 3s */
}
.btn-primary-custom:hover{
    background:var(--primary-hover);
    animation-play-state: paused;
    opacity: 1;
    transform: scale(0.98);
}
.btn-dark-custom{
    background:var(--secondary-color);
    border:none;
    color:#fff;
    padding:.7rem 1.1rem;
    border-radius:6px;
    font-weight:600; 
    font-size: 1.05rem; 
    letter-spacing: 0.5px; 
    transition: background 0.3s, transform 0.3s;
    transform: scale(1);
    animation: pulse-fade 3s infinite ease-in-out; /* Keep it subtle at 3s */
}
.btn-dark-custom:hover{
    background:var(--accent-color);
    color:#fff;
    animation-play-state: paused;
    opacity: 1;
    transform: scale(0.98);
}


.section-padding{padding:20px 0!important}
.section-subtitle{display:block;text-align:center;color:var(--primary-color);font-size:.9rem;letter-spacing:2px;margin-bottom:8px;font-weight:600}
.section-title{font-size:2.2rem;font-weight:700;margin-bottom:1.5rem;text-align:center}

/* ----- Navbar ----- */
.navbar{background: var(--secondary-color) !important;
    box-shadow:0 2px 4px rgba(0,0,0,.08);position:sticky;top:0;z-index:1000}
.navbar .nav-link{color:white!important;font-weight:500;margin:0 .35rem}
.navbar .nav-link:hover{color:var(--primary-color)!important}
.shadow-sm{box-shadow:0 2px 4px rgba(0,0,0,.08)}
.navbar-brand.logo {
    width: 300px;
    height: auto;
    object-fit: contain;
}

/* Custom Styles for Left-to-Right Slide Animation on Mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 100%;
        width: 70vw;
        padding: 1rem;
        background-color: var(--secondary-color);
        transition: transform 0.3s ease-in-out;
        display: block !important;
        visibility: hidden;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        transform: translateX(100%);
        visibility: visible;
        right: 30vw;
    }

    .navbar-nav {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
}

@media (max-width: 991.98px) {
    .menu-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        opacity: 0.7;
        z-index: 1050;
    }
}
/* ----- Hero ----- */
header.hero{height:80vh;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;position:relative;
  background:url('../image/gallery/building-2.png') center/cover no-repeat;}
header.hero::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.55)}
.hero .content{position:relative;z-index:2}
.hero h1{font-size:4rem;color:var(--primary-hover);margin-bottom:.4rem}
.hero h2{font-size:1.6rem;color:#fff;font-weight:400}
.hero p{color:#fff;margin-bottom:1rem}

/* ----- About ----- */
.about .core-values{margin-top:20px;padding:20px;border-left:5px solid var(--primary-color);background:var(--light-bg)}
.about img{width:100%;height:auto;border-radius:10px;display:block}

/* ----------------------------------------------------
   ----- Amenities & connect cards 
   ---------------------------------------------------- */
.amenity, .connect-item{background:#fff;padding:18px;border-radius:10px;border-top:4px solid var(--primary-color);text-align:center;box-shadow:0 4px 10px rgba(212, 207, 191, 0.04); height: 100%;} 
.amenity i{font-size:1.8rem;color:var(--primary-color);margin-bottom:.5rem;display:block}
.connect-item{
    border-top: 4px solid var(--primary-color);
    padding: 20px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
}
.connect-item b {
    font-size: 1.15rem;
}
.connect-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ----- Swiper slides ----- */
.swiper{padding:6px 0}
.swiper-slide{height:auto!important}
.swiper-slide img{display:block;width:100%;height:auto;border-radius:10px;box-shadow:0 4px 10px rgba(0,0,0,.08)}

/* ----------------------------------------------------
   ----- Floor plans (Tabs & Image Contain FIX) -----
   ---------------------------------------------------- */
.plan-summary{margin-bottom:1.5rem;color:var(--text-color)}
.plan-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0,0,0,.05);
  transition: transform 0.2s;
  height: 100%;
  text-align: center;
}
.plan-card:hover { transform: translateY(-3px); }
.plan-card h4 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: .2rem;
}
.plan-card .area-detail {
  font-size: 1.1rem;
  color: var(--primary-hover);
  font-weight: 600;
  margin-bottom: 1rem;
}
.plan-tab-btn {
    color: var(--secondary-color);
    background: #f0f0f0;
    font-weight: 600;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 8px !important;
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
}
.plan-tab-btn:hover {
    color: var(--primary-color);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.plan-image-container {
    width: 100%;
    height: 450px; 
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan-content-image {
    object-fit: contain; 
    width: 100%;
    max-height: 420px; 
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
}
.floor-plan-swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}
.floor-plan-swiper .swiper-wrapper {
    align-items: center;
    height: 100%;
}
.floor-plan-swiper .swiper-slide {
    height: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}
@media (max-width: 991px) {
    .plan-image-container {
        height: 350px;
    }
    .plan-content-image {
        max-height: 320px;
    }
}
@media (max-width: 576px) {
    .navbar-brand.logo {
        width: 180px;
        height: 50px;
    }
    .plan-tab-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ----- NEW GALLERY SECTIONS (Structure, Flooring, Doors, Toilet) ----- */
.specs-list {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.specs-list .section-subtitle { text-align: left; }
.specs-list .section-title { font-size: 2rem; text-align: left; margin-bottom: 1.5rem; }
.specs-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.specs-list li {
    padding: 8px 0;
    font-weight: 500;
    font-size: 1.05rem;
}
.specs-list li::before {
    content: "\2713\0020";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 5px;
}
.specs-list .btn-primary-custom {
    align-self: flex-start;
    margin-top: 20px;
}
.gallery-swiper-wrapper {
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
}
.gallery-swiper .swiper-slide {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.gallery-swiper .swiper-slide img {
    height: 350px;
    object-fit: cover;
    width: calc(50% - 5px);
    cursor: pointer;
}
@media (max-width: 991px) {
    .gallery-swiper .swiper-slide img {
        width: 100%;
    }
    .gallery-swiper .swiper-slide {
        gap: 0;
    }
    .gallery-swiper .swiper-slide img:nth-child(2) {
        display: none; 
    }
}
@media (min-width: 992px) {
    .row.reverse-layout {
        flex-direction: row-reverse;
    }
}


/* ----- Location Section (Map Left, Cards Right - Grid on Desktop) ----- */
.location-map iframe {
    width: 100%; 
    height: 450px; 
    border: 0; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.connect-swiper-desktop-hide { display: none; }
.connect-grid-desktop-show { display: none; }
.location-btn-container { text-align: center; }

@media (min-width: 992px) {
    .connect-swiper-desktop-hide { display: none !important; }
    .connect-grid-desktop-show {
        display: flex; 
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .connect-grid-item {
        width: calc(50% - 0.5rem); 
    }
    .location-btn-container { text-align: center; }
}
@media (max-width: 991px) {
    .connect-swiper-desktop-hide { display: block !important; }
    .connect-grid-desktop-show { display: none !important; }
}


/* ----- Price boxes ----- */
.price-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.04);
    height: 100%;
}
.price-box.basic-price { border-top: 4px solid var(--primary-color); }
.price-box.payment-plan { border-top: 4px solid var(--secondary-color); }
.price-box h4{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.price-box ul {
    list-style-type: none;
    padding-left: 0;
}
.price-box ul li {
    background: #fdfdfd;
    padding: 8px 10px;
    border-bottom: 1px dashed #eee;
    font-weight: 500;
}
.price-box .table th { border-bottom: 2px solid #ddd; }
.price-box .table td, .price-box .table th { padding: 10px; }



/* ----- Price boxes (Form Box Styling) ----- */
.price-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    border-top: 4px solid var(--primary-color);
    box-shadow:0 4px 10px rgba(0,0,0,.04);
    height: 100%;
}
.price-box h4{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.price-box .btn-primary-custom {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: .8rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    animation: none; 
    opacity: 1;
    transform: scale(1);
}

/* =========================================================
   REFINED ALIGNMENT: Equal Height for Pricing Boxes (Desktop Only)
   ========================================================= */

@media (min-width: 992px) { /* Sirf desktop (992px aur usse upar) ke liye */
    
    /* Step 1: Right column ko Flex container banao aur ensure karo ki woh puri height le */
    #price .row > .col-lg-6 {
        display: flex;
        flex-direction: column; /* Content top-to-bottom flow karega */
    }

    /* Step 2: Inner payment plan box ko bolo ki woh 100% height cover kare */
    #price .payment-plan {
        height: 100%; /* Yeh isse stretch karke left box ke barabar kar dega */
        /* Optional: Thoda sa padding dekar content ko 'faila' dete hain, jaisa aapne kaha */
        padding: 30px; 
    }
    
    /* Step 3: Inner content (list items) ko aur space do */
    #price .payment-plan ul {
        flex-grow: 1; /* List ko zyada se zyada space lene do */
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    #price .payment-plan li {
        margin-bottom: 12px; /* Har list item ke beech ki space badhao */
    }
    
    /* Button ko bottom mein chipka do, agar zaroorat pade */
    #price .payment-plan > a.btn {
        margin-top: auto !important; 
    }
}

/* Agar aapke paas '.price-box' ke liye koi fixed height ya padding hai, toh isko adjust karna padega.
   Lekin upar diye gaye code se aapka kaam ho jaana chahiye. */
/* ----- Form & Accordion (EXACT DESIGN MATCH) ----- */
.contact-form input, .contact-form select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 1.1rem;
    background-color: #fff;
}

.faq-right-column {
    padding: 0;
}
.faq-right-column .section-subtitle { 
    text-align: left; 
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}


.accordion-item {
    border: none; 
    margin-bottom: 8px;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.accordion-button {
    background: #fdfdfd;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.2s;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed){
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-bottom: none;
    border-radius: 0;
}

.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-weight: 700;
    font-size: 1.2rem;
    width: 1rem;
    height: 1rem;
    line-height: 1;
    transform: none;
    color: var(--primary-color);
}
.accordion-button:not(.collapsed)::after {
    content: '-';
    color: #fff;
}


.accordion-body{
    border: 1px solid #e0e0e0;
    border-top: none;
    background: #fff; 
    color: var(--text-color);
    font-size: 1rem;
    padding: 20px;
    line-height: 1.6;
}
/* ----- Footer ----- */
footer{background:var(--secondary-color);color:#ddd}
footer h5{color:var(--primary-hover);margin-bottom:.75rem}
footer p{color:#ddd;margin-bottom:.5rem}
.copyright{color:#aaa;text-align:center;padding:18px 0;border-top:1px solid rgba(255,255,255,.06)}

/* ----- Responsive tweaks ----- */
@media (max-width:992px){
  .section-padding{padding:60px 0}
  header.hero{height:60vh}
  .hero h1{font-size:3rem}
}
@media (max-width:576px){
  .hero h1{font-size:2.2rem}
  .section-title{font-size:1.4rem}
}

.modal-body .btn-primary-custom {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    animation: none;
    opacity: 1 !important;
    transform: scale(1);
}

/* ----------------------------------------------------
/* ==============================================
   ----- FINAL: Sleek Sticky Side Elements (Desktop Only) -----
   ============================================== */

/* --- LEFT SIDE: Enquire Now Button (Primary CTA) --- */
.sleek-sticky-btn {
    position: fixed;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); 
    z-index: 1050;
    
    /* Flex Layout: Vertical stack of Icon + Text */
    display: flex;
    flex-direction: column; /* Icon above text */
    align-items: center;
    justify-content: center;
    gap: 8px; 

    /* Design */
    background-color: var(--secondary-color);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 10px; /* Adjusted padding for vertical text */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    
    /* Animation setup */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    
    /* Placement */
    left: 0;
    border-radius: 0 6px 6px 0; /* Rounded edge on the right */
}

/* --- VERTICAL TEXT STYLING for Enquire Now --- */
.sleek-sticky-btn span {
    display: block;
    writing-mode: vertical-rl; /* Vertical writing mode */
    text-orientation: mixed; 
    transform: rotate(180deg); /* Reads top-to-bottom */
    
    margin-top: 5px; 
    margin-bottom: 5px;
    white-space: nowrap; 
}


/* --- RIGHT SIDE: Social Wrapper Positioning --- */
.sleek-sticky-social-wrapper {
    position: fixed;
    top: 50%; /* Center vertically */
    right: 0;
    transform: translateY(-50%); 
    z-index: 1050;
    
    /* Stacks the social buttons vertically */
    display: flex;
    flex-direction: column;
    gap: 5px; /* Small space between the icons */
}

.sleek-social-btn {
    /* Uses a darker color for distinction */
    background-color: var(--secondary-color); 
    color: white;
    padding: 10px; 
    width: 45px; 
    height: 45px; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    
  
    border-radius: 6px 0 0 6px; 
}

/* --- Icon Size --- */
.sleek-sticky-btn i, .sleek-social-btn i {
    font-size: 1.1rem;
    line-height: 1; 
}



.sleek-sticky-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
    /* Slide out left */
    transform: translateY(-50%) translateX(5px); 
}

/* RIGHT SOCIAL BUTTON Hover - Slides slightly outwards */
.sleek-social-btn:hover {
    background-color: var(--accent-color); 
    /* Slide out right */
    transform: translateX(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
}


/* --- BONUS: Subtle Entrance Animation --- */
@keyframes sleekSlideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes sleekSlideInReverse {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Applies to the Left Button */
.sleek-sticky-btn {
    animation: sleekSlideIn 0.5s ease-out 0.2s forwards;
}

/* Applies to the Right Social Wrapper (the group) */
.sleek-sticky-social-wrapper {
    animation: sleekSlideInReverse 0.5s ease-out 0.2s forwards;
}
/* Adjustments for general footer-btn class used by both mobile/desktop */
.footer-btn {
    /* ... existing styles ... */
    display: flex; /* Keep flex for icon/text alignment */
    flex-direction: row; /* Default to horizontal alignment for desktop */
    justify-content: center;
    align-items: center;
}
/* ---------------------------------------------------- */

.legacy-logo-fixed-size {
    /* Set max-width to fix the size despite img-fluid */
    max-width: 400px;
    
    /* Force the fixed size */
    width: 350px !important; 
    height: 350px !important; 
    overflow: hidden;
    
    object-fit: contain; 
}

@media (max-width: 576px) {
    .legacy-logo-fixed-size {
        width: 250px !important; 
        height: 250px !important; 
    }
}
/* ----------------------------------------------------
   ----- NEW: Sticky Mobile Footer (d-lg-none)
   ---------------------------------------------------- */
.sticky-footer-mobile {
    position: fixed;
    bottom: 0;
    
    left: -8px; 
    right: -8px;
    width: calc(100% + 16px); 

    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 1000;
    padding: 8px 0;
}



.sticky-footer-mobile a {
    text-decoration: none;
}
/* Mobile footer button specific alignment */
.sticky-footer-mobile .footer-btn {
    flex: 1;
    flex-basis: 50%; /* Fix: Ensures equal width */
    white-space: nowrap; /* Fix: Prevents text wrap */
    text-align: center;
    padding: 10px 0;
    margin: 0 8px; /* Slight increase in margin for spacing */
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem; /* Reduced font size for better fit on mobile */
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    transform: scale(1);
    /* animation: pulse-fade 3s infinite ease-in-out; */
}
.sticky-footer-mobile .footer-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
    display: block;
}
.footer-btn:hover {
    animation-play-state: paused;
    opacity: 1;
    transform: scale(0.98);
}

.contact-btn {
    background: var(--primary-color);
    color: #fff;
}
.contact-btn:hover {
    background: var(--primary-hover);
    color: #fff;
}

.brochure-btn {
    background: var(--primary-color);
    color: #fff;
}
.brochure-btn:hover {
    background: var(--primary-hover);
    color: #fff;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 60px; 
    }
    .brochure-btn, .contact-btn {
         box-shadow: none !important; transform: none !important;  animation: none !important;
         padding-left: 0 !important; padding-right: 0 !important;
    }
     .sticky-footer-mobile {
        width: 100%; 
        left: 0;
        right: 0;
    }
}

/* --- Card Container Styling (Grid Layout) --- */
.card-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; 
  max-width: 1000px; 
  margin: 40px auto;
  padding: 20px;
}

/* --- Individual Card Styling --- */
.travel-card {
  border-radius: 8px;
  padding: 10px;
  background-color: #fcfcf9;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  border: 1px solid #eee8d5;
}

.travel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* --- Icon and Text Styling --- */
.card-icon-circle {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: #f7f3e8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  border: 1px solid #e0d8c0;
}

.card-icon-circle i {
  color: #8b7952;
  font-size: 24px;
}

.card-text {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #333;
 
  overflow-wrap: break-word; 
}

.location-name {
   
    display: block; 
    line-height: 1.2;
}

.travel-time {
  font-weight: 700;
  color: #5d4a30;
}

.bold-time {
  font-weight: 900;
}


/* --- Enhanced Responsive Design (Media Queries) --- */


@media (max-width: 850px) {
  .card-grid-container {
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .card-grid-container {
    grid-template-columns: 2fr;
    gap: 15px;
  }

  .travel-card {
      padding: 15px;
  }
}
/* =========================================
   NAKSHATRA MODAL – DESKTOP ONLY FIX
   (Mobile bilkul same rahega)
   ========================================= */

.nakshatra-offer-modal{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

/* LEFT PANEL – brand colors already aligned */
.nakshatra-offer-panel{
  background: linear-gradient(
    180deg,
    var(--secondary-color),
    var(--accent-color)
  );
  color:#fff;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Offer image */
.offer-image-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:16px;
}

.offer-img{
  max-width:110px;
  height:auto;
}

/* =========================
   DESKTOP VIEW (BLOCK LINES)
   ========================= */
@media (min-width: 768px){

  .offer-benefits{
    display:flex;
    flex-direction:column;     /* 👈 block / line-by-line */
    align-items:flex-start;
    gap:12px;
    margin-top:10px;
    padding-left:6px;
  }

  .benefit-item{
    display:flex;
    flex-direction:row;        /* icon + text ek line */
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:500;
    color:#F5E6C8;
  }

  .benefit-item i{
    color:var(--primary-color);
    font-size:14px;
    min-width:16px;
  }
}

/* =========================
   MOBILE VIEW (NO CHANGE)
   ========================= */
@media (max-width: 767px){

  .offer-benefits{
    display:flex;
    flex-direction:row;        /* phone pe jaise tha waise hi */
    justify-content:space-between;
    gap:6px;
  }

  .benefit-item{
    flex-direction:column;
    align-items:center;
    font-size:10px;
    gap:4px;
    text-align:center;
  }
}

/* Form fields – consistent with site */
.nakshatra-offer-modal .form-control,
.nakshatra-offer-modal .form-select{
  border-radius:30px;
  padding:12px 18px;
}

/* Submit button – site CTA */
.nakshatra-offer-modal .btn-primary-custom{
  background:var(--primary-color) !important;
  border:none;
  animation:none;
}

.nakshatra-offer-modal .btn-primary-custom:hover{
  background:var(--primary-hover) !important;
}
