:root {
    --gold: #f8ae53;
    --gold-dark: #df8e2f;
    --gold-light: #fff3e2;
    --charcoal: #4d4f50;
    --dark: #242526;
    --text: #646566;
    --white: #fff;
    --off: #faf9f7;
    --border: #eae5dd;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
    color: var(--charcoal);
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1220px;
}
.topbar {
    background: var(--charcoal);
    color: #fff;
    font-size: 12px;
    padding: 9px 0;
    position: relative;
    z-index: 1100;
}
.topbar a {
    color: #fff;
    margin-left: 18px;
}
.topbar i {
    color: var(--gold);
    margin-right: 5px;
}
.navbar {
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    padding: 12px 0;
    transition: 0.35s;
    z-index: 1050;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
    background: #fff;
    padding: 8px 0;
}
.navbar-brand img {
    width: 180px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}
.navbar-toggler {
    border: 0;
    color: var(--charcoal);
    font-size: 30px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal) !important;
    margin: 0 7px;
    padding: 12px 7px !important;
    position: relative;
}
.nav-link:after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 5px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}
.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
}
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #fff;
    font-weight: 800;
    border-radius: 2px;
    padding: 13px 23px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(248, 174, 83, 0.2);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(223, 142, 47, 0.28);
}
.btn-outline-light {
    border-width: 1px;
    border-radius: 2px;
    font-weight: 700;
    padding: 13px 23px;
}
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #252525;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 23, 23, 0.88) 0%, rgba(22, 23, 23, 0.62) 50%, rgba(22, 23, 23, 0.25) 100%),
        url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2200&q=90")
            center/cover;
    animation: heroZoom 12s ease-out both;
}
@keyframes heroZoom {
    from {
        transform: scale(1.12);
    }
    to {
        transform: scale(1);
    }
}
.hero-shape {
    position: absolute;
    border: 1px solid rgba(248, 174, 83, 0.35);
    border-radius: 50%;
    pointer-events: none;
}
.shape-one {
    width: 420px;
    height: 420px;
    right: -180px;
    top: 12%;
    animation: float 7s ease-in-out infinite;
}
.shape-two {
    width: 260px;
    height: 260px;
    right: 12%;
    bottom: -160px;
    animation: float 9s ease-in-out infinite reverse;
}
@keyframes float {
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}
.hero-content {
    padding: 100px 0 80px;
    max-width: 780px;
    color: #fff;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 20px;
}
.eyebrow i {
    width: 38px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}
.eyebrow.dark {
    color: var(--gold-dark);
}
.eyebrow.light {
    color: #000;
}
.hero h1 {
    font-size: clamp(50px, 7vw, 90px);
    line-height: 0.98;
    color: #000;
    margin: 0 0 28px;
    letter-spacing: -2px;
}
.hero h1 span,
h2 span {
    color: var(--gold);
}
.hero p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
}
.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.hero-mini {
    display: flex;
    gap: 45px;
    margin-top: 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}
.hero-mini div {
    display: flex;
    flex-direction: column;
}
.hero-mini strong {
    font: 700 30px "Playfair Display";
    color: var(--gold);
}
.hero-mini small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ddd;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 45px;
    color: #fff;
    font-size: 9px;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    display: flex;
    gap: 10px;
    align-items: center;
}
.scroll-indicator span {
    width: 1px;
    height: 55px;
    background: var(--gold);
}
.section {
    padding: 110px 0;
}
.intro-section {
    background: #fff;
}
.image-frame {
    position: relative;
    padding-right: 45px;
    padding-bottom: 45px;
}
.image-frame:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    background: var(--gold-light);
    z-index: 0;
}
.image-frame img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.image-tag {
    position: absolute;
    z-index: 2;
    left: -20px;
    top: 35px;
    background: var(--charcoal);
    color: #fff;
    padding: 16px 20px;
    line-height: 1.05;
}
.image-tag span {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
}
.image-tag strong {
    font: 700 22px "Playfair Display";
}
.experience-box {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 0;
    background: var(--gold);
    color: #fff;
    padding: 22px 28px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.experience-box strong {
    font: 700 42px "Playfair Display";
}
.experience-box span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h2 {
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 22px;
}
.lead-text {
    font-size: 18px;
    color: var(--charcoal);
    line-height: 1.7;
}
.intro-section p {
    line-height: 1.85;
}
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 27px 0;
}
.check-grid div {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
}
.check-grid i {
    color: var(--gold-dark);
    font-size: 19px;
    margin-right: 8px;
}
.text-link {
    color: var(--charcoal);
    font-weight: 800;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}
.text-link i {
    color: var(--gold-dark);
    margin-left: 6px;
}
.services-section,
.insights-section {
    background: var(--off);
}
.section-heading {
    margin-bottom: 55px;
}
.section-heading h2 {
    margin-bottom: 13px;
}
.section-heading p {
    max-width: 650px;
    line-height: 1.8;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    height: 100%;
    padding: 35px 28px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}
.service-card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(36, 37, 38, 0.09);
}
.service-card:hover:before {
    transform: scaleX(1);
}
.service-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #eee;
    font: 700 40px "Playfair Display";
}
.service-icon {
    width: 62px;
    height: 62px;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 28px;
    transition: 0.4s;
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--charcoal);
    transform: rotate(-5deg) scale(1.08);
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.service-card h6 {
    font-family: "DM Sans";
    font-size: 11px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.service-card p {
    font-size: 14px;
    line-height: 1.8;
}
.service-card a {
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 800;
}
.service-card a i {
    color: var(--gold-dark);
    margin-left: 6px;
}
.projects-section {
    background: #fff;
}
.project-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 350px 350px;
    gap: 15px;
}
.project-large {
    grid-row: span 2;
}
.project-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: #222;
}
.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}
.project-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(20, 20, 20, 0.85));
    opacity: 0.85;
}
.project-item:hover img {
    transform: scale(1.09);
}
.project-overlay {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 20px;
    bottom: 25px;
    color: #fff;
}
.project-overlay small {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 800;
}
.project-overlay h3 {
    color: #fff;
    font-size: 25px;
    margin: 5px 0 10px;
}
.project-overlay span {
    font-size: 11px;
    font-weight: 700;
}
.project-overlay span i {
    color: var(--gold);
    margin-left: 5px;
}
.process-section {
    background: var(--gold-light);
}
.process-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
}
.process-line:before {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    top: 54px;
    height: 1px;
    background: rgba(77, 79, 80, 0.25);
}
.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-circle {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold-dark);
    font: 700 25px "Playfair Display";
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}
.process-card:hover .process-circle {
    background: var(--gold);
    color: var(--charcoal);
    transform: scale(1.08);
}
.process-card h3 {
    font-size: 25px;
}
.process-card p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 340px;
    margin: auto;
}
.testimonial-section {
    background: var(--charcoal);
    padding: 105px 0;
    color: #fff;
}
.testimonial-section h2 {
    color: #fff;
}
.testimonial-card {
    text-align: center;
    max-width: 850px;
    margin: auto;
    padding: 20px 50px 50px;
}
.quote {
    font-size: 65px;
    color: var(--gold);
    height: 65px;
}
.testimonial-card p {
    font: 500 25px/1.65 "Playfair Display";
    color: #fff;
}
.testimonial-card strong {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
}
.blog-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    transition: 0.4s;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.blog-img {
    height: 245px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}
.blog-body {
    padding: 27px;
}
.blog-body > span {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-dark);
}
.blog-body h3 {
    font-size: 23px;
    margin: 10px 0;
}
.blog-body p {
    font-size: 14px;
    line-height: 1.8;
}
.blog-body a {
    font-size: 12px;
    font-weight: 800;
    color: var(--charcoal);
}
.blog-body a i {
    color: var(--gold-dark);
}
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background: var(--charcoal);
    color: #fff;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(36, 37, 38, 0.8), rgba(36, 37, 38, 0.8)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=85")
            center/cover;
    transform: scale(1.03);
}
.cta-section h2 {
    color: #fff;
    font-size: clamp(42px, 6vw, 70px);
}
.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #ddd;
}
footer {
    background: #1e1f20;
    color: #a9abad;
    padding: 75px 0 0;
}
.footer-logo {
    width: 205px;
    height: 75px;
    object-fit: contain;
    object-position: left center;
    filter: none;
}
.footer-about {
    font-size: 13px;
    line-height: 1.9;
    max-width: 390px;
    margin-top: 18px;
}
.socials {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}
.socials a {
    width: 40px;
    height: 40px;
    border: 1px solid #3e4041;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.socials a:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
footer h4 {
    font: 600 21px "Playfair Display";
    color: #000;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #aaa;
    font-size: 13px;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
}
.contact-list i {
    color: var(--gold);
    font-size: 17px;
}
.contact-list a {
    color: #aaa;
}
.contact-list a:hover {
    color: var(--gold);
}
.copyright {
    border-top: 1px solid #343536;
    margin-top: 55px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 15px;
}
.copyright a {
    color: #aaa;
}
.copyright a:hover {
    color: var(--gold);
}
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}
.floating-whatsapp span {
    position: absolute;
    right: 64px;
    background: var(--charcoal);
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 10px;
    border-radius: 2px;
    opacity: 0;
    transform: translateX(8px);
    transition: 0.3s;
}
.floating-whatsapp:hover span {
    opacity: 1;
    transform: translateX(0);
}
@keyframes pulse {
    50% {
        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.2),
            0 0 0 10px rgba(37, 211, 102, 0.08);
    }
}
.back-top {
    position: fixed;
    right: 25px;
    bottom: 88px;
    width: 43px;
    height: 43px;
    background: var(--charcoal);
    border: 0;
    color: #fff;
    display: none;
    z-index: 999;
    transition: 0.3s;
}
.back-top:hover {
    background: var(--gold);
    color: var(--charcoal);
}
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.6s;
}
.preloader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-logo img {
    width: 230px;
    max-height: 100px;
    object-fit: contain;
}
.loader-line {
    width: 180px;
    height: 2px;
    background: #eee;
    margin-top: 20px;
    overflow: hidden;
}
.loader-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loader 1.2s forwards;
}
@keyframes loader {
    to {
        width: 100%;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: 0.9s;
}
.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition: 0.9s;
}
.reveal.show,
.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: none;
}
.delay-1 {
    transition-delay: 0.12s !important;
}
.delay-2 {
    transition-delay: 0.24s !important;
}
.delay-3 {
    transition-delay: 0.36s !important;
}
.consultation-modal {
    border: 0;
    border-radius: 4px;
    overflow: hidden;
}
.consultation-modal .modal-header {
    background: var(--charcoal);
    border: 0;
    padding: 27px 30px;
}
.consultation-modal .modal-header > div > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 800;
}
.consultation-modal .modal-header h3 {
    color: #fff;
    margin: 5px 0 0;
    font-size: 28px;
}
.consultation-modal .modal-body {
    padding: 30px;
}
.modal-intro {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.consultation-modal label {
    font-size: 12px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 7px;
}
.consultation-modal sup {
    color: #d34b32;
}
.consultation-modal .form-control,
.consultation-modal .form-select {
    border: 1px solid #ddd;
    border-radius: 2px;
    min-height: 48px;
    font-size: 13px;
}
.consultation-modal textarea.form-control {
    min-height: 115px;
}
.consultation-modal .form-control:focus,
.consultation-modal .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(248, 174, 83, 0.14);
}
.success-box {
    display: none;
    text-align: center;
    padding: 35px 15px;
}
.success-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.success-box h3 {
    font-size: 34px;
}
.success-box p {
    max-width: 480px;
    margin: 0 auto 25px;
    line-height: 1.8;
}
.btn-dark-custom {
    background: var(--charcoal);
    color: #fff;
    border: 1px solid var(--charcoal);
    border-radius: 2px;
    padding: 12px 22px;
}
@media (max-width: 991px) {
    .topbar {
        display: none;
    }
    .navbar {
        top: 0;
    }
    .navbar-brand img {
        width: 160px;
        height: 54px;
    }
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-top: 1px solid #eee;
        margin-top: 8px;
    }
    .nav-link {
        margin: 2px 0;
    }
    .hero {
        min-height: 850px;
    }
    .hero-content {
        padding-top: 150px;
    }
    .project-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 320px;
    }
    .project-large {
        grid-row: auto;
    }
    .process-line {
        gap: 25px;
    }
    .process-line:before {
        left: 12%;
        right: 12%;
    }
}
@media (max-width: 767px) {
    .section {
        padding: 75px 0;
    }
    .hero {
        min-height: 800px;
    }
    .hero-bg {
        background:
            linear-gradient(90deg, rgba(22, 23, 23, 0.88), rgba(22, 23, 23, 0.65)),
            url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1200&q=85")
                center/cover;
    }
    .hero h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-mini {
        gap: 20px;
        justify-content: space-between;
    }
    .hero-mini strong {
        font-size: 25px;
    }
    .hero-mini small {
        font-size: 8px;
    }
    .scroll-indicator {
        display: none;
    }
    .image-frame {
        padding-right: 20px;
        padding-bottom: 25px;
    }
    .image-frame img {
        height: 430px;
    }
    .image-tag {
        left: 0;
    }
    .experience-box {
        right: 0;
        padding: 15px 18px;
    }
    .experience-box strong {
        font-size: 32px;
    }
    .check-grid {
        grid-template-columns: 1fr;
    }
    .section-heading h2 {
        font-size: 42px;
    }
    .section-heading.d-flex {
        display: block !important;
    }
    .section-heading.d-flex > p {
        margin-top: 20px;
    }
    .project-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 330px);
    }
    .project-large {
        grid-row: auto;
    }
    .process-line {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .process-line:before {
        left: 50%;
        right: auto;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
    }
    .process-circle {
        background: var(--gold-light);
    }
    .testimonial-card {
        padding: 10px 20px 35px;
    }
    .testimonial-card p {
        font-size: 19px;
    }
    .copyright {
        flex-direction: column;
    }
    .floating-whatsapp span {
        display: none;
    }
    .consultation-modal .modal-header {
        padding: 22px;
    }
    .consultation-modal .modal-body {
        padding: 22px;
    }
}

/* ================= REFERENCE-STYLE UI OVERRIDES ================= */
:root {
    --purple: #f9af53;
    --purple-light: #f2ecff;
    --mint: #dff7ee;
    --sky: #e9f5ff;
    --peach: #fff0e8;
}
body {
    background: #fff;
    color: #6f7076;
    font-family: "DM Sans", sans-serif;
}
.topbar {
    display: none;
}
.navbar {
    top: 0;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 0;
}
.navbar-brand img {
    width: 175px;
    height: 62px;
}
.nav-link {
    font-size: 16px;
    margin: 0 5px;
    color: #4e4f54 !important;
}
.nav-link:after {
    background: #f9af53!important;
}
.nav-actions .btn-gold {
    padding: 10px 17px;
    border-radius: 18px;
    font-size: 10px;
}
.hero.ref-hero {
    min-height: 760px;
    padding: 125px 0 70px;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero.ref-hero .hero-content {
    padding: 0;
    max-width: 620px;
    color: #555;
}
.ref-eyebrow {
    color: #4f5153;
    font-size: 9px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.ref-eyebrow i {
    width: 18px;
    background: var(--gold);
}
.hero.ref-hero h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(48px, 6vw, 70px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -3.5px;
    color: #111;
    margin: 0 0 20px;
}
.hero.ref-hero h1 span {
    color: var(--purple);
}
.hero.ref-hero p {
    font-size: 13px;
    line-height: 1.8;
    color: #777;
    max-width: 480px;
}
.hero.ref-hero .hero-buttons {
    margin-top: 24px;
}
.hero.ref-hero .btn-gold {
    border-radius: 20px;
    padding: 11px 19px;
    font-size: 15px;
}
.hero.ref-hero .btn-purple {
    border-radius: 20px;
    padding: 11px 19px;
    font-size: 15px;
}
.hero-trust {
    display: flex;
    gap: 22px;
    margin-top: 23px;
    font-size: 15px;
    font-weight: 700;
    color: #666;
}
.hero-trust i {
    color: var(--gold2);
    margin-right: 4px;
}
.ref-hero-art {
    height: 500px;
    position: relative;
}
.ref-backplate {
    position: absolute;
    width: 430px;
    height: 350px;
    right: 25px;
    top: 65px;
    background: #f0f0ed;
    border-radius: 25px 80px 45px 80px;
    transform: rotate(-3deg);
}
.hero-room {
    position: absolute;
    right: 65px;
    top: 78px;
    width: 395px;
    height: 350px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    transform: rotate(2deg);
    z-index: 2;
}
.hero-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.room-label b {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold2);
}
.room-label small {
    font-size: 12px;
    font-weight: 800;
    color: #444;
    margin-top: 3px;
}
.hero-floating {
    position: absolute;
    z-index: 5;
    background: #fff;
    padding: 9px 12px;
    border-radius: 9px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 2px 7px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    min-width: 125px;
}
.hero-floating i {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-floating b {
    font-size: 9px;
    color: #222;
}
.hero-floating small {
    font-size: 7px;
    color: #999;
}
.hf1 {
    left: 5px;
    top: 80px;
    animation: refFloat 5s infinite;
}
.hf2 {
    right: 0;
    top: 20px;
    animation: refFloat 6s infinite reverse;
}
.hf3 {
    left: 30px;
    bottom: 35px;
    animation: refFloat 7s infinite;
}
.ref-orb {
    position: absolute;
    border-radius: 50%;
    z-index: 4;
}
.orb-gold {
    width: 18px;
    height: 18px;
    background: var(--gold);
    right: 5px;
    bottom: 95px;
}
.orb-purple {
    width: 9px;
    height: 9px;
    background: var(--purple);
    left: 0;
    bottom: 130px;
}
@keyframes refFloat {
    50% {
        transform: translateY(-12px);
    }
}
.ref-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.ref-hero .d1 {
    left: 8%;
    top: 45%;
    background: var(--purple);
}
.ref-hero .d2 {
    right: 5%;
    top: 24%;
    background: #9bdd30;
}
.ref-hero .d3 {
    right: 28%;
    bottom: 12%;
    background: #48c8f1;
}
.section {
    padding: 88px 0;
}
.section-heading h2,
.section-title h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -1.5px;
}
.section-heading p,
.section-title p {
    font-size: 15px;
    color: #888;
}
.services-section {
    background: #fff;
}
.service-card {
    border-color: #e9e9eb;
    border-radius: 8px;
    padding: 28px 22px;
    box-shadow: none;
}
.service-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    transform: translateY(-7px);
}
.service-icon {
    border-radius: 11px;
}
.service-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
}
.service-card h6 {
    font-size: 8px;
}
.service-card p {
    font-size: 15px;
}
.service-card a {
    font-size: 15px;
}
.intro-section {
    background: #fbfbfd;
}
.image-frame img {
    border-radius: 24px;
}
.image-frame:before {
    background: #f1f0ec;
    border-radius: 45px;
}
.experience-box {
    border-radius: 15px;
}
.intro-section h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
}
.lead-text {
    font-size: 16px;
}
.projects-section {
    background: #fff;
}
.project-grid {
    gap: 12px;
    grid-template-rows: 300px 300px;
}
.project-item {
    border-radius: 9px;
}
.project-overlay h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
}
.process-section {
    background: #fbfaff;
}
.process-section h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 45px;
}
.process-line:before {
    background: #ddd8ea;
}
.process-circle {
    border-color: #d7c9ff;
    color: var(--purple);
}
.testimonial-section {
    background: #fff;
    padding: 88px 0;
    color: #555;
}
.testimonial-section h2 {
    color: #111;
}
.testimonial-card {
    border: 1px solid #e9e8ec;
    border-radius: 10px;
    padding: 32px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.035);
}
.testimonial-card p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #555;
}
.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next {
    background: var(--purple);
    width: 34px;
    height: 34px;
    top: 45%;
}
.insights-section {
    background: #fff;
}
.blog-card {
    border-radius: 9px;
}
.blog-img {
    height: 180px;
}
.blog-body {
    padding: 20px;
}
.blog-body h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
}
.blog-body p {
    font-size: 15px;
}
.brand-strip {
    padding: 34px 0;
    background: #fff;
}
.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #777;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.75;
}
.brand-row span:nth-child(2) {
    font-family: serif;
    font-size: 17px;
}
.brand-row span:nth-child(4) {
    font-style: italic;
}
.brand-row span:nth-child(5) {
    letter-spacing: 3px;
}
.cta-section {
    padding: 70px 0;
    background: #fff;
}
.cta-bg {
    inset: 20px 0;
    background:
        linear-gradient(90deg, rgba(248, 246, 239, 0.96), rgba(248, 246, 239, 0.91)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=80")
            center/cover;
    border-radius: 18px;
}
.cta-section .container {
    padding: 45px;
}
.cta-section h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    color: #111;
}
.cta-section p {
    font-size: 12px;
    color: #777;
}
footer {
    padding-top: 55px;
    background: #fff;
    border-top: 1px solid #eee;
}
footer h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
}
footer .footer-about {
    font-size: 15px;
}
.footer-links a,
.contact-list a {
    font-size: 15px;
}
.floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
}
.back-top {
    border-radius: 50%;
}
@media (max-width: 767px) {
    .hero.ref-hero {
        padding-top: 105px;
        min-height: auto;
    }
    .hero.ref-hero h1 {
        font-size: 48px;
    }
    .ref-hero-art {
        height: 420px;
    }
    .ref-backplate {
        width: 320px;
        height: 290px;
        right: 0;
    }
    .hero-room {
        width: 290px;
        height: 300px;
        right: 18px;
    }
    .hf1 {
        left: 0;
    }
    .hf3 {
        left: 0;
    }
    .brand-row {
        justify-content: center;
        font-size: 10px;
    }
    .cta-section {
        padding: 45px 0;
    }
    .cta-section .container {
        padding: 25px;
    }
    .cta-section h2 {
        font-size: 40px;
    }
}
