 :root {
     --black: #0a0a0b;
     --header-bg: rgba(9, 9, 10, 0.62);
     --header-bg-solid: rgba(8, 8, 9, 0.94);
     --gold: #c9a866;
     --gold-light: #e0c993;
     --gold-dark: #a1804f;
     --white: #ffffff;
     --gray: #c9c8c6;
     --gray-dim: #8f8d8a;
     --font-head: 'Hanken Grotesk', sans-serif;
     --font-body: 'Hanken Grotesk', sans-serif;
     --container: 1360px;
     --header-h: 82px;
     --header-h-mobile: 68px;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Hanken Grotesk', sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Hanken Grotesk", sans-serif;
     background: var(--black);
     color: var(--white);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

 body.menu-open {
     overflow: hidden;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: inherit;
     text-decoration: none;
 }

 ul {
     list-style: none;
 }

 button {
     cursor: pointer;
     background: none;
     border: none;
     color: inherit;
 }

 svg {
     display: block;
 }

 :focus-visible {
     outline: 2px solid var(--gold-light);
     outline-offset: 3px;
 }

 /* ================= HEADER ================= */
 .site-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1500;
     height: var(--header-h);
     display: flex;
     align-items: center;
     background: var(--header-bg);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(14px);
     /* border-bottom: 1px solid rgba(255, 255, 255, 0.07); */
     transition: 1s ease;
 }

 .site-header.scrolled {
     background: var(--header-bg-solid);
 }

 .header-inner {
     max-width: var(--container);
     margin: 0 auto;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding: 10 40px;
 }

 /* ---- Logo ---- */
 /* ---- Logo ---- */
 .logo {
     display: flex;
     align-items: center;
     flex-shrink: 0;
 }

 .logo-img {
     max-height: 65px;
     /* Adjust this value to make your logo bigger or smaller */
     width: auto;
     object-fit: contain;
 }



 /* ---- Desktop nav ---- */
 .main-nav {
     display: flex;
 }

 .nav-list {
     display: flex;
     align-items: center;
     gap: 32px;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     display: flex;
     align-items: center;
     gap: 6px;
     color: var(--white);
     font-size: 14px;
     font-weight: 300;
     letter-spacing: .7px;
     text-transform: uppercase;
     padding: 12px 1px;
     position: relative;
 }

 .nav-link .chev {
     color: var(--gray-dim);
     transition: transform .3s ease, color .3s ease;
 }

 .nav-item:hover .nav-link,
 .nav-item.open .nav-link {
     color: var(--gold-light);
 }

 .nav-item:hover .chev,
 .nav-item.open .chev {
     transform: rotate(180deg);
     color: var(--gold);
 }

 .nav-link.is-active {
     color: var(--gold);
 }

 .nav-link.is-active::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 4px;
     width: 100%;
     height: 2px;
     background: var(--gold);
     border-radius: 1px;
 }

 /* ---- Dropdown ---- */
 .dropdown {
     position: absolute;
     top: calc(100% + 24px);
     left: 50%;
     transform: translate(-50%, 10px);
     min-width: 225px;
     z-index: 20;
     background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
     border-radius: 6px;
     overflow: hidden;
     box-shadow: 0 30px 60px -10px rgba(0, 0, 0, .55);
     opacity: 0;
     visibility: hidden;
     transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
 }

 .nav-item.open .dropdown,
 .nav-item:hover .dropdown {
     opacity: 1;
     visibility: visible;
     transform: translate(-50%, 0);
 }

 .dropdown li a {
     display: block;
     padding: 13px 26px;
     font-size: 12.5px;
     font-weight: 700;
     letter-spacing: .9px;
     color: white;
     text-transform: uppercase;
     border-bottom: 1px solid rgba(0, 0, 0, .13);
     transition: background .2s ease, padding-left .2s ease;
 }

 .dropdown li:last-child a {
     border-bottom: none;
 }

 .dropdown li a:hover {
     background: rgba(0, 0, 0, .16);
     padding-left: 32px;
 }

 /* ---- CTA ---- */
 .cta {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     background: var(--gold);
     color: #161616;
     font-size: 13.5px;
     font-weight: 700;
     padding: 13px 22px 13px 26px;
     border-radius: 8px;
     flex-shrink: 0;
     white-space: nowrap;
     transition: .3s ease, transform .3s ease;
     font-family: "Hanken Grotesk", sans-serif;
 }

 .cta:hover {
     color: white;
     background: var(--gold-light);
     transform: translateY(-2px);
 }

 .cta svg {
     width: 14px;
     height: 14px;
     flex-shrink: 0;
 }

 /* ---- Hamburger ---- */
 .hamburger {
     display: none;
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     width: 34px;
     height: 34px;
     flex-shrink: 0;
     position: relative;
     z-index: 10;
 }

 .hamburger span {
     width: 100%;
     height: 2px;
     background: var(--white);
     border-radius: 2px;
     transition: transform .3s ease, opacity .3s ease, width .3s ease;
 }

 .hamburger.active span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
     width: 100%;
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
     width: 100%;
 }

 /* ================= MOBILE MENU ================= */
 .mobile-backdrop {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .6);
     z-index: 1300;
     opacity: 0;
     visibility: hidden;
     transition: opacity .35s ease, visibility .35s ease;
 }

 .mobile-backdrop.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: min(84%, 360px);
     height: 100%;
     background: #101010;
     z-index: 1400;
     padding: calc(var(--header-h) + 16px) 30px 40px;
     overflow-y: auto;
     transition: right .4s cubic-bezier(.4, 0, .2, 1);
     border-left: 1px solid rgba(255, 255, 255, .06);
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-nav-list {
     display: flex;
     flex-direction: column;
 }

 .mobile-nav-list>li {
     border-bottom: 1px solid rgba(255, 255, 255, .09);
 }

 .mobile-nav-link {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: #fff;
     font-size: 16px;
     font-weight: 300;
     font-family: "Hanken Grotesk", sans-serif;
     letter-spacing: .5px;
     text-transform: uppercase;
     padding: 17px 2px;
 }

 .mobile-nav-link.is-active {
     color: var(--gold);
 }

 .mobile-nav-link .chev {
     transition: transform .3s ease, color .3s ease;
     color: var(--gray-dim);
 }

 .mobile-item.open .mobile-nav-link .chev {
     transform: rotate(180deg);
     color: var(--gold);
 }

 .mobile-dropdown {
     max-height: 0;
     overflow: hidden;
     transition: max-height .4s ease;
 }

 .mobile-item.open .mobile-dropdown {
     max-height: 420px;
 }

 .mobile-dropdown li a {
     display: block;
     padding: 11px 14px 11px 6px;
     font-size: 13.5px;
     font-weight: 600;
     letter-spacing: .6px;
     color: var(--gold-light);
     text-transform: uppercase;
 }

 .mobile-dropdown li:first-child a {
     padding-top: 14px;
 }

 .mobile-cta {
     margin-top: 30px;
     justify-content: center;
     width: 100%;
 }

 /* ================= HERO ================= */
 .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: var(--header-h);
     background-image: url('..//assets/MSInteriorsAssets/HOMEPAGEIMAGES/hero\ banner.png');
     background-size: cover;
     background-position: center;
 }

 #hero {
     position: sticky;
     top: 0;
     z-index: 1;
     /* Keeps hero behind the glass section */
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     background:
         linear-gradient(90deg, rgba(3, 3, 3, .93) 0%, rgba(3, 3, 3, .74) 30%, rgba(3, 3, 3, .38) 62%, rgba(3, 3, 3, .14) 100%),
         linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, transparent 40%);
 }

 .hero-inner {
     position: relative;
     z-index: 2;
     max-width: var(--container);
     margin: 0 auto;
     width: 100%;
     padding: 0 40px;
 }

 .hero-content {
     max-width: 660px;
 }

 .hero-tag {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     color: var(--gray);
     font-size: 13.5px;
     letter-spacing: 1.2px;
     margin-bottom: 24px;
     text-transform: uppercase;
     font-weight: 500;
 }

 .hero-tag svg {
     color: var(--gold);
 }

 .hero-title {
     font-family: "Hanken Grotesk", sans-serif;
     font-size: clamp(2rem, 4.3vw, 3.55rem);
     font-weight: 700;
     line-height: 1.22;
     letter-spacing: -.5px;
     margin-bottom: 24px;
 }

 .hero-sub {
     font-size: clamp(15px, 1.5vw, 17px);
     color: var(--gray);
     line-height: 1.75;
     font-weight: 400;
     max-width: 530px;
 }

 /* ================= RESPONSIVE ================= */
 @media (max-width:1200px) {
     .header-inner {
         padding: 0 28px;
     }

     .nav-list {
         gap: 22px;
     }

     .hero-inner {
         padding: 0 28px;
     }
 }

 @media (max-width:992px) {

     .main-nav,
     .cta.desktop-cta {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .site-header {
         height: var(--header-h-mobile);
     }

     .hero {
         padding-top: var(--header-h-mobile);
     }

     .mobile-menu {
         padding-top: calc(var(--header-h-mobile) + 16px);
     }
 }

 @media (max-width:600px) {
     .header-inner {
         padding: 0 20px;
     }

     .logo-mark {
         width: 38px;
         height: 33px;
         font-size: 20px;
     }

     .logo-since {
         font-size: 8.2px;
         letter-spacing: 1.2px;
     }

     .hero-inner {
         padding: 0 22px;
     }

     .hero-title {
         font-size: clamp(1.65rem, 7vw, 2.3rem);
         margin-bottom: 18px;
     }

     .hero-sub {
         font-size: 14.5px;
         line-height: 1.7;
     }

     .hero-tag {
         font-size: 12.5px;
         margin-bottom: 18px;
     }

     .mobile-menu {
         width: 100%;
         padding-left: 26px;
         padding-right: 26px;
     }

     .logo-img {
         max-height: 50px;
         /* Adjust this value to make your logo bigger or smaller */
         width: auto;
         object-fit: contain;
     }

     .hero {
         position: relative;
         min-height: 100vh;
         display: flex;
         align-items: center;
         padding-top: var(--header-h);
         background-image: url('..//assets/MSInteriorsAssets/HOMEPAGEIMAGES/hero\ banner.png');
         background-size: cover;
         background-position: center;
     }

 }



 @media (prefers-reduced-motion:reduce) {
     * {
         transition-duration: 0.01ms !important;
         scroll-behavior: auto !important;
     }
 }

 /* SECTION 01 */
 .glass-section {
     position: relative;
     z-index: 2;
     /* Sits on top of sticky hero */
     min-height: 100vh;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(24px);
     -webkit-backdrop-filter: blur(24px);
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding: 10rem 1.5rem 2rem 1.5rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     box-sizing: border-box;
 }

 .glass-section * {
     box-sizing: border-box;
 }

 .glass-section .section-header {
     text-align: center;
     max-width: 800px;
     margin-bottom: 3.5rem;
 }

 .glass-section .section-header h2 {
     font-size: 2.5rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: #ffffff;
 }

 .glass-section .section-header p {
     font-size: 16px;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.85);
 }

 /* --- Desktop Grid Layout --- */
 .glass-section .grid-container {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.25rem;
     max-width: 1200px;
     width: 100%;
 }

 /* --- Base Card Styles --- */
 .glass-section .card {
     border-radius: 1.8rem;
     padding: 2rem 1.25rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     /* Entry Animation Initial State */
     opacity: 0;
     transform: translateY(30px);
 }

 .glass-section .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
 }

 .glass-section .card h3 {
     /* font-family: 'Cinzel', Georgia, serif; */
     font-size: 2.2rem;
     font-weight: 500;
     margin-bottom: 0.5rem;
     line-height: 1.15;
     color: #ffffff;
 }

 .glass-section .card p {
     font-size: 0.9rem;
     line-height: 1.45;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 400;
 }

 /* --- Card Custom Background Colors --- */
 .glass-section .card-tall {
     grid-row: span 2;
     background-color: #431f1c;
 }

 .glass-section .card-2 {
     background-color: #431f1c;
 }

 .glass-section .card-3 {
     background-color: #665b26;
 }

 .glass-section .card-4 {
     background-color: #665b26;
 }

 .glass-section .card-5 {
     background-color: #6e7a4a;
 }

 .glass-section .card-6 {
     background-color: #6e7a4a;
 }

 .glass-section .card-7 {
     background-color: #ff6b65;
     cursor: pointer;
     flex-direction: column;
     justify-content: center;
     gap: 4rem;
 }

 .glass-section .card-7 h3 {
     font-family: inherit;
     font-size: 1.1rem;
     font-weight: 500;
     margin-bottom: 0;
 }

 .glass-section .icon-circle {
     width: 44px;
     height: 44px;
     border: 1.5px solid #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 /* --- Mobile / Tablet Staggered Layout --- */
 @media (max-width: 900px) {
     .glass-section {
         padding: 3rem 1rem;
     }

     .glass-section .section-header h2 {
         font-size: 1.8rem;
     }

     .glass-section .section-header p {
         font-size: 0.95rem;
     }

     /* Stays 2 Columns on Mobile */
     .glass-section .grid-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 0.85rem;
     }

     .glass-section .card-tall {
         grid-row: span 2;
     }

     .glass-section .card {
         border-radius: 1.4rem;
         padding: 1.5rem 0.85rem;
     }

     .glass-section .card h3 {
         font-size: 1.5rem;
     }

     .glass-section .card p {
         font-size: 0.78rem;
     }

     /* Action Card Mobile Layout Fix */
     .glass-section .card-7 {
         flex-direction: row;
         justify-content: space-between;
         text-align: left;
         padding: 1.25rem 1.25rem;
     }

     .glass-section .card-7 h3 {
         font-size: 0.95rem;
         line-height: 1.3;
     }

     .glass-section .icon-circle {
         width: 38px;
         height: 38px;
     }
 }

 /* SECTION 02  */
 /* Main Full-Width Wrapper */
 .white-section-wrapper {
     position: relative;
     z-index: 10;
     /* Ensures it sits cleanly ABOVE any sticky hero/glass overlays */
     width: 100%;
     background-color: #ffffff !important;
     /* Pure solid white background */
     clear: both;
     margin: 0;
     padding: 0;
 }

 .white-section-wrapper * {
     box-sizing: border-box;
 }

 /* Section Inner Layout */
 .vision-section {
     width: 100%;
     background-color: #ffffff;
     padding: 6rem 1.5rem;
     color: #1a1a1a;
     background-image: url('..//assets/MSInteriorsAssets/HOMEPAGEIMAGES/SECTION02_BACKGROUNDIMG.jpg');
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
     /* Stretches the image to cover the entire container */
 }

 .vision-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;

 }

 /* --- Left Column: Image Stack --- */
 .vision-images-wrapper {
     position: relative;
     width: 100%;
     height: 480px;
     max-width: 540px;
     margin: 0 auto;
     /* Scroll Animation Initial State */
     opacity: 0;
     transform: translateY(30px);
 }

 .vision-images-wrapper .img-box {
     position: absolute;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
     background-color: #f5f5f5;
 }

 /* Image Zoom Effect on Hover */
 .vision-images-wrapper .img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .vision-images-wrapper .img-box:hover img {
     transform: scale(1.08);
 }

 /* Top-Left Image Position */
 .vision-images-wrapper .img-top {
     width: 62%;
     height: 62%;
     top: 0;
     left: 0;
     z-index: 1;
 }

 /* Bottom-Right Image Position */
 .vision-images-wrapper .img-bottom {
     width: 72%;
     height: 70%;
     bottom: 0;
     right: 0;
     z-index: 2;

 }

 /* --- Right Column: Content --- */
 .vision-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     /* Scroll Animation Initial State */
     opacity: 0;
     transform: translateY(30px);
 }

 .vision-title {
     font-size: 46px;
     font-weight: 700;
     line-height: 50.6px;
     color: #0d0d0d;
     margin-bottom: 1.25rem;
     letter-spacing: -0.92px;
 }

 .vision-title .highlight-text {
     color: #c09d5c;
     /* Gold color */
     font-weight: 600;
 }

 .vision-description {
     font-size: 1rem;
     line-height: 27.2px;
     color: #283132;
     margin-bottom: 2rem;
     word-spacing: 0px;
     /* font-weight: 400; */
 }

 /* --- Feature List --- */
 .vision-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 1.1rem;
 }

 .vision-list li {
     display: flex;
     align-items: center;
     gap: 0.85rem;
     font-size: 1rem;
     font-weight: 400;
     color: #283132;
 }

 .vision-list .check-icon {
     width: 24px;
     height: 24px;
     background-color: #c09d5c;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 4px 5px rgba(192, 157, 92, 0.3);
 }

 /* --- Mobile Responsiveness --- */
 @media (max-width: 992px) {
     .vision-section {
         padding: 4rem 1.25rem;
     }

     .vision-container {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .vision-images-wrapper {
         height: clamp(280px, 62vw, 400px);
         max-width: 100%;
     }

     .vision-images-wrapper .img-box {
         border-radius: 16px;
     }
 }

 @media (max-width: 480px) {

     .vision-title {
         font-size: 26px;
         font-weight: 700;
         line-height: 32.6px;
         color: #0d0d0d;
         margin-bottom: 0.9rem;
         letter-spacing: -0.92px;
     }

     .vision-description {
         font-size: 1rem;
         line-height: 1.6;
         word-spacing: 0px;
         margin-bottom: 1.5rem;
     }

     .vision-list li {
         font-size: 1rem;
     }

     .vision-list .check-icon {
         width: 22px;
         height: 22px;
     }
 }

 /*VIDEO SECTION 03 */
 .video-section-wrapper {
     position: relative;
     z-index: 10;
     width: 100%;
     background-color: #ffffff !important;
     padding: 5rem 1.5rem;
     clear: both;
 }

 .video-section-wrapper * {
     box-sizing: border-box;
 }

 .video-section {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 /* --- Header Styling --- */
 .video-header {
     text-align: center;
     max-width: 100%;
     margin-bottom: 2.5rem;
 }

 .video-header h2 {
     font-size: 40px;
     font-weight: 700;
     color: #0d0d0d;
     margin-bottom: 0.4rem;
     letter-spacing: -0.92px;
     line-height: 50.6px;
     width: 100%;
 }

 .video-header p {
     font-size: 1rem;
     line-height: 27.2px;
     width: 100%;
     color: #283132;
     /* font-weight: 400; */
 }

 /* --- Slider Container --- */
 .video-slider-container {
     position: relative;
     width: 100%;
     max-width: 1100px;
     aspect-ratio: 16 / 9;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
     background-color: #000000;
     touch-action: pan-y;
 }

 /* Video Track for Sliding Animation */
 .video-track {
     display: flex;
     width: 100%;
     height: 100%;
     transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .video-slide {
     min-width: 100%;
     height: 100%;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .video-slide video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 /* --- Dark Glass Capsule Navigation Buttons --- */
 .slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 48px;
     height: 96px;
     background: rgba(20, 20, 20, 0.65);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 20;
     /* Keep above controls */
     transition: background-color 0.3s ease, transform 0.2s ease;
 }

 .slider-btn:hover {
     background: rgba(0, 0, 0, 0.85);
     transform: translateY(-50%) scale(1.03);
 }

 .slider-btn:active {
     transform: translateY(-50%) scale(0.96);
 }

 .prev-btn {
     left: 20px;
 }

 .next-btn {
     right: 20px;
 }

 /* --- 100% Mobile & Worldwide Devices Responsiveness --- */
 @media (max-width: 900px) {
     .video-section-wrapper {
         padding: 3.5rem 1rem;
     }

     .video-header {
         margin-bottom: 2rem;
     }

     .video-header p {
         font-size: 0.95rem;
     }

     .video-slider-container {
         border-radius: 14px;
         aspect-ratio: 16 / 9;
         /* Keep standard ratio so native controls center properly */
     }

     /* Smaller nav capsules on mobile screens */
     .slider-btn {
         width: 38px;
         height: 76px;
         border-radius: 10px;
     }

     .prev-btn {
         left: 10px;
     }

     .next-btn {
         right: 10px;
     }

     .slider-btn svg {
         width: 20px;
         height: 20px;
     }
 }

 @media (max-width: 480px) {
     .video-header h2 {
         font-size: 26px;
         font-weight: 700;
         color: #0d0d0d;
         margin-bottom: 0.9rem;
         letter-spacing: -0.92px;
         line-height: 32.6px;
     }

     .video-header p {
         font-size: 1rem;
         width: 100%;
         text-align: center;
     }

     .video-slider-container {
         aspect-ratio: 16 / 10;
     }

     /* .slider-btn {
         width: 32px;
         height: 60px;
         border-radius: 8px;
     } */

     /* .prev-btn {
         left: 8px;
     } */

     /* .next-btn {
         right: 8px;
     } */

     /* .slider-btn svg {
         width: 16px;
         height: 16px;
     } */
 }

 /* ----------------------------------------------*/

 /* SERVICES SECTION 04 */
 .spaces-section-wrapper {
     position: relative;
     z-index: 10;
     width: 100%;
     background-color: #ffffff !important;
     padding: 5rem 1.5rem;
     clear: both;
 }

 .spaces-section-wrapper * {
     box-sizing: border-box;
 }

 .spaces-section {
     max-width: 1240px;
     margin: 0 auto;
 }

 /* --- Header Styling --- */
 .spaces-header {
     text-align: center;
     max-width: 820px;
     margin: 0 auto 3rem auto;
 }

 .spaces-header h2 {
     font-size: 46px;
     font-weight: 700;
     color: #0d0d0d;
     margin-bottom: 0.6rem;
     letter-spacing: -0.92px;

 }

 .spaces-header p {
     font-size: 1rem;
     line-height: 27.2px;
     color: #283132;
     margin-bottom: 1rem;
     word-spacing: 0px;
 }

 /* --- Grid Layout (Desktop & Tablet) --- */
 .spaces-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-template-rows: repeat(2, 280px);
     gap: 5px;
     width: 100%;
 }

 /* Link Card Base Styling */
 .space-card {
     position: relative;
     display: block;
     width: 100%;
     height: 100%;
     border-radius: 14px;
     overflow: hidden;
     background-color: #1a1a1a;
     text-decoration: none;
     cursor: pointer;
 }

 /* Left Tall Card Spanning 2 Rows */
 .space-card-tall {
     grid-column: 1 / 2;
     grid-row: 1 / 3;
 }

 /* Card Image */
 .space-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .space-card:hover img {
     transform: scale(1.06);
 }

 /* ENHANCED: Light-to-Dark Bottom-to-Top Gradient Overlay */
 .space-card-overlay {
     position: absolute;
     inset: 0;
     /* Smooth multi-stop gradient starting dark at bottom to transparent at top */
     background: linear-gradient(to top,
             rgba(0, 0, 0, 0.75) 0%,
             rgba(0, 0, 0, 0.45) 30%,
             rgba(0, 0, 0, 0.15) 65%,
             rgba(0, 0, 0, 0) 100%);
     display: flex;
     align-items: flex-end;
     padding: 1.25rem 1.25rem;
     z-index: 2;
     transition: background 0.3s ease;
 }

 /* Subtle darkening on hover for active feedback */
 .space-card:hover .space-card-overlay {
     background: linear-gradient(to top,
             rgba(0, 0, 0, 0.85) 0%,
             rgba(0, 0, 0, 0.55) 35%,
             rgba(0, 0, 0, 0.2) 70%,
             rgba(0, 0, 0, 0) 100%);
 }

 .space-card-overlay h3 {
     color: #ffffff;
     font-size: 0.8rem;
     font-weight: 300;
     letter-spacing: 0.8px;
     text-transform: uppercase;
     margin: 0;
     line-height: 1.3;
     /* Soft text-shadow for crisp legibility across light backgrounds */
     text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
 }

 /* =========================================================
   TABLET RESPONSIVENESS (Maintain Grid Layout)
   ========================================================= */
 @media (max-width: 1024px) and (min-width: 769px) {
     .spaces-grid {
         grid-template-rows: repeat(2, 220px);
         gap: 12px;
     }

     .space-card-overlay {
         padding: 1rem;
     }

     .space-card-overlay h3 {
         font-size: 0.85rem;
     }
 }

 /* =========================================================
   MOBILE RESPONSIVENESS (Horizontal Scroll Carousel)
   ========================================================= */
 @media (max-width: 768px) {
     .spaces-section-wrapper {
         padding: 3.5rem 1rem;
     }

     .spaces-header {
         margin-bottom: 2rem;
     }

     .spaces-header p {
         font-size: 0.95rem;
     }

     /* Convert Grid to Horizontal Scroll */
     .spaces-grid {
         display: flex;
         overflow-x: auto;
         scroll-snap-type: x mandatory;
         gap: 14px;
         padding-bottom: 1rem;
         padding-left: 0.25rem;
         padding-right: 0.25rem;
         -webkit-overflow-scrolling: touch;
         scrollbar-width: none;
         /* Hide scrollbar Firefox */
     }

     /* Hide Chrome/Safari scrollbar */
     .spaces-grid::-webkit-scrollbar {
         display: none;
     }

     /* Reset Cards for Flex Horizontal Items */
     .space-card {
         flex: 0 0 82vw;
         max-width: 320px;
         height: 380px;
         scroll-snap-align: start;
         border-radius: 12px;
     }

     /* Reset Tall Card Grid Placement */
     .space-card-tall {
         grid-column: auto;
         grid-row: auto;
     }

     .space-card-overlay h3 {
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .space-card {
         flex: 0 0 85vw;
         height: 530px;
     }

     .spaces-header h2 {
         font-size: 26px;
         font-weight: 700;
         color: #0d0d0d;
         margin-bottom: 0.9rem;
         letter-spacing: -0.92px;

     }

     .spaces-header p {
         font-size: 1rem;
         line-height: 1.6;
         color: #283132;
         margin-bottom: 1rem;
         word-spacing: 0px;
     }
 }

 /* LOGOS SECTION */
 .clients-section-wrapper {
     position: relative;
     z-index: 10;
     width: 100%;
     background-color: #ffffff !important;
     padding: 5rem 1.5rem;
     overflow: hidden;
     /* Prevents unwanted horizontal body scrollbars */
     clear: both;
 }

 .clients-section-wrapper * {
     box-sizing: border-box;
 }

 .clients-section {
     max-width: 1240px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .clients-block {
     width: 100%;
     text-align: center;
 }

 /* --- Block Titles --- */
 .clients-title {
     font-size: 26px;
     font-weight: 700;
     color: #000000;
     margin-bottom: 2.5rem;
     letter-spacing: -0.5px;
     line-height: 1.2;
 }

 /* --- Marquee Container with Side Gradient Mask --- */
 .marquee-container {
     position: relative;
     width: 100%;
     overflow: hidden;
     /* Creates smooth edge fading effect */
     -webkit-mask-image: linear-gradient(90deg,
             transparent 0%,
             #000000 12%,
             #000000 88%,
             transparent 100%);
     mask-image: linear-gradient(90deg,
             transparent 0%,
             #000000 12%,
             #000000 88%,
             transparent 100%);
 }

 /* --- Moving Marquee Tracks --- */
 .marquee-track {
     display: flex;
     align-items: center;
     gap: 3.5rem;
     width: max-content;
     will-change: transform;
 }

 .track-left {
     animation: marqueeLeft 28s linear infinite;
 }

 .track-right {
     animation: marqueeRight 28s linear infinite;
 }

 /* Pause Marquee on Hover */
 .marquee-container:hover .marquee-track {
     animation-play-state: paused;
 }

 /* --- Logo Cards & Images --- */
 .client-card {
     display: flex;
     align-items: center;
     justify-content: center;
     min-width: 170px;
     height: 75px;
     padding: 10px;
     cursor: pointer;
 }

 .client-card img {
     /* max-width: 250px;
    max-height: 90px; */
     width: 150px;
     height: 95px;
     object-fit: fill;
     /* Keeps original aspect ratio intact */
     display: block;
     transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
 }

 .client-card:hover img {
     transform: scale(1.08);
     filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
 }

 /* --- Keyframe Animations --- */
 @keyframes marqueeLeft {
     0% {
         transform: translateX(0%);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 @keyframes marqueeRight {
     0% {
         transform: translateX(-50%);
     }

     100% {
         transform: translateX(0%);
     }
 }

 /* =========================================================
   RESPONSIVENESS (100% Mobile & Tablet Compatible)
   ========================================================= */
 @media (max-width: 900px) {
     .clients-section-wrapper {
         padding: 3.5rem 1rem;
     }

     .clients-section {
         gap: 2rem;
     }

     .clients-title {
         margin-bottom: 1.75rem;
     }

     .marquee-track {
         gap: 2.25rem;
     }

     .client-card {
         min-width: 130px;
         height: 60px;
     }

     .client-card img {
         width: 140px;
         height: 80px;
     }
 }

 @media (max-width: 480px) {
     .clients-section-wrapper {
         padding: 2.5rem 0.75rem;
     }

     .clients-section {
         gap: 0rem;
     }

     .clients-title {
         font-size: 1.5rem;
     }

     .marquee-track {
         gap: 1.75rem;
     }

     .client-card {
         min-width: 110px;
         height: 80px;
     }

     .client-card img {
         width: 130px;
         height: 75px;
     }
 }

 /* FORM SECTION */
 .contact-section-wrapper {
     position: relative;
     z-index: 10;
     width: 100%;
     background-color: #ffffff !important;
     padding: 5rem 1.5rem;
     clear: both;
 }

 .contact-section-wrapper * {
     box-sizing: border-box;
 }

 .contact-section {
     max-width: 1240px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 4rem;
     align-items: center;
 }

 /* --- Left Column Styling --- */
 .contact-info-col {
     display: flex;
     flex-direction: column;
 }

 .contact-header h2 {
     font-size: 38px;
     font-weight: 700;
     color: #0d0d0d;
     margin-bottom: 0.85rem;
     letter-spacing: -0.92px;
 }

 .contact-header p {
     font-size: 1rem;
     line-height: 1.6;
     color: #283132;
     margin-bottom: 2rem;
     max-width: 500px;
 }

 .contact-image-container {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .contact-image-container img {
     width: 100%;
     height: auto;
     max-width: 540px;
     object-fit: contain;
     display: block;
     filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
     transition: transform 0.4s ease;
 }

 .contact-image-container:hover img {
     transform: translateY(-4px);
 }

 /* --- Right Column / Form Styling --- */
 .contact-form-col {
     width: 100%;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
     width: 100%;
 }

 .form-group {
     width: 100%;
 }

 /* Input & Textarea Fields */
 .contact-form input,
 .contact-form textarea {
     width: 100%;
     background-color: #f3f4f7;
     border: 1px solid transparent;
     border-radius: 10px;
     padding: 1.1rem 1.25rem;
     font-size: 1rem;
     font-family: "Hanken Grotesk", sans-serif;
     color: #1a1a1a;
     outline: none;
     transition: all 0.25s ease;
 }

 /* Placeholder Color Matching */
 .contact-form input::placeholder,
 .contact-form textarea::placeholder {
     color: #9aa1b1;
     font-weight: 400;
 }

 /* Focus State */
 .contact-form input:focus,
 .contact-form textarea:focus {
     background-color: #ffffff;
     border-color: #c0a471;
     box-shadow: 0 0 0 4px rgba(192, 164, 113, 0.15);
 }

 /* Prevent accidental resize break in textareas */
 .contact-form textarea {
     resize: vertical;
     min-height: 140px;
 }

 /* Gold/Warm Tone Submit Button */
 .submit-btn {
     width: 100%;
     background-color: #c0a471;
     color: #ffffff;
     border: none;
     border-radius: 10px;
     padding: 1.1rem;
     font-size: 1.05rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
     box-shadow: 0 4px 12px rgba(192, 164, 113, 0.25);
 }

 .submit-btn:hover {
     background-color: #b09360;
     transform: translateY(-2px);
     box-shadow: 0 6px 16px rgba(192, 164, 113, 0.35);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 /* =========================================================
   RESPONSIVENESS (All Mobiles & Tablets)
   ========================================================= */

 @media (max-width: 992px) {
     .contact-section-wrapper {
         padding: 4rem 1.25rem;
     }

     .contact-section {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .contact-header p {
         max-width: 100%;
     }

     .contact-image-container img {
         max-width: 420px;
         margin: 0 auto;
     }
 }

 @media (max-width: 576px) {
     .contact-section-wrapper {
         padding: 3rem 1rem;
     }

     .contact-form {
         gap: 1rem;
     }

     .contact-form input,
     .contact-form textarea {
         padding: 0.95rem 1rem;
         font-size: 0.95rem;
         border-radius: 8px;
     }

     .submit-btn {
         padding: 0.95rem;
         font-size: 1rem;
         border-radius: 8px;
     }

     .contact-header h2 {
         font-size: 28px;
         font-weight: 700;
         color: #0d0d0d;
         margin-bottom: 0.85rem;
         letter-spacing: -0.92px;
     }

     .contact-header p {
         font-size: 1rem;
         line-height: 1.6;
         word-spacing: 0px;
     }
 }

 .form-status-msg {
     display: none;
     margin-top: 1rem;
     padding: 0.85rem 1rem;
     border-radius: 8px;
     font-size: 0.95rem;
     text-align: center;
     font-weight: 500;
 }

 .form-status-msg.success {
     background-color: #e8f5e9;
     color: #2e7d32;
     border: 1px solid #c8e6c9;
 }

 .form-status-msg.error {
     background-color: #ffebee;
     color: #c62828;
     border: 1px solid #ffcdd2;
 }

 /* TESTIMONAILS SECTION */
 .testimonials-section-wrapper {
     position: relative;
     z-index: 20;
     /* Elevates section above any sticky header overlap issues */
     isolation: isolate;
     /* Keeps backdrop filter/blur isolated locally */
     width: 100%;
     min-height: 100vh;
     padding: 5rem 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     clear: both;
     overflow: hidden;
     /* Cleanly masks the moving parallax image layer */
     background-color: #121214;
 }

 /* --- Oversized Parallax Motion Background Layer --- */
 .testimonials-bg {
     position: absolute;
     top: -30%;
     /* Generous offset to permit deep vertical travel */
     left: 0;
     width: 100%;
     height: 160%;
     /* Extra height buffer prevents revealing blank edges */
     background-image: url('..//assets/MSInteriorsAssets/HOMEPAGEIMAGES/testi\ background.png');
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     z-index: -2;
     will-change: transform;
     /* Hardware acceleration for 60fps performance */
     transition: transform 0.05s linear;
 }

 /* --- Dark Atmosphere Overlay --- */
 .testimonials-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 14, 12, 0.65);
     z-index: -1;
 }

 /* --- Content Layout & Grid Container --- */
 .testimonials-container {
     position: relative;
     z-index: 2;
     max-width: 1140px;
     width: 100%;
     margin: 0 auto;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.75rem;
     align-items: stretch;
 }

 /* --- Glassmorphic Soft White Cards --- */
 .testimonial-card {
     background: rgba(248, 249, 250, 0.94);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 22px;
     padding: 2.25rem;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
     border: 1px solid rgba(255, 255, 255, 0.6);
     transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
 }

 .google-icon {
     margin-bottom: 1.25rem;
     display: flex;
     align-items: center;
 }

 .google-icon svg {
     display: block;
 }

 .review-text {
     font-size: 0.92rem;
     line-height: 1.6;
     color: #333333;
     font-weight: 400;
     margin-bottom: 2rem;
     flex-grow: 1;
 }

 .author-profile {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-top: auto;
 }

 .avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     object-fit: cover;
     border: 1px solid rgba(0, 0, 0, 0.1);
     flex-shrink: 0;
 }

 .author-details {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .author-name {
     font-size: 1.02rem;
     font-weight: 600;
     color: #1a1a1a;
     margin: 0;
 }

 .author-location {
     font-size: 0.85rem;
     color: #666666;
     font-weight: 400;
 }

 /* =========================================================
   RESPONSIVENESS (Mobile & Tablet Devices)
   ========================================================= */

 @media (max-width: 992px) {
     .testimonials-section-wrapper {
         padding: 4rem 1.25rem;
     }

     .testimonials-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .testimonial-card {
         padding: 1.85rem;
     }
 }

 @media (max-width: 576px) {
     .testimonials-section-wrapper {
         padding: 2.75rem 0.85rem;
     }

     .testimonial-card {
         padding: 1.5rem;
         border-radius: 18px;
     }

     .google-icon {
         margin-bottom: 1rem;
     }

     .google-icon svg {
         width: 30px;
         height: 30px;
     }

     .review-text {
         font-size: 0.875rem;
         line-height: 1.55;
         margin-bottom: 1.5rem;
     }

     .avatar {
         width: 42px;
         height: 42px;
     }

     .author-name {
         font-size: 0.95rem;
     }

     .author-location {
         font-size: 0.8rem;
     }
 }

 /* FAQS SECTION */
 .faq-section-wrapper {
     position: relative;
     /* Establishes a new positioning context */
     z-index: 30;
     /* Sits HIGHER than Testimonials (z-index: 20) */
     isolation: isolate;
     /* Isolates stacking context from surrounding layers */
     width: 100%;
     padding: 5rem 2rem;
     background-color: #ffffff;
     display: flex;
     justify-content: center;
     align-items: center;
     clear: both;
 }

 .faq-container {
     position: relative;
     z-index: 2;
     max-width: 1240px;
     width: 100%;
     margin: 0 auto;
 }

 /* Grid Layout: 2 Columns on Desktop */
 .faq-grid {
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 3.5rem;
     align-items: center;
 }

 /* Header Styling */
 .faq-header {
     margin-bottom: 2.5rem;
 }

 .faq-title {
     font-size: 32px;
     font-weight: 700;
     color: #0d0d0d;
     letter-spacing: -0.92pex;
     margin-bottom: 0.5rem;
 }

 .faq-subtitle {
     font-size: 1rem;
     color: #283132;
 }

 /* Accordion List */
 .faq-accordion-list {
     display: flex;
     flex-direction: column;
     border-top: 1px solid #eaeaea;
 }

 /* Accordion Item */
 .faq-item {
     position: relative;
     z-index: 3;
     border-bottom: 1px solid #eaeaea;
     transition: background-color 0.2s ease;
 }

 /* Question Trigger Button */
 .faq-question {
     position: relative;
     z-index: 4;
     width: 100%;
     background: none;
     border: none;
     outline: none;
     padding: 1.5rem 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     text-align: left;
     cursor: pointer;
     gap: 1.25rem;
     color: #224843;
     /* Deep green tone matching the reference UI */
     font-size: 1.125rem;
     font-weight: 500;
     line-height: 1.4;
     transition: color 0.25s ease;
 }

 .faq-question:hover {
     color: #122825;
 }

 /* Circular Plus/Minus Toggle Icon */
 .faq-icon-badge {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background-color: #f1f5f4;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
     pointer-events: none;
     /* Passes click through directly to button element */
 }

 .faq-icon-badge svg {
     width: 14px;
     height: 14px;
     fill: #482f22;
     transition: transform 0.3s ease, fill 0.3s ease;
 }

 /* Active Accordion State */
 .faq-item.active .faq-icon-badge {
     background-color: #363635;
     transform: rotate(45deg);
     /* Rotates plus icon into an 'X' */
 }

 .faq-item.active .faq-icon-badge svg {
     fill: #ffffff;
 }

 .faq-item.active .faq-question {
     color: #281d12;
     font-weight: 600;
 }

 /* Answer Content Container (CSS Grid Animation) */
 .faq-answer-wrapper {
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .faq-item.active .faq-answer-wrapper {
     grid-template-rows: 1fr;
 }

 .faq-answer-content {
     overflow: hidden;
 }

 .faq-answer-text {
     font-size: 0.975rem;
     line-height: 1.65;
     color: #555555;
     padding-bottom: 1.5rem;
     padding-right: 2rem;
     font-weight: 400;
 }

 /* Right Column - Furniture Showcase Image */
 .faq-image-wrapper {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .faq-image-wrapper img {
     width: 100%;
     height: auto;
     max-width: 620px;
     object-fit: contain;
     filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
     transition: transform 0.4s ease;
 }

 .faq-image-wrapper img:hover {
     transform: translateY(-4px);
 }

 /* =========================================================
   100% RESPONSIVE BREAKPOINTS (Mobile & Tablet)
   ========================================================= */

 /* Tablet View (Max 992px) */
 @media (max-width: 992px) {
     .faq-section-wrapper {
         padding: 4rem 1.25rem;
     }

     .faq-grid {
         grid-template-columns: 1fr;
         /* Stack into single column */
         gap: 3rem;
     }

     .faq-title {
         font-size: 2.1rem;
     }

     .faq-image-wrapper {
         order: 2;
         /* Move image under the FAQs on tablets */
     }

     .faq-image-wrapper img {
         max-width: 520px;
     }
 }

 /* Mobile View (Max 576px) */
 @media (max-width: 576px) {
     .faq-section-wrapper {
         padding: 3rem 1rem;
     }

     .faq-header {
         margin-bottom: 1.75rem;
     }

     .faq-title {
         font-size: 24px;
         font-weight: 700;
         color: #0d0d0d;
         letter-spacing: -0.92pex;
         margin-bottom: 0.5rem;
     }

     .faq-subtitle {
         font-size: 1rem;
         color: #283132;
     }

     .faq-question {
         padding: 1.2rem 0;
         font-size: 1rem;
     }

     .faq-icon-badge {
         width: 32px;
         height: 32px;
     }

     .faq-icon-badge svg {
         width: 12px;
         height: 12px;
     }

     .faq-answer-text {
         font-size: 0.9rem;
         padding-bottom: 1.25rem;
         padding-right: 0.5rem;
     }

     .faq-image-wrapper img {
         max-width: 100%;
     }
 }

 /* FOOTER */
 .footer-section-wrapper {
     position: relative;
     z-index: 40;
     /* Sits cleanly above FAQ section */
     isolation: isolate;
     width: 100%;
     background-color: #0b0b0b;
     /* Matte black background */
     color: #ffffff;
     padding: 4.5rem 2rem 2rem;
     clear: both;
 }

 .footer-container {
     max-width: 1240px;
     width: 100%;
     margin: 0 auto;
 }

 /* Footer Layout Grid */
 .footer-grid {
     display: grid;
     grid-template-columns: 2.2fr 1fr 1fr;
     gap: 4rem;
     align-items: start;
 }

 /* Brand Column & Logo */
 .footer-brand-col {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     max-width: 440px;
 }

 .footer-logo-link {
     display: inline-block;
     max-width: 150px;
     width: 100%;
     height: auto;
     transition: opacity 0.25s ease;
 }

 .footer-logo-link:hover {
     opacity: 0.88;
 }

 .footer-logo-img {
     width: 100%;
     height: auto;
     max-height: 80px;
     display: block;
     object-fit: contain;
 }

 .footer-about-text {
     font-size: 0.95rem;
     line-height: 1.65;
     color: #cccccc;
     font-weight: 300;
     margin: 0;
 }

 /* Social Icons Styling */
 .footer-social-icons {
     display: flex;
     align-items: center;
     gap: 1.15rem;
     margin-top: 0.25rem;
 }

 .social-icon-btn {
     color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
     transition: transform 0.25s ease, color 0.25s ease;
     text-decoration: none;
 }

 .social-icon-btn:hover {
     color: #D4AF37;
     /* Metallic Gold Accent */
     transform: translateY(-3px);
 }

 /* Navigation Columns */
 .footer-nav-col {
     display: flex;
     flex-direction: column;
 }

 .footer-heading {
     font-size: 0.9rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: #ffffff;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
 }

 .footer-menu {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 1.1rem;
 }

 .footer-menu li a {
     color: #e0e0e0;
     text-decoration: none;
     font-size: 0.85rem;
     font-weight: 400;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     transition: color 0.25s ease, padding-left 0.25s ease;
     display: inline-block;
 }

 .footer-menu li a:hover {
     color: #D4AF37;
     padding-left: 4px;
 }

 /* Footer Bottom Bar & Divider */
 .footer-bottom {
     margin-top: 4rem;
     width: 100%;
     text-align: center;
 }

 .footer-divider {
     border: 0;
     height: 1px;
     background: rgba(255, 255, 255, 0.18);
     margin-bottom: 1.75rem;
     width: 100%;
 }

 .copyright-text {
     font-size: 0.85rem;
     color: #888888;
     font-weight: 300;
     letter-spacing: 0.02em;
     margin: 0;
 }


 /* ==========================================================================
   3. 100% RESPONSIVE BREAKPOINTS (ALL DEVICES & MOBILES)
   ========================================================================== */

 /* Tablet Devices (< 992px) */
 @media (max-width: 992px) {

     /* FAQ Section Tablet Adjustments */
     .faq-section-wrapper {
         padding: 4rem 1.25rem;
     }

     .faq-grid {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .faq-title {
         font-size: 2.1rem;
     }

     .faq-image-wrapper {
         order: 2;
     }

     .faq-image-wrapper img {
         max-width: 520px;
     }

     /* Footer Section Tablet Adjustments */
     .footer-section-wrapper {
         padding: 3.5rem 1.5rem 1.75rem;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 3rem 2rem;
     }

     .footer-brand-col {
         grid-column: 1 / -1;
         max-width: 100%;
     }

     .footer-bottom {
         margin-top: 3rem;
     }
 }

 /* Mobile Devices (< 576px) */
 @media (max-width: 576px) {

     /* FAQ Section Mobile Adjustments */
     .faq-section-wrapper {
         padding: 3rem 1rem;
     }

     .faq-header {
         margin-bottom: 1.75rem;
     }

     .faq-title {
         font-size: 1.75rem;
     }

     .faq-subtitle {
         font-size: 0.95rem;
     }

     .faq-question {
         padding: 1.2rem 0;
         font-size: 1rem;
     }

     .faq-icon-badge {
         width: 32px;
         height: 32px;
     }

     .faq-icon-badge svg {
         width: 12px;
         height: 12px;
     }

     .faq-answer-text {
         font-size: 0.9rem;
         padding-bottom: 1.25rem;
         padding-right: 0.5rem;
     }

     .faq-image-wrapper img {
         max-width: 100%;
     }

     /* Footer Section Mobile Adjustments */
     .footer-section-wrapper {
         padding: 3rem 1.25rem 1.5rem;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

     .footer-brand-col {
         gap: 1.25rem;
     }

     .footer-logo-link {
         max-width: 130px;
     }

     .footer-about-text {
         font-size: 0.875rem;
         line-height: 1.6;
     }

     .footer-heading {
         margin-bottom: 1.15rem;
         font-size: 0.85rem;
     }

     .footer-menu {
         gap: 0.95rem;
     }

     .footer-menu li a {
         font-size: 0.825rem;
         padding: 4px 0;
         /* Expanded touch targets for mobile fingers */
     }

     .footer-social-icons {
         gap: 1.5rem;
     }

     .social-icon-btn {
         width: 28px;
         height: 28px;
     }

     .footer-bottom {
         margin-top: 2.5rem;
     }

     .copyright-text {
         font-size: 0.78rem;
     }
 }

 /* FIXED SOCIAL MEDIA ICONS */
 .floating-widget-wrapper {
     position: fixed;
     bottom: 25px;
     right: 20px;
     z-index: 99999;
     display: flex;
     flex-direction: column;
     gap: 12px;
     align-items: center;
 }

 /* Base Floating Circle */
 .floating-btn {
     position: relative;
     width: 52px;
     height: 52px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
     transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
     -webkit-tap-highlight-color: transparent;
 }

 .floating-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
 }

 .floating-btn:active {
     transform: scale(0.95);
 }

 /* WhatsApp Styling */
 .whatsapp-btn {
     background-color: #25D366;
 }

 /* Instagram Gradient Styling */
 .instagram-btn {
     background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
 }

 /* Red Badge for WhatsApp */
 .notification-badge {
     position: absolute;
     top: -2px;
     left: -2px;
     background-color: #ff3b30;
     color: #ffffff;
     font-size: 11px;
     font-weight: 700;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 2px solid #ffffff;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
     line-height: 1;
 }

 /* Mobile Devices Sizing */
 @media (max-width: 576px) {
     .floating-widget-wrapper {
         bottom: 18px;
         right: 14px;
         gap: 10px;
     }

     .floating-btn {
         width: 46px;
         height: 46px;
     }

     .floating-btn svg {
         width: 22px;
         height: 22px;
     }

     .notification-badge {
         width: 18px;
         height: 18px;
         font-size: 10px;
         top: -2px;
         left: -2px;
     }
 }