
            :root {
                --theme-dark: #0f1a2c;
                --theme-gold: #c8a96a;
                --theme-gold-soft: rgba(200, 169, 106, 0.14);
                --theme-white: #ffffff;
                --theme-text: rgba(255, 255, 255, 0.78);
                --theme-border: rgba(255, 255, 255, 0.12);
                --theme-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
                --theme-shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.18);
                --header-height: 92px;
            }

            * {
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                margin: 0;
                font-family: "Inter", sans-serif;
                color: var(--theme-white);
                background-color: var(--theme-dark);
                overflow-x: hidden;
            }

            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            .brand-text,
            .nav-link,
            .btn,
            .hero-label,
            .form-title,
            .footer-brand {
                font-family: "Philosopher", serif;
            }

            p,
            li,
            span,
            label,
            input,
            textarea,
            select,
            small {
                font-family: "Inter", sans-serif;
            }

            a {
                text-decoration: none;
                color: inherit;
            }

            img {
                max-width: 100%;
                display: block;
            }

            .site-header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 1050;
                transition: all 0.35s ease;
                padding: 18px 0;
                background: linear-gradient(
                    180deg,
                    rgba(15, 26, 44, 0.82) 0%,
                    rgba(15, 26, 44, 0.38) 60%,
                    rgba(15, 26, 44, 0) 100%
                );
            }

            .site-header.is-sticky {
                padding: 10px 0;
                background: rgba(15, 26, 44, 0.94);
                backdrop-filter: blur(14px);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .header-shell {
                border: 1px solid rgba(255, 255, 255, 0.08);
                background: rgba(255, 255, 255, 0.04);
                backdrop-filter: blur(10px);
                padding: 14px 18px;
                transition: all 0.35s ease;
            }

            .site-header.is-sticky .header-shell {
                background: transparent;
                border-color: transparent;
                padding: 8px 0;
            }

            .navbar {
                padding: 0;
            }

            .navbar-brand {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                padding: 0;
                margin: 0;
            }

            .navbar-brand img {
                height: 38px;
                width: auto;
                object-fit: contain;
            }

            .brand-text {
                color: var(--theme-white);
                font-size: 1rem;
                line-height: 1.1;
                letter-spacing: 0.6px;
                text-transform: uppercase;
            }

            .brand-text span {
                display: block;
                font-family: "Inter", sans-serif;
                font-size: 0.72rem;
                letter-spacing: 2.2px;
                color: rgba(255, 255, 255, 0.58);
                margin-top: 4px;
            }

            .navbar-nav {
                gap: 8px;
            }

            .nav-link {
                position: relative;
                color: rgba(255, 255, 255, 0.9);
                font-size: 1rem;
                padding: 10px 16px !important;
                transition: color 0.3s ease;
            }

            .nav-link::after {
                content: "";
                position: absolute;
                left: 16px;
                bottom: 5px;
                width: calc(100% - 32px);
                height: 1px;
                background: var(--theme-gold);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }

            .nav-link:hover,
            .nav-link:focus,
            .nav-link.active {
                color: var(--theme-gold);
            }

            .nav-link:hover::after,
            .nav-link:focus::after,
            .nav-link.active::after {
                transform: scaleX(1);
            }

            .header-cta {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 12px 18px;
                color: var(--theme-dark);
                background: var(--theme-gold);
                border: 1px solid var(--theme-gold);
                font-size: 0.95rem;
                line-height: 1;
                transition: all 0.3s ease;
                white-space: nowrap;
                box-shadow: var(--theme-shadow-soft);
            }

            .header-cta:hover {
                background: transparent;
                color: var(--theme-gold);
            }

            .navbar-toggler {
                border: 1px solid rgba(200, 169, 106, 0.6);
                background: linear-gradient(135deg, rgba(200, 169, 106, 0.22), rgba(200, 169, 106, 0.08));
                width: 52px;
                height: 52px;
                padding: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
            }

            .navbar-toggler:focus {
                box-shadow: 0 0 0 0.2rem rgba(200, 169, 106, 0.2);
            }

            .navbar-toggler-icon {
                background-image: none;
                width: auto;
                height: auto;
                color: var(--theme-gold);
                font-size: 1.4rem;
                line-height: 1;
            }

            .mobile-panel {
                margin-top: 16px;
                background: rgba(9, 16, 28, 0.98);
                border: 1px solid rgba(255, 255, 255, 0.08);
                padding: 14px;
                box-shadow: var(--theme-shadow);
            }

            .mobile-panel .navbar-nav {
                gap: 0;
            }

            .mobile-panel .nav-link {
                padding: 16px 14px !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .mobile-panel .nav-link:last-child {
                border-bottom: 0;
            }

            .hero-section {
                position: relative;
                min-height: 100vh;
                display: flex;
                align-items: center;
                padding: calc(var(--header-height) + 50px) 0 80px;
                background:
                    linear-gradient(
                        90deg,
                        rgba(10, 18, 31, 0.9) 0%,
                        rgba(10, 18, 31, 0.78) 38%,
                        rgba(10, 18, 31, 0.62) 58%,
                        rgba(10, 18, 31, 0.85) 100%
                    ),
                    linear-gradient(180deg, rgba(15, 26, 44, 0.18) 0%, rgba(15, 26, 44, 0.72) 100%),
                    url("/assets/img/hero-bgf.jpg?aa") center center / cover no-repeat;
                overflow: hidden;
            }

            .hero-section::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(circle at 15% 20%, rgba(200, 169, 106, 0.16), transparent 28%),
                    radial-gradient(circle at 78% 18%, rgba(200, 169, 106, 0.12), transparent 24%),
                    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 25%);
                pointer-events: none;
            }

            .hero-section::after {
                content: "";
                position: absolute;
                inset: auto 0 0 0;
                height: 140px;
                background: linear-gradient(180deg, rgba(15, 26, 44, 0) 0%, rgba(15, 26, 44, 1) 100%);
                pointer-events: none;
            }

            .hero-content,
            .hero-form-wrap {
                position: relative;
                z-index: 2;
            }

            .hero-label {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                color: var(--theme-gold);
                font-size: 0.95rem;
                letter-spacing: 1.8px;
                text-transform: uppercase;
                margin-bottom: 18px;
            }

            .hero-label::before {
                content: "";
                width: 42px;
                height: 1px;
                background: var(--theme-gold);
            }

            .hero-title {
                font-size: clamp(2.8rem, 5vw, 5.5rem);
                line-height: 0.96;
                color: var(--theme-white);
                margin-bottom: 20px;
                max-width: 760px;
            }

            .hero-title .highlight {
                color: var(--theme-gold);
                display: inline-block;
            }

            .hero-tagline {
                font-size: clamp(1.05rem, 1.6vw, 1.35rem);
                letter-spacing: 0.3px;
                color: rgba(255, 255, 255, 0.92);
                margin-bottom: 18px;
                max-width: 680px;
            }

            .hero-text {
                font-size: 1rem;
                line-height: 1.9;
                color: var(--theme-text);
                max-width: 620px;
                margin-bottom: 30px;
            }

            .hero-points {
                display: flex;
                flex-wrap: wrap;
                gap: 14px;
                margin-bottom: 34px;
            }

            .hero-point {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 11px 14px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                background: rgba(255, 255, 255, 0.06);
                color: rgba(255, 255, 255, 0.9);
                font-size: 0.95rem;
                backdrop-filter: blur(8px);
            }

            .hero-point i {
                color: var(--theme-gold);
                font-size: 1rem;
            }

            .hero-actions {
                display: flex;
                align-items: center;
                gap: 18px;
                flex-wrap: wrap;
            }

            .btn-luxury {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                background: var(--theme-gold);
                color: var(--theme-dark);
                border: 1px solid var(--theme-gold);
                padding: 16px 28px;
                font-size: 1rem;
                line-height: 1;
                transition: all 0.3s ease;
                box-shadow: var(--theme-shadow-soft);
            }

            .btn-luxury:hover {
                background: transparent;
                color: var(--theme-gold);
            }

            .hero-mini-note {
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.7);
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }

            .hero-mini-note i {
                color: var(--theme-gold);
            }

            .hero-form-wrap {
                display: flex;
                justify-content: end;
            }

            .hero-form-card {
                width: 100%;
                max-width: 460px;
                background: rgba(9, 17, 29, 0.88);
                border: 1px solid rgba(200, 169, 106, 0.22);
                box-shadow: var(--theme-shadow);
                overflow: hidden;
                backdrop-filter: blur(16px);
            }

            .form-card-top {
                padding: 26px 28px 18px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                background: linear-gradient(180deg, rgba(200, 169, 106, 0.12) 0%, rgba(200, 169, 106, 0) 100%);
            }

            .form-kicker {
                display: inline-block;
                color: var(--theme-gold);
                text-transform: uppercase;
                letter-spacing: 1.5px;
                font-size: 0.8rem;
                margin-bottom: 12px;
            }

            .form-title {
                font-size: 2rem;
                line-height: 1.05;
                margin-bottom: 10px;
                color: var(--theme-white);
            }

            .form-subtext {
                color: rgba(255, 255, 255, 0.68);
                font-size: 0.96rem;
                line-height: 1.7;
                margin-bottom: 0;
            }

            .enquiry-form {
                padding: 24px 28px 30px;
            }

            .form-control,
            .form-select {
                height: 54px;
                border-radius: 0;
                border: 1px solid rgba(255, 255, 255, 0.1);
                background: rgba(255, 255, 255, 0.04);
                color: var(--theme-white);
                box-shadow: none;
                padding: 12px 16px;
            }

            .form-control::placeholder {
                color: rgba(255, 255, 255, 0.45);
            }

            .form-control:focus,
            .form-select:focus {
                border-color: rgba(200, 169, 106, 0.8);
                box-shadow: 0 0 0 0.2rem rgba(200, 169, 106, 0.12);
                background: rgba(255, 255, 255, 0.05);
                color: var(--theme-white);
            }

            .form-select option {
                color: #111;
            }

            .form-note {
                color: rgba(255, 255, 255, 0.52);
                font-size: 0.84rem;
                line-height: 1.6;
                margin-top: 14px;
                margin-bottom: 0;
            }

            @media (max-width: 1199.98px) {
                .hero-title {
                    max-width: 100%;
                }

                .hero-form-wrap {
                    justify-content: center;
                }
            }

            @media (max-width: 991.98px) {
                :root {
                    --header-height: 84px;
                }

                .site-header {
                    padding: 14px 0;
                }

                .header-shell {
                    padding: 12px 16px;
                }

                .navbar-brand img {
                    height: 46px;
                }

                .brand-text {
                    font-size: 0.92rem;
                }

                .hero-section {
                    padding-top: calc(var(--header-height) + 36px);
                    min-height: auto;
                }

                .hero-content {
                    margin-bottom: 28px;
                }

                .hero-form-card {
                    max-width: 100%;
                }
            }

            @media (max-width: 767.98px) {
                .site-header {
                    padding: 10px 0;
                }

                .header-shell {
                    padding: 12px 14px;
                }

                .navbar-brand {
                    gap: 10px;
                }

                .navbar-brand img {
                    height: 42px;
                }

                .brand-text {
                    font-size: 0.82rem;
                }

                .brand-text span {
                    font-size: 0.62rem;
                    letter-spacing: 1.5px;
                }

                .hero-section {
                    padding: calc(var(--header-height) + 24px) 0 56px;
                    background-position: 62% center;
                }

                .hero-label {
                    font-size: 0.8rem;
                    margin-bottom: 14px;
                }

                .hero-tagline {
                    font-size: 1rem;
                }

                .hero-text {
                    font-size: 0.95rem;
                    line-height: 1.8;
                }

                .hero-points {
                    gap: 10px;
                }

                .hero-point {
                    width: 100%;
                    justify-content: flex-start;
                }

                .hero-actions {
                    flex-direction: column;
                    align-items: stretch;
                }

                .btn-luxury,
                .header-cta {
                    width: 100%;
                }

                .form-card-top,
                .enquiry-form {
                    padding-left: 20px;
                    padding-right: 20px;
                }

                .form-title {
                    font-size: 1.7rem;
                }
            }

            @media (min-width: 992px) {
                .navbar-expand-lg {
                    gap: 40px;
                }
            }

            .navbar-nav .nav-link.active,
            .navbar-nav .nav-link.show {
                color: var(--theme-gold);
            }
        
        
        
            /* PROJECT OVERVIEW */

            .project-overview-section {
                padding: 120px 0;
                background: #0f1a2c;
            }

            .section-label {
                display: inline-block;
                color: #c8a96a;
                font-size: 14px;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 15px;
            }

            .section-title {
                font-family: "Philosopher", serif;
                font-size: 42px;
                line-height: 1.2;
                margin-bottom: 20px;
                color: #fff;
            }

            .overview-text {
                font-size: 16px;
                line-height: 1.8;
                color: rgba(255, 255, 255, 0.75);
                margin-bottom: 18px;
            }

            .overview-image {
                position: relative;
                overflow: hidden;
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            }

            .overview-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .overview-image:hover img {
                transform: scale(1.05);
            }

            .overview-highlights {
                margin-top: 30px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .highlight-item {
                display: flex;
                align-items: center;
                gap: 12px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                padding: 14px 16px;
                background: rgba(255, 255, 255, 0.04);
            }

            .highlight-item i {
                color: #c8a96a;
                font-size: 18px;
            }

            .highlight-item span {
                font-size: 15px;
                color: #fff;
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .project-overview-section {
                    padding: 80px 0;
                }

                .section-title {
                    font-size: 32px;
                }

                .overview-highlights {
                    grid-template-columns: 1fr;
                }
            }
        
        
        
            /* KEY HIGHLIGHTS */

            .key-highlights-section {
                background: #ffffff;
                padding: 60px 0;
            }

            .section-label-dark {
                color: #c8a96a;
                text-transform: uppercase;
                letter-spacing: 2px;
                font-size: 14px;
                display: inline-block;
                margin-bottom: 15px;
            }

            .section-title-dark {
                font-family: "Philosopher", serif;
                font-size: 42px;
                line-height: 1.2;
                color: #0f1a2c;
            }

            .highlight-card {
                text-align: center;
                padding: 40px 30px;
                border: 1px solid rgba(0, 0, 0, 0.06);
                background: #ffffff;
                transition: all 0.4s ease;
                height: 100%;
            }

            .highlight-card i {
                font-size: 60px;
                color: #c8a96a;
                margin-bottom: 20px;
                display: block;
            }

            .highlight-card h4 {
                font-family: "Philosopher", serif;
                font-size: 22px;
                margin-bottom: 12px;
                color: #0f1a2c;
            }

            .highlight-card p {
                font-family: "Inter", sans-serif;
                font-size: 15px;
                line-height: 1.7;
                color: #555;
            }

            .highlight-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
                border-color: #c8a96a;
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .key-highlights-section {
                    padding: 80px 0;
                }

                .section-title-dark {
                    font-size: 32px;
                }

                .highlight-card i {
                    font-size: 50px;
                }
            }
        
        
        
            /* CONFIGURATION SECTION */

            .floorplan-section {
                padding: 120px 0;
                background: #0f1a2c;
            }

            .section-label {
                color: #c8a96a;
                text-transform: uppercase;
                letter-spacing: 2px;
                font-size: 14px;
                display: inline-block;
                margin-bottom: 15px;
            }

            .section-title {
                font-family: "Philosopher", serif;
                font-size: 42px;
                line-height: 1.2;
                color: #fff;
            }

            /* CONFIG GRID */

            .config-info {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 20px;
                margin-top: 40px;
            }

            .config-item {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 20px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                background: rgba(255, 255, 255, 0.03);
            }

            .config-item i {
                font-size: 30px;
                color: #c8a96a;
            }

            .config-item h4 {
                font-family: "Philosopher", serif;
                font-size: 18px;
                margin-bottom: 4px;
                color: #fff;
            }

            .config-item p {
                font-size: 14px;
                color: rgba(255, 255, 255, 0.65);
                margin: 0;
            }

            /* FLOOR CARDS */

            .floorplan-card {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.08);
                transition: 0.4s;
            }

            .floorplan-card:hover {
                transform: translateY(-8px);
                border-color: #c8a96a;
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
            }

            .floorplan-img {
                overflow: hidden;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .floorplan-img img {
                width: 100%;
                transition: 0.5s;
            }

            .floorplan-card:hover img {
                transform: scale(1.05);
            }

            .floorplan-content {
                padding: 30px;
                text-align: center;
            }

            .floorplan-content h3 {
                font-family: "Philosopher", serif;
                font-size: 26px;
                color: #fff;
                margin-bottom: 10px;
            }

            .floorplan-size {
                color: #c8a96a;
                margin-bottom: 20px;
                font-weight: 600;
            }

            /* BUTTON */

            .btn-luxury {
                background: #c8a96a;
                color: #0f1a2c;
                border: 1px solid #c8a96a;
                padding: 14px 26px;
                font-family: "Philosopher", serif;
                transition: 0.3s;
            }

            .btn-luxury:hover {
                background: transparent;
                color: #c8a96a;
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .floorplan-section {
                    padding: 80px 0;
                }

                .config-info {
                    grid-template-columns: 1fr 1fr;
                }

                .section-title {
                    font-size: 32px;
                }
            }

            @media (max-width: 576px) {
                .config-info {
                    grid-template-columns: 1fr;
                }
            }
        
    
    
    
            /* AMENITIES SECTION */

            .amenities-section {
                padding: 50px 0;
                background: #ffffff;
            }

            .amenity-card {
                text-align: center;
                padding: 40px 30px;
                border: 1px solid rgba(0, 0, 0, 0.06);
                background: #ffffff;
                transition: 0.4s;
                height: 100%;
            }

            .amenity-card i {
                font-size: 50px;
                color: #c8a96a;
                margin-bottom: 20px;
                display: block;
            }

            .amenity-card h4 {
                font-family: "Philosopher", serif;
                font-size: 22px;
                margin-bottom: 10px;
                color: #0f1a2c;
            }

            .amenity-card p {
                font-size: 15px;
                color: #555;
                line-height: 1.7;
            }

            .amenity-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
                border-color: #c8a96a;
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .amenities-section {
                    padding: 80px 0;
                }

                .amenity-card i {
                    font-size: 40px;
                }
            }
        
        
        
            /* PRICING SECTION */

            .pricing-section {
                padding: 120px 0;
                background: #0f1a2c;
            }

            .pricing-section .section-label {
                color: #c8a96a;
                text-transform: uppercase;
                letter-spacing: 2px;
                font-size: 14px;
                display: inline-block;
                margin-bottom: 15px;
            }

            .pricing-section .section-title {
                font-family: "Philosopher", serif;
                font-size: 42px;
                line-height: 1.2;
                color: #fff;
            }

            /* TABLE WRAP */
            .pricing-table-wrap {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.08);
                overflow: hidden;
            }

            /* RESET BOOTSTRAP TABLE */
            .pricing-section .table {
                margin-bottom: 0;
                --bs-table-bg: transparent;
                --bs-table-striped-bg: transparent;
                --bs-table-striped-color: #fff;
                --bs-table-active-bg: transparent;
                --bs-table-active-color: #fff;
                --bs-table-hover-bg: rgba(255, 255, 255, 0.04);
                --bs-table-hover-color: #fff;
                --bs-table-color: rgba(255, 255, 255, 0.88);
                --bs-table-border-color: rgba(255, 255, 255, 0.08);
                vertical-align: middle;
            }

            /* HEAD */
            .pricing-section .table thead th {
                background: #c8a96a !important;
                color: #0f1a2c !important;
                font-family: "Philosopher", serif;
                font-size: 20px;
                font-weight: 700;
                padding: 18px 20px;
                border: none !important;
            }

            /* BODY */
            .pricing-section .table tbody td {
                background: transparent !important;
                color: rgba(255, 255, 255, 0.88) !important;
                font-size: 15px;
                line-height: 1.7;
                padding: 18px 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
            }

            /* ROW HOVER */
            .pricing-section .table tbody tr:hover td {
                background: rgba(255, 255, 255, 0.04) !important;
                color: #fff !important;
            }

            /* FIRST TABLE GAP */
            .pricing-block {
                margin-bottom: 40px;
            }

            /* MOBILE */
            @media (max-width: 991px) {
                .pricing-section {
                    padding: 80px 0;
                }

                .pricing-section .section-title {
                    font-size: 32px;
                }

                .pricing-section .table thead th,
                .pricing-section .table tbody td {
                    padding: 14px 14px;
                    font-size: 14px;
                }
            }
        
        
        
            /* LOCATION SECTION */

            .location-section {
                padding: 120px 0;
                background: #ffffff;
            }

            .location-map {
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.08);
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
            }

            .location-map img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .location-map:hover img {
                transform: scale(1.05);
            }

            /* CONNECTIVITY LIST */

            .location-list {
                display: flex;
                flex-direction: column;
                gap: 25px;
            }

            .location-item {
                display: flex;
                align-items: flex-start;
                gap: 18px;
                padding-bottom: 18px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }

            .location-item i {
                font-size: 28px;
                color: #c8a96a;
            }

            .location-item h4 {
                font-family: "Philosopher", serif;
                font-size: 20px;
                color: #0f1a2c;
                margin-bottom: 5px;
            }

            .location-item p {
                font-size: 15px;
                color: #555;
                margin: 0;
                line-height: 1.7;
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .location-section {
                    padding: 80px 0;
                }

                .location-item {
                    gap: 15px;
                }
            }
        
        
        
            /* DEVELOPER SECTION */

            .developer-section {
                padding: 120px 0;
                background: #0f1a2c;
            }

            .developer-content p {
                font-size: 16px;
                line-height: 1.8;
                color: rgba(255, 255, 255, 0.75);
                margin-bottom: 18px;
            }

            .developer-image {
                overflow: hidden;
                border: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
            }

            .developer-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: 0.5s;
            }

            .developer-image:hover img {
                transform: scale(1.05);
            }

            /* STATS */

            .developer-stats {
                margin-top: 30px;
                display: flex;
                gap: 30px;
                flex-wrap: wrap;
            }

            .stat-box {
                border: 1px solid rgba(255, 255, 255, 0.08);
                padding: 25px 30px;
                background: rgba(255, 255, 255, 0.03);
                min-width: 150px;
            }

            .stat-box h3 {
                font-family: "Philosopher", serif;
                font-size: 34px;
                color: #c8a96a;
                margin-bottom: 5px;
            }

            .stat-box p {
                margin: 0;
                font-size: 14px;
                color: rgba(255, 255, 255, 0.65);
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .developer-section {
                    padding: 80px 0;
                }

                .developer-stats {
                    gap: 15px;
                }

                .stat-box {
                    flex: 1;
                    text-align: center;
                }
            }
        
        
        
            /* CTA SECTION */

            .cta-section {
                padding: 40px 0;
                background: #09101c;
                text-align: center;
            }

            .cta-title {
                font-family: "Philosopher", serif;
                font-size: 42px;
                color: #fff;
                margin-bottom: 20px;
            }

            .cta-text {
                font-size: 16px;
                line-height: 1.8;
                color: rgba(255, 255, 255, 0.75);
                margin-bottom: 35px;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            /* BUTTONS */

            .btn-cta-call {
                background: #c8a96a;
                color: #0f1a2c;
                border: 1px solid #c8a96a;
                padding: 14px 28px;
                font-family: "Philosopher", serif;
                transition: 0.3s;
            }

            .btn-cta-call:hover {
                background: transparent;
                color: #c8a96a;
            }

            .btn-cta-whatsapp {
                background: #25d366;
                color: #fff;
                border: 1px solid #25d366;
                padding: 14px 28px;
                font-family: "Philosopher", serif;
            }

            .btn-cta-whatsapp:hover {
                background: #1da851;
                color: #fff;
            }

            .btn-cta-enquire {
                background: transparent;
                color: #c8a96a;
                border: 1px solid #c8a96a;
                padding: 14px 28px;
                font-family: "Philosopher", serif;
            }

            .btn-cta-enquire:hover {
                background: #c8a96a;
                color: #0f1a2c;
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .cta-section {
                    padding: 80px 0;
                }

                .cta-title {
                    font-size: 32px;
                }

                .cta-buttons {
                    flex-direction: column;
                }

                .cta-buttons .btn {
                    width: 100%;
                }
            }
        
        
        
        
            /* FOOTER */

            .footer-section {
                background: #08111f;
                padding: 100px 0 40px;
                color: rgba(255, 255, 255, 0.75);
            }

            .footer-logo img {
                height: 60px;
                margin-bottom: 20px;
            }

            .footer-about {
                font-size: 15px;
                line-height: 1.8;
            }

            .footer-title {
                font-family: "Philosopher", serif;
                font-size: 20px;
                color: #fff;
                margin-bottom: 20px;
            }

            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.7);
                text-decoration: none;
                transition: 0.3s;
            }

            .footer-links a:hover {
                color: #c8a96a;
            }

            .footer-contact p {
                margin-bottom: 12px;
                font-size: 15px;
            }

            .footer-contact i {
                color: #c8a96a;
                margin-right: 8px;
            }

            .footer-divider {
                height: 1px;
                background: rgba(255, 255, 255, 0.08);
                margin: 50px 0 30px;
            }

            .footer-disclaimer {
                font-size: 13px;
                line-height: 1.7;
                color: rgba(255, 255, 255, 0.55);
                text-align: center;
            }

            .footer-bottom {
                text-align: center;
                margin-top: 20px;
                font-size: 14px;
                color: rgba(255, 255, 255, 0.6);
            }

            /* MOBILE */

            @media (max-width: 991px) {
                .footer-section {
                    padding: 70px 0 30px;
                }

                .footer-logo img {
                    height: 50px;
                }
            }
        
        
        
            /* FLOATING CONTACT ICONS */

            .floating-contact-icons {
                position: fixed;
                right: 25px;
                bottom: 25px;
                display: flex;
                flex-direction: column;
                gap: 12px;
                z-index: 9999;
            }

            /* BASE ICON STYLE */

            .floating-icon {
                width: 55px;
                height: 55px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                color: #fff;
                font-size: 20px;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
                transition: all 0.3s ease;
            }

            /* CALL */

            .call-icon {
                background: #c8a96a;
                color: #0f1a2c;
            }

            .call-icon:hover {
                transform: translateY(-3px);
            }

            /* WHATSAPP */

            .whatsapp-icon {
                background: #25d366;
            }

            .whatsapp-icon:hover {
                transform: translateY(-3px);
            }

            /* ENQUIRE */

            .enquire-icon {
                background: #0f1a2c;
                border: 1px solid #c8a96a;
                color: #c8a96a;
            }

            .enquire-icon:hover {
                background: #c8a96a;
                color: #0f1a2c;
            }

            /* MOBILE */

            @media (max-width: 768px) {
                .floating-contact-icons {
                    right: 15px;
                    bottom: 15px;
                }

                .floating-icon {
                    width: 50px;
                    height: 50px;
                    font-size: 18px;
                }
            }
        