 :root {
     --brand-navy: #1a2744;
     --brand-orange: #c8511b;
     --brand-orange-light: #e8622a;
     --brand-teal: #1a6070;
     --brand-gold: #c8511b;
     --brand-light: #f7f5f2;
     --brand-gray: #6b7280;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'DM Sans', sans-serif;
     background: #fff;
     color: #1a1a1a;
 }

 h1,
 h2,
 h3,
 h4,
 .brand-font {
     font-family: 'Playfair Display', serif;
 }

 /* ── TOPBAR ── */
 .topbar {
     background: #fff;
     border-bottom: 1px solid #e5e7eb;
     padding: 6px 0;
     font-size: 13px;
 }

 .topbar a {
     color: var(--brand-navy);
     text-decoration: none;
     font-weight: 500;
 }

 .topbar .divider {
     color: #ccc;
     margin: 0 12px;
 }

 .topbar-cta {
     letter-spacing: 2px;
     font-weight: 700;
     color: var(--brand-navy);
     font-size: 14px;
 }

 .btn-login {
     border: 2px solid var(--brand-navy);
     color: var(--brand-navy);
     font-weight: 600;
     font-size: 13px;
     padding: 4px 15px;
     border-radius: 4px;
     background: transparent;
     transition: all .2s;
     cursor: pointer;
 }

 .btn-login:hover {
     background: var(--brand-navy);
     color: #fff;
 }

 .btn-signup {
     border: 1.5px solid var(--brand-orange);
     color: var(--brand-orange);
     font-weight: 600;
     font-size: 13px;
     padding: 4px 15px;
     border-radius: 4px;
     background: transparent;
     transition: all .2s;
     cursor: pointer;
 }

 .btn-signup:hover {
     background: var(--brand-orange);
     color: #fff;
 }

 /* ── NAVBAR ── */
 .main-navbar {
     background: #fff;
     border-bottom: 2px solid #f0f0f0;
     padding: 1px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     /* box-shadow: 0 2px 12px rgba(0, 0, 0, .06); */
 }

 .brand-logo .brand-name {
     font-family: 'Playfair Display', serif;
     font-size: 22px;
     font-weight: 700;
     color: var(--brand-navy);
     letter-spacing: .5px;
 }

 .brand-sub-wrapper {
     display: flex;
     align-items: center;
     gap: 8px;
     margin: 2px 0;
 }

 .brand-logo .brand-sub {
     font-size: 11px;
     color: var(--brand-orange);
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     white-space: nowrap;
 }

 .brand-sub-wrapper .line {
     width: 40px;
     height: 1.5px;
     background: var(--brand-orange);
     display: block;
 }

 .brand-logo .brand-tagline {
     font-size: 10px;
     color: var(--brand-gray);
     letter-spacing: .5px;
     text-align: center;
 }

 .nav-link {
     font-size: 13.5px;
     font-weight: 500;
     color: #333 !important;
     padding: 10px !important;
     transition: color .2s;
 }

 .nav-link:hover {
     color: var(--brand-orange) !important;
 }

 .nav-link.active {
     color: var(--brand-navy) !important;
     font-weight: 600;
 }

 .nav-favourite {
     color: var(--brand-orange) !important;
     font-size: 18px;
 }

 .btn-new-launch {
     background: var(--brand-orange);
     color: #fff !important;
     font-weight: 600;
     font-size: 13px;
     padding: 7px 18px;
     border-radius: 5px;
     transition: background .2s;
     text-decoration: none;
 }

 .btn-new-launch:hover {
     background: var(--brand-orange-light);
     color: #fff !important;
 }

 /* ── MEGA DROPDOWN ── */
 .mega-dropdown {
     position: relative;
 }

 .mega-menu {
     display: none;
     position: absolute;
     top: calc(100%);
     left: 50%;
     transform: translateX(-50%);
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
     border: 1px solid #f0f0f0;
     padding: 20px;
     min-width: 560px;
     z-index: 9999;
     animation: fadeDown .2s ease;
 }

 @keyframes fadeDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-8px)
     }

     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0)
     }
 }

 .mega-dropdown:hover .mega-menu {
     display: block;
 }

 .mega-menu-title {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--brand-orange);
     margin-bottom: 12px;
 }

 .mega-menu-item {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 8px 12px;
     border-radius: 8px;
     color: #333;
     text-decoration: none;
     font-size: 13.8px;
     font-weight: 500;
     transition: background .15s, color .15s;
 }

 .mega-menu-item:hover {
     background: var(--brand-light);
     color: var(--brand-navy);
 }

 .mega-menu-item .mi-icon {
     width: 34px;
     height: 34px;
     border-radius: 8px;
     background: var(--brand-light);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--brand-orange);
     font-size: 16px;
     flex-shrink: 0;
 }

 .mega-menu-item .mi-sub {
     font-size: 11px;
     color: var(--brand-gray);
     font-weight: 400;
 }

 .mega-menu-items {
     display: block;
     padding: 8px 10px;
     font-size: 13.5px;
     color: #545454;
     text-decoration: none;
     transition: background .15s, color .15s;
     font-weight: 500;
 }

 .mega-menu {
     max-height: 300px;
     overflow-y: auto;
     overflow-x: hidden;
 }

 .mega-menu::-webkit-scrollbar {
     width: 5px;
 }

 .mega-menu::-webkit-scrollbar-track {
     background: #eeee;
     border-radius: 10px;
 }

 .mega-menu::-webkit-scrollbar-thumb {
     background: #c8511b;
     border-radius: 10px;
 }

 .mega-menu::-webkit-scrollbar-thumb:hover {
     background: #c8511b;
 }

 .mega-divider {
     border: none;
     border-top: 1px solid #f0f0f0;
     margin: 12px 0;
 }

 /* Small dropdown (Renovation Services) */
 .simple-dropdown {
     position: relative;
 }

 .simple-menu {
     display: none;
     position: absolute;
     top: calc(100% + 8px);
     left: 0;
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 10px 36px rgba(0, 0, 0, .12);
     border: 1px solid #f0f0f0;
     padding: 10px 0;
     min-width: 200px;
     z-index: 9999;
     animation: fadeDown .2s ease;
 }

 .simple-dropdown:hover .simple-menu {
     display: block;
 }

 .simple-menu a {
     display: block;
     padding: 9px 18px;
     font-size: 13.5px;
     color: #333;
     text-decoration: none;
     transition: background .15s;
 }

 .simple-menu a:hover {
     background: var(--brand-light);
     color: var(--brand-orange);
 }

 /* City row — desktop */
 .city-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-right: 8px;
 }

 .city-toggle {
     background: none;
     border: 1px solid #e0e0e0;
     border-radius: 50%;
     width: 22px;
     height: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: #c8511b;
     flex-shrink: 0;
     font-size: 14px;
     padding: 0;
 }

 .city-toggle:hover {
     background: #fff5f0;
 }

 /* Mobile menu */
 .mob-nav-group {
     border-bottom: 1px solid #f0f0f0;
 }

 .mob-nav-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 16px;
 }

 .mob-nav-item {
     font-size: 14px;
     font-weight: 500;
     color: #333;
     text-decoration: none;
     flex: 1;
 }

 .mob-chevron {
     background: none;
     border: none;
     font-size: 14px;
     color: #888;
     cursor: pointer;
     padding: 4px 8px;
     transition: transform .2s;
 }

 .mob-sub-menu {
     display: none;
     padding: 0 16px 12px;
     background: #fafafa;
 }

 .mob-sub-menu.open {
     display: block;
 }

 .mob-group-title {
     display: block;
     font-size: 13px;
     font-weight: 600;
     color: #c8511b;
     padding: 8px 0 4px;
     text-decoration: none;
 }

 .mob-city-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 6px 0;
     border-bottom: 1px solid #f5f5f5;
 }

 .mob-city-link {
     font-size: 13.5px;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     flex: 1;
 }

 .mob-plus-btn {
     background: none;
     border: 1px solid #e0e0e0;
     border-radius: 50%;
     width: 22px;
     height: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: #c8511b;
     font-size: 14px;
     padding: 0;
 }

 .mob-city-items {
     padding: 4px 0 4px 16px;
 }

 .mob-item-link {
     display: block;
     font-size: 13px;
     color: #555;
     padding: 5px 0;
     text-decoration: none;
 }

 .mob-item-link:hover {
     color: #c8511b;
 }

 .mob-item-link i {
     margin-right: 6px;
     font-size: 12px;
 }

 /* ── HERO ── */
 .hero-section {
     position: relative;
     /* min-height: 420px; */
     background: linear-gradient(135deg, #1a2744, #2d3f6b 50%, #1a6070);
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 .hero-bg-img {
     position: absolute;
     inset: 0;
     background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1400&q=80') center/cover no-repeat;
     opacity: .35;
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, rgba(26, 39, 68, .85) 40%, rgba(26, 39, 68, .3) 100%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-title {
     font-size: clamp(2rem, 5vw, 3.2rem);
     color: #fff;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 12px;
     text-align: center;
 }

 .hero-subtitle {
     color: rgba(255, 255, 255, .85);
     font-size: 16px;
     margin-bottom: 28px;
     text-align: center;
 }

 .hero-search-bar {
     background: #fff;
     border-radius: 8px;
     padding: 6px 6px 6px 18px;
     display: flex;
     align-items: center;
     width: 640px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
 }

 .hero-search-bar input {
     flex: 1;
     border: none;
     outline: none;
     font-size: 14px;
     color: #333;
     background: transparent;
     font-family: 'DM Sans', sans-serif;
 }

 .hero-search-btn {
     background: var(--brand-orange);
     border: none;
     color: #fff;
     width: 44px;
     height: 44px;
     border-radius: 6px;
     font-size: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background .2s;
 }

 .hero-search-btn:hover {
     background: var(--brand-orange-light);
 }

 @media (max-width: 767.98px) {
     .hero-search-bar {
         width: 280px;
         margin: 0 auto;
         padding: 5px 5px 5px 14px;
     }

     .btn-login {
         padding: 4px;
     }
 }

 /* ── INTRO CARD ── */
 .intro-card {
     border: 2px solid var(--brand-orange);
     border-radius: 10px;
     padding: 28px 32px;
     background: #fff;
     box-shadow: 0 4px 24px rgba(200, 81, 27, .08);
     position: relative;
     margin: 40px 0;
 }

 .intro-card .close-btn {
     position: absolute;
     top: 12px;
     right: 16px;
     font-size: 20px;
     color: #999;
     cursor: pointer;
     background: none;
     border: none;
     line-height: 1;
 }

 .intro-card h4 {
     font-size: 20px;
     color: var(--brand-navy);
     margin-bottom: 14px;
 }

 .intro-card p {
     font-size: 14px;
     color: #444;
     margin-bottom: 15px;
 }

 .intro-card ul {
     list-style: none;
     padding: 0;
     margin-bottom: 20px;
 }

 .intro-card ul li {
     padding: 4px 0 4px 22px;
     position: relative;
     font-size: 14.5px;
     color: #444;
 }

 .intro-card ul li::before {
     content: '●';
     position: absolute;
     left: 0;
     color: var(--brand-navy);
     font-size: 10px;
     top: 7px;
 }

 .btn-watch-video {
     background: var(--brand-orange);
     color: #fff;
     border: none;
     padding: 11px 32px;
     border-radius: 6px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     transition: background .2s;
 }

 .btn-watch-video:hover {
     background: var(--brand-orange-light);
 }

 .ceo-frame {
     background: #fff;
     border-radius: 9px;
     padding: 15px;
     text-align: center;
     position: relative;
     overflow: hidden;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .ceo-frame:hover {
     transform: translateY(-1px);
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
 }

 .ceo-image-wrapper {
     border-radius: 6px;
     padding: 2px;
     background: #c8511b;
     position: relative;
 }

 .ceo-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 4px;
     display: block;
     background: #f5f5f5;
 }

 .ceo-content {
     margin-top: 18px;
 }

 .ceo-content h5 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 4px;
     color: #0b1c39;
 }

 .ceo-content span {
     color: #ff7a00;
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 /* Optional premium effect */
 .ceo-frame::before {
     content: "";
     position: absolute;
     top: -60px;
     right: -60px;
     width: 150px;
     height: 150px;
     background: rgba(255, 122, 0, 0.08);
     border-radius: 50%;
 }

 .ceo-frame::after {
     content: "";
     position: absolute;
     bottom: -50px;
     left: -50px;
     width: 130px;
     height: 130px;
     background: rgba(11, 28, 57, 0.06);
     border-radius: 50%;
 }

 /* ── SECTIONS ── */
 .section-heading {
     font-size: 1.6rem;
     color: var(--brand-navy);
     font-weight: 700;
     margin-bottom: 10px;
 }

 .section-sub {
     font-size: 14px;
     color: var(--brand-gray);
     margin-bottom: 24px;
 }

 .bg-light-warm {
     background: var(--brand-light);
 }

 .see-more-link {
     color: var(--brand-orange);
     font-weight: 600;
     font-size: 14px;
     text-decoration: none;
     white-space: nowrap;
 }

 .see-more-link:hover {
     color: var(--brand-orange-light);
     text-decoration: underline;
 }

 /* ── NEW LAUNCH BANNER ── */
 .new-launch-banner {
     border-radius: 12px;
     overflow: hidden;
     position: relative;
     min-height: 260px;
     background: linear-gradient(135deg, #1a2744, #2d4a6b);
     display: flex;
     align-items: flex-end;
     cursor: pointer;
 }

 .new-launch-banner img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: .7;
 }

 .new-launch-banner .banner-label {
     position: relative;
     z-index: 2;
     background: rgba(26, 39, 68, .7);
     color: #fff;
     padding: 10px 18px;
     font-size: 15px;
     font-weight: 600;
     width: 100%;
     backdrop-filter: blur(4px);
 }

 /* ── SECTOR CARDS ── */
 .sector-card {
     border-radius: 10px;
     overflow: hidden;
     position: relative;
     min-height: 140px;
     cursor: pointer;
     transition: transform .2s, box-shadow .2s;
     background: #dde5ec;
 }

 .sector-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
 }

 .sector-card img {
     width: 100%;
     height: 140px;
     object-fit: cover;
     transition: transform .3s;
 }

 .sector-card:hover img {
     transform: scale(1.05);
 }

 .sector-card .sector-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(26, 39, 68, .85));
     color: #fff;
     padding: 24px 10px 10px;
     font-size: 13px;
     font-weight: 600;
     text-align: center;
 }

 /* ── SWIPER PROPERTY CARDS ── */
 .swiper-property {
     padding-bottom: 44px !important;
 }

 .swiper-property .swiper-pagination-bullet {
     background: var(--brand-gray);
     opacity: .5;
     width: 9px;
     height: 9px;
 }

 .swiper-property .swiper-pagination-bullet-active {
     background: var(--brand-navy);
     opacity: 1;
 }

 .property-card {
     border-radius: 10px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
     transition: transform .2s, box-shadow .2s;
     cursor: pointer;
     height: 100%;
 }

 .property-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
 }

 .property-card .card-img-wrap {
     position: relative;
     height: 200px;
     overflow: hidden;
     border-radius: 9px;
 }

 .property-card .card-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .3s;
 }

 .property-card:hover .card-img-wrap img {
     transform: scale(1.06);
 }

 .property-card .card-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(20, 27, 44, 0.95));
     padding: 32px 12px 10px;
     color: #fff;
 }

 .property-card .card-price {
     font-size: 15px;
     font-weight: 700;
 }

 .property-card .card-details {
     font-size: 12px;
     opacity: .9;
 }

 .property-card .card-location {
     font-size: 12px;
     font-style: italic;
     opacity: .85;
 }

 .heart-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     background: rgba(0, 0, 0, .35);
     border: none;
     color: #fff;
     width: 34px;
     height: 34px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 16px;
     transition: background .2s, color .2s;
     z-index: 5;
 }

 .heart-btn:hover,
 .heart-btn.active {
     background: var(--brand-orange);
 }

 /* ── VIDEO CARDS ── */
 .video-card {
     border-radius: 10px;
     overflow: hidden;
     background: var(--brand-teal);
     min-height: 160px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     position: relative;
     transition: opacity .2s;
 }

 .video-card:hover {
     opacity: .85;
 }

 .video-card .play-icon {
     color: rgba(255, 255, 255, .85);
     font-size: 40px;
 }

 .video-card .video-title {
     font-size: 13px;
     color: #444;
     margin-top: 8px;
     text-align: center;
 }

 /* ── MODAL STYLES ── */
 .modal-header-brand {
     background: var(--brand-navy);
     color: #fff;
     border-radius: 12px 12px 0 0;
     padding: 20px 24px;
 }

 .modal-header-brand .modal-title {
     font-family: 'Playfair Display', serif;
     font-size: 20px;
 }

 .modal-header-brand .btn-close {
     filter: invert(1);
 }

 .modal-content {
     border-radius: 12px;
     border: none;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
 }

 .modal-body {
     padding: 28px 28px 20px;
 }

 .form-label-brand {
     font-size: 13px;
     font-weight: 600;
     color: var(--brand-navy);
     margin-bottom: 5px;
 }

 .form-control-brand {
     border: 1.5px solid #dde3ec;
     border-radius: 7px;
     padding: 10px 14px;
     font-size: 14px;
     transition: border-color .2s;
 }

 .form-control-brand:focus {
     border-color: var(--brand-orange);
     box-shadow: 0 0 0 3px rgba(200, 81, 27, .1);
     outline: none;
 }

 .btn-brand-primary {
     background: var(--brand-orange);
     color: #fff;
     border: none;
     padding: 11px;
     border-radius: 7px;
     font-weight: 600;
     font-size: 15px;
     width: 100%;
     cursor: pointer;
     transition: background .2s;
 }

 .btn-brand-primary:hover {
     background: var(--brand-orange-light);
 }

 .modal-switch-text {
     font-size: 13px;
     color: var(--brand-gray);
     text-align: center;
     margin-top: 16px;
 }

 .modal-switch-text a {
     color: var(--brand-orange);
     font-weight: 600;
     text-decoration: none;
     cursor: pointer;
 }

 .modal-switch-text a:hover {
     text-decoration: underline;
 }

 .modal-divider {
     display: flex;
     align-items: center;
     gap: 12px;
     margin: 16px 0;
 }

 .modal-divider hr {
     flex: 1;
     border-color: #e5e7eb;
 }

 .modal-divider span {
     font-size: 12px;
     color: #999;
 }

 .social-login-btn {
     border: 1.5px solid #dde3ec;
     border-radius: 7px;
     padding: 9px 14px;
     background: #fff;
     font-size: 13px;
     font-weight: 500;
     cursor: pointer;
     transition: background .2s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     width: 100%;
 }

 .social-login-btn:hover {
     background: #f5f7fb;
 }

 .input-pw-wrap {
     position: relative;
 }

 .input-pw-wrap input {
     padding-right: 42px;
 }

 .pw-toggle {
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     color: #aaa;
     cursor: pointer;
     font-size: 16px;
 }

 .modal-brand-logo {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-bottom: 20px;
 }

 .modal-brand-logo .bl-name {
     font-family: 'Playfair Display', serif;
     font-size: 20px;
     font-weight: 700;
     color: var(--brand-navy);
 }

 .modal-brand-logo .bl-sub {
     font-size: 10px;
     color: var(--brand-orange);
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .modal-brand-logo .bl-bar {
     width: 50px;
     height: 2px;
     background: var(--brand-orange);
     margin: 2px 0;
 }

 /* ── NEW LAUNCH MODAL ── */
 .nl-modal .modal-content {
     border-radius: 14px;
     overflow: hidden;
 }

 .nl-hero-img {
     width: 100%;
     height: 220px;
     object-fit: cover;
 }

 .nl-badge {
     background: var(--brand-orange);
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     padding: 4px 12px;
     border-radius: 30px;
     letter-spacing: .5px;
 }

 .nl-feature {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 0;
     border-bottom: 1px solid #f0f0f0;
 }

 .nl-feature:last-child {
     border-bottom: none;
 }

 .nl-feature-icon {
     width: 38px;
     height: 38px;
     background: var(--brand-light);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--brand-orange);
     font-size: 18px;
     flex-shrink: 0;
 }

 .nl-feature-text .nf-label {
     font-size: 11px;
     color: var(--brand-gray);
     font-weight: 500;
 }

 .nl-feature-text .nf-val {
     font-size: 14px;
     color: var(--brand-navy);
     font-weight: 600;
 }

 .nl-price-box {
     background: var(--brand-navy);
     color: #fff;
     border-radius: 10px;
     padding: 14px 18px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 18px;
 }

 .nl-price-box .price {
     font-family: 'Playfair Display', serif;
     font-size: 22px;
     font-weight: 700;
     color: var(--brand-gold);
 }

 .nl-price-box .price-label {
     font-size: 11px;
     color: rgba(255, 255, 255, .7);
 }

 .btn-enquire {
     background: var(--brand-orange);
     color: #fff;
     border: none;
     padding: 10px 26px;
     border-radius: 7px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     transition: background .2s;
 }

 .btn-enquire:hover {
     background: var(--brand-orange-light);
 }

 /* ── FOOTER ── */
 .site-footer {
     background: var(--brand-navy);
     color: #fff;
     padding: 60px 0 0;
 }

 .footer-logo .fl-name {
     font-family: 'Playfair Display', serif;
     font-size: 24px;
     font-weight: 700;
     color: #fff;
 }

 .footer-logo .fl-sub {
     font-size: 11px;
     color: var(--brand-orange);
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .footer-logo .fl-tagline {
     font-size: 12px;
     color: rgba(255, 255, 255, .6);
     margin-top: 4px;
 }

 .footer-logo .fl-bar {
     width: 60px;
     height: 2px;
     background: var(--brand-orange);
     margin: 4px 0;
 }

 .footer-desc {
     font-size: 14px;
     color: rgba(255, 255, 255, .65);
     line-height: 1.7;
     margin: 16px 0 20px;
 }

 .footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 1.5px solid rgba(255, 255, 255, .2);
     color: rgba(255, 255, 255, .7);
     font-size: 15px;
     text-decoration: none;
     transition: all .2s;
     margin-right: 8px;
 }

 .footer-social a:hover {
     background: var(--brand-orange);
     border-color: var(--brand-orange);
     color: #fff;
 }

 .footer-heading {
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: var(--brand-gold);
     margin-bottom: 18px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, .65);
     text-decoration: none;
     font-size: 14px;
     transition: color .2s;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .footer-links a:hover {
     color: var(--brand-orange);
 }

 .footer-links a::before {
     content: '›';
     font-size: 16px;
     color: var(--brand-orange);
 }

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 14px;
 }

 .footer-contact-item .fc-icon {
     width: 36px;
     height: 36px;
     background: rgba(200, 81, 27, .18);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--brand-orange);
     font-size: 16px;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .footer-contact-item .fc-text {
     font-size: 13.5px;
     color: rgba(255, 255, 255, .75);
     line-height: 1.5;
 }

 .footer-contact-item .fc-label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .5px;
     color: rgba(255, 255, 255, .4);
     text-transform: uppercase;
 }

 .footer-newsletter input {
     background: rgba(255, 255, 255, .08);
     border: 1.5px solid rgba(255, 255, 255, .15);
     border-radius: 7px 0 0 7px;
     padding: 11px 14px;
     font-size: 13px;
     color: #fff;
     outline: none;
     flex: 1;
     transition: border-color .2s;
 }

 .footer-newsletter input::placeholder {
     color: rgba(255, 255, 255, .4);
 }

 .footer-newsletter input:focus {
     border-color: var(--brand-orange);
 }

 .footer-newsletter button {
     background: var(--brand-orange);
     border: none;
     color: #fff;
     padding: 11px 18px;
     border-radius: 0 7px 7px 0;
     font-weight: 600;
     font-size: 13px;
     cursor: pointer;
     transition: background .2s;
     white-space: nowrap;
 }

 .footer-newsletter button:hover {
     background: var(--brand-orange-light);
 }

 .footer-bottom {
     background: rgba(0, 0, 0, .25);
     margin-top: 48px;
     padding: 16px 0;
     font-size: 13px;
     color: rgba(255, 255, 255, .5);
 }

 .footer-bottom a {
     color: rgba(255, 255, 255, .5);
     text-decoration: none;
 }

 .footer-bottom a:hover {
     color: var(--brand-orange);
 }

 /* ── CHAT BUBBLE ── */
 .chat-bubble {
     position: fixed;
     bottom: 40px;
     right: 28px;
     background: var(--brand-navy);
     color: #fff;
     border-radius: 50px;
     padding: 10px 22px;
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
     box-shadow: 0 4px 20px rgba(26, 39, 68, .35);
     z-index: 9999;
     font-size: 14px;
     font-weight: 600;
     transition: transform .2s;
     border: 1px solid rgb(255, 255, 255) !important;
 }

 .chat-bubble:hover {
     transform: scale(1.05);
 }

 .chat-bubble .chat-icon {
     font-size: 22px;
 }

 /* ── MOBILE NAV ── */
 .mobile-nav-list {
     border-top: 1px solid #f0f0f0;
 }

 .mob-nav-item {
     display: block;
     padding: 10px 18px;
     font-size: 14.5px;
     font-weight: 500;
     color: #1a1a1a;
     text-decoration: none;
     /* border-bottom: 1px solid #f5f5f5; */
     transition: background .15s, color .15s;
 }

 .mob-nav-item:hover {
     background: #fdf5f2;
     color: var(--brand-orange);
 }

 /* .mob-nav-group {
     border-bottom: 1px solid #f5f5f5;
 } */

 .mob-nav-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .mob-nav-row .mob-nav-item {
     flex: 1;
     border-bottom: none;
 }

 .mob-chevron {
     width: 40px;
     height: 40px;
     background: none;
     border: none;
     /* border-left: 1px solid #f0f0f0; */
     color: var(--brand-navy);
     font-size: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     flex-shrink: 0;
     transition: background .15s, color .15s;
 }

 .mob-chevron:hover {
     background: #fdf5f2;
     color: var(--brand-orange);
 }

 .mob-chevron i {
     transition: transform .25s ease;
 }

 .mob-chevron.open i {
     transform: rotate(180deg);
 }

 .mob-chevron.open {
     color: var(--brand-orange);
     background: #fdf5f2;
 }

 .mob-sub-menu {
     display: none;
     background: #fafafa;
     border-top: 1px solid #f0f0f0;
     padding: 6px 0;
 }

 .mob-sub-menu.open {
     display: block;
     animation: slideDown .2s ease;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-6px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .mob-sub-section {
     font-size: 10.5px;
     font-weight: 700;
     letter-spacing: 1.2px;
     text-transform: uppercase;
     color: var(--brand-orange);
     padding: 10px 18px 4px 52px;
 }

 .mob-sub-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     padding: 10px 18px 10px 18px;
     font-size: 13.5px;
     color: #333;
     text-decoration: none;
     transition: background .15s, color .15s;
 }

 .mob-sub-item i {
     width: 28px;
     height: 28px;
     background: #fff;
     border-radius: 7px;
     border: 1px solid #e8edf3;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     color: var(--brand-orange);
     flex-shrink: 0;
     margin-top: 1px;
 }

 .mob-sub-item span {
     display: block;
     font-size: 11px;
     color: #999;
     margin-top: 1px;
     font-weight: 400;
 }

 .mob-sub-item:hover {
     background: #fff3ee;
     color: var(--brand-navy);
 }

 .mob-sub-item:hover i {
     background: var(--brand-orange);
     color: #fff;
     border-color: var(--brand-orange);
 }

 @media (max-width:768px) {
     .hero-title {
         font-size: 1.8rem;
     }

     .mega-menu {
         min-width: 320px;
     }
 }



 /* Tablet */
 @media (max-width: 991.98px) {
     .btn-new-launch {
         font-size: 13px;
         padding: 10px 14px;
     }
 }

 /* Mobile */
 @media (max-width: 767.98px) {
     .btn-new-launch {
         display: inline-block;
         width: 100%;
         text-align: center;
         font-size: 14px;
         padding: 10px 15px;
         margin-top: 10px;
     }

     .chat-bubble {
         position: fixed;
         bottom: 28px;
         right: 10px;
         background: var(--brand-navy);
         color: #fff;
         border-radius: 50px;
         padding: 8px 20px;
         display: flex;
         align-items: center;
         gap: 8px;
         cursor: pointer;
         box-shadow: 0 4px 20px rgba(26, 39, 68, .35);
         z-index: none;
         font-size: 14px;
         font-weight: 600;
         transition: transform .2s;
     }
 }

 /* Sidebar Styles */
 .mobile-sidebar {
     position: fixed;
     top: 0;
     left: -300px;
     width: 300px;
     height: 100%;
     background: #fff;
     z-index: 9999;
     transition: left 0.3s ease;
     box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
     overflow-y: auto;
     padding: 10px;
 }


 .mobile-sidebar.open {
     left: 0;
 }

 .sidebar-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 9998;
     display: none;
 }

 .sidebar-overlay.show {
     display: block;
 }

 .sidebar-header {
     padding: 8px;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .close-sidebar {
     width: 36px;
     height: 36px;
     border: 1px solid #ddd;
     border-radius: 5px;
     background: #f7eae4;
     color: #333;
     font-size: 25px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .close-sidebar:hover {
     background: #e86a24;
     color: #fff;
 }

 .sidebar-menu {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 /* Mobile/Tablet Responsive */
 @media (max-width: 991px) {
     .menu-toggle-btn {
         display: block;
     }

     .main-navbar .d-none.d-lg-flex {
         display: none !important;
     }
 }