* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --brand-gold: #bc9c64;
    --brand-gold-bright: #d4af37;
    --deep-dark: #0a0a0a;
    --pure-white: #ffffff;
    --muted-grey: #a0a0a0;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Montserrat', sans-serif;
    --section-padding: 100px;
}

body {
    background-color: var(--deep-dark);
    font-family: var(--sans-font);
    color: var(--muted-grey);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
   /* color: var(--bs-dark);*/
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #BF8675;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.bg-white {
    background-color: #000 !important;
}

/*.btn-primary {
    background-color: #BF8675;
    border-color: #BF8675;
}
.btn-primary:hover {
    background-color: #E9B8A9;
    border-color: #E9B8A9;
}
.border-primary {
    border-color: #BF8675 !important;
}*/












.header-actions-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-nav-outline {
    background: transparent;
    border: 1px solid rgba(197, 168, 128, 0.5);
    color: #c5a880;
    padding: 10px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav-outline:hover {
    border-color: #c5a880;
    background-color: #c5a880;
    color: #070707;
    box-shadow: 0 0 12px rgba(197, 168, 128, 0.2);
}


/* Navbar container */
/*.navbar {
    padding: 15px 40px;
}*/

/* Logo spacing */
.navbar-brand {
    margin-right: 50px;
}

/* Navigation spacing */
.navbar-nav {
   /* margin-left: 154px;*/
    gap: 15px;
}

/* Space between nav and button */
.header-actions-group,
.navbar .btn,
.navbar .btn-primary,
.navbar .btn-nav-outline {
    margin-left: 30px;
}

/* If using Bootstrap navbar container */
.navbar .container,
.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo size and spacing */
.navbar-brand img {
    max-height: 70px;
    width: auto;
}

/* Desktop spacing */
@media (min-width: 992px) {
    .navbar-brand {
        margin-right: 70px;
    }

    .navbar-nav {
        gap: 20px;
    }

    .header-actions-group {
        margin-left: 50px;
    }
    .navbar-nav {
    margin-left: 20px;
}
}
.navbar-light .navbar-toggler {
    color: #fff;
    border-color: #D4AF37;
}
.navbar-light .navbar-toggler-icon {
    background-image: url('../img/download_white.svg');
}































/* Features Section */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 25px 20px;
    background: #000;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid #bc9c64;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc9c64;
    font-size: 18px;
}

.feature-content h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.feature-content p {
    color: #999;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .features-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .feature-content h4 {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .feature-content p {
        font-size: 12px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }
}




/*
.site-header {
    width: 100%;
    background-color: #070707;
    border-bottom: 1px solid rgba(181, 148, 115, 0.15);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-box {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-mountain-vector {
    width: 45px;
    height: auto;
    margin-bottom: 2px;
}

.brand-logo-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #c5a880; 
    letter-spacing: 1px;
    line-height: 1;
}

.brand-logo-box span {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 3.5px;
    display: block;
    margin-top: 3px;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.nav-menu-list li {
    position: relative;
    padding: 10px 0; 
}

.nav-item-link {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item-link.active {
    color: #b59473; 
}

.nav-item-link:hover {
    color: #c5a880;
}

.nav-item-link i {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.nav-menu-list li:hover .nav-item-link i {
    transform: rotate(-180deg);
    color: #c5a880;
}

.dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0;
    min-width: 180px;
    background-color: #070707;
    border: 1px solid rgba(181, 148, 115, 0.15);
    list-style: none;
    padding: 10px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-menu-list li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0; 
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #aaaaaa;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    color: #c5a880;
    background-color: rgba(181, 148, 115, 0.05); 
    padding-left: 25px; 
}

.header-actions-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-nav-outline {
    background: transparent;
    border: 1px solid rgba(197, 168, 128, 0.5);
    color: #c5a880;
    padding: 10px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav-outline:hover {
    border-color: #c5a880;
    background-color: #c5a880;
    color: #070707;
    box-shadow: 0 0 12px rgba(197, 168, 128, 0.2);
}

.language-picker {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    user-select: none;
}

.language-picker:hover {
    color: #c5a880;
}*/

/* Light Banner & General Banner Configurations */
.light-banner {
    background-color: #fcf6f0;
    border: 1px solid #e3d3c4;
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 3fr;
    gap: 40px;
    align-items: center;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}

.left-content p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
}

.btn-outline {
    align-self: flex-start;
    background: transparent;
    border: 1px solid #1a1a1a;
    padding: 10px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.light-banner .btn-outline:hover {
    background-color: #1a1a1a;
    color: #fcf6f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.feature-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e3d3c4;
}

.feature-icon {
    font-size: 32px;
    color: #b59473; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.feature-card h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2c2c2c;
    margin-bottom: 12px;
    min-height: 32px; 
    display: flex;
    align-items: center;
}

.feature-card p {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
}

/* Dark Banner Features */
.dark-banner {
    background-color: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 3.8fr;
    gap: 40px;
    align-items: center;
}

.dark-banner .left-content h2 {
    color: #ffffff;
}

.dark-banner .btn-outline {
    border: 1px solid #b59473;
    color: #b59473;
}

.dark-banner .btn-outline:hover {
    background-color: #b59473;
    color: #111111;
}

.dark-banner .features-grid {
    grid-template-columns: repeat(5, 1fr); 
}

.dark-banner .feature-card:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-banner .feature-card h4 {
    color: #b59473; 
    font-size: 11px;
}

.dark-banner .feature-card p {
    color: #bbbbbb;
    font-size: 11px;
}

.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { top: -25px; }
    50% { top: -45px; }
    100% { top: -25px; } 
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

/* Hero Section */
.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem); 
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.5;
    text-align: left;
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.luxury-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('../img/banner1.jpeg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.6) 100%),
                linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.95) 95%);
    z-index: 1;
}

.luxury-hero .hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content-left {
    max-width: 600px;
    padding: var(--section-padding) 0;
}

.hero-main-title {
    font-family: var(--serif-font);
    font-size: clamp(2rem, 4.5vw, 54px);
    font-weight: 400;
    color: var(--pure-white);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-sub-description {
    font-size: 15px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1.65;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
}

.hero-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 32px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.btn-filled {
    background-color: var(--brand-gold);
    color: #000000;
    border: 1px solid var(--brand-gold);
}

.btn-filled:hover {
    background-color: transparent;
    color: var(--brand-gold-bright);
    border-color: var(--brand-gold-bright);
}

.btn-outlined {
    background-color: #CD7F32;
    border-color: #D4AF37;
    border: 1px solid #D4AF37;
    color: #000;
}

.btn-outlined:hover {
    border-color: #D4AF37;
    color: #000;
}

.hero-infobar {
    position: relative;
    z-index: 2;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    width: 100%;
}

.infobar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.infobar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(188, 156, 100, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.infobar-item:hover .icon-wrapper {
    border-color: var(--brand-gold-bright);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.icon-wrapper i {
    font-size: 15px;
    color: var(--brand-gold);
}

.infobar-text h3 {
    font-size: 11px;
    font-weight: 500;
    color: var(--pure-white);
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.infobar-text p {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted-grey);
}

/* Collections Component */
.site-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.collections-section {
    padding: 80px 0;
}

.collections-header {
    text-align: center;
    margin-bottom: 50px;
}

.collections-header .title-main {
    font-family: var(--serif-font);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.collections-header .title-main span {
    color: var(--gold-accent);
    font-weight: 300;
    padding: 0 10px;
}

.collections-header .title-sub {
    font-size: 14px;
    color: var(--text-muted-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.collection-card {
    position: relative;
    height: 440px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-tag {
    font-size: 13px;
    font-weight: 400;
    color: var(--gold-accent);
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.card-heading {
    font-family: var(--serif-font);
    font-size: 38px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.card-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 280px;
}

.btn-card-action {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(188, 156, 100, 0.5);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-card-action:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background-color: rgba(255, 255, 255, 0.02);
}

.brand-heritage-panel {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 60px 50px;
    position: relative;
}

.heritage-flex-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.heritage-intro {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 60px;
}

.heritage-title {
    font-family: var(--serif-font);
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.heritage-desc {
    font-size: 13px;
    color: var(--text-muted-dark);
    line-height: 1.65;
    margin-bottom: 30px;
}

.btn-origin {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-origin:hover {
    background-color: var(--text-dark);
    color: var(--light-bg-cream);
}

.heritage-perks-grid {
    flex: 2.8;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.perk-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
}

.perk-icon {
    font-size: 26px;
    color: var(--gold-accent);
    margin-bottom: 20px;
    height: 40px;
    display: flex;
    align-items: center;
}

.perk-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-bottom: 12px;
    text-transform: uppercase;
    min-height: 32px; 
}

.perk-desc {
    font-size: 11px;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

/* Product Carousel Elements */
.carousel-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c2c2c;
    display: inline-block;
    position: relative;
    padding: 0 60px;
}

.section-header h2::before, .section-header h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: #b59473;
}

.section-header h2::before { left: 0; }
.section-header h2::after { right: 0; }

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.product-card {
    width: 200px; 
    background-color: #fcf6f0;
    border: 1px solid #e3d3c4;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
    user-select: none;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-holder {
    width: 100%;
    height: 180px;
    background-color: #f2e6db; 
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b59473;
    font-size: 12px;
    font-weight: 500;
    background-size: cover;
    background-position: center;
}

.product-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2c2c2c;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    min-height: 28px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-sub {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 0.5px;
}

.nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #b59473;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: color 0.3s, transform 0.2s;
}

.nav-btn:hover { color: #1a1a1a; }
.nav-btn:active { transform: translateY(-50%) scale(0.9); }
.prev-btn { left: 5px; }
.next-btn { right: 5px; }

/* Showcase Container */
.showcase-container {
    width: 100%;
    background-color: #080808;
    border: 1px solid rgba(181, 148, 115, 0.15); 
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 400px;
    position: relative;
}

.left-panel {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(181, 148, 115, 0.2); 
}

.left-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.badge-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cert-badge {
    width: 85px;
    height: 85px;
    border: 2px solid #b59473; 
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.cert-badge h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cert-badge span {
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
    color: #b59473;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.utility-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.utility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #888888;
}

.utility-item i {
    font-size: 16px;
    color: #b59473;
    margin-bottom: 10px;
}

.utility-item span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid #b59473;
    color: #ffffff;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: #b59473;
    color: #080808;
}

.right-panel {
    padding: 50px;
    display: grid;
    grid-template-columns: 1.1fr 1fr; 
    gap: 30px;
    align-items: center;
    background-color: #070707; 
}

.panel-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.right-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.right-panel p {
    color: #9c9c9c;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.panel-map-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-map-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 280px; 
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.1)); 
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid #c5a880;
    color: #ffffff;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold-outline:hover {
    background-color: #c5a880;
    color: #070707;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

/* Footer Full Width Styles */
.footer-fullwidth-wrapper {
    width: 100%;
    background-color: #070707;
    border-top: 1px solid rgba(181, 148, 115, 0.15); 
    color: #ffffff;
}

.content-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.footer-cta-section {
    width: 100%;
    border-bottom: 1px solid rgba(181, 148, 115, 0.15); 
    background-image: linear-gradient(to right, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.5)), url('../img/slider2.jpg');
    background-size: cover;
    background-position: center;
}

.footer-cta-bar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    align-items: center;
}

.cta-heading-box {
    padding: 40px 20px;
}

.cta-heading-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #f5eae1;
}

.cta-block {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background-color: rgba(7, 7, 7, 0.8);
    border-left: 1px solid rgba(181, 148, 115, 0.15);
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    color: inherit;
}

.cta-block:hover { background-color: rgba(197, 168, 128, 0.05); }
.cta-block i { font-size: 18px; color: #c5a880; }

.cta-block-text h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 4px;
}

.cta-block-text p {
    font-size: 11px;
    color: #888888;
}

.cta-block.highlighted {
    background-color: #b59473;
    border-left: 1px solid #b59473;
}

.cta-block.highlighted:hover { background-color: #a38362; }

.cta-block.highlighted i, 
.cta-block.highlighted .cta-block-text h4, 
.cta-block.highlighted .cta-block-text p {
    color: #070707;
}

.main-footer-content {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr 1fr;
    gap: 10px;
}

.footer-col {
    padding: 0 15px;
    position: relative;
}

.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(181, 148, 115, 0.15);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #c5a880;
    letter-spacing: 1.5px;
    line-height: 1;
}

.footer-logo span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 4px;
    display: block;
    margin-top: 5px;
}

.brand-bullets p {
    font-size: 12px;
    color: #777777;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c5a880;
    margin-bottom: 25px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }

.footer-links a {
    font-size: 12px;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: #ffffff; }
.contact-info-list { list-style: none; }

.contact-info-list li {
    font-size: 12px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-list i {
    color: #c5a880;
    font-size: 14px;
    margin-top: 2px;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-circle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-circle:hover {
    border-color: #c5a880;
    color: #c5a880;
}

.pakistan-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 2px;
    gap: 10px;
}

.flag-box {
    width: 24px;
    height: 16px;
    background-color: #004120;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-box::before {
    content: "";
    position: absolute;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: #ffffff;
}

.flag-box::after {
    content: "🌙"; 
    font-size: 8px;
    color: #ffffff;
    margin-left: 4px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text .tag-sub {
    font-size: 8px;
    font-weight: 500;
    color: #555555;
    text-transform: uppercase;
    line-height: 1;
}

.badge-text .tag-main {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.footer-bottom-section {
    width: 100%;
    border-top: 1px solid rgba(181, 148, 115, 0.15);
    background-color: #050505;
}

.bottom-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px;
    font-size: 11px;
    color: #555555;
}

.bottom-links a {
    color: #555555;
    text-decoration: none;
    margin-left: 20px;
}

.bottom-links a:hover { color: #888888; }

/* Story Section Elements */
.story-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.62fr; 
    background-color: #070707;
    min-height: 480px;
    overflow: hidden;
}

.story-content-col {
    padding: 60px 50px 60px 80px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #070707;
}

.brand-mountain-icon {
    width: 38px;
    height: auto;
    margin-bottom: 25px;
    opacity: 0.85;
}

.story-content-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.2px;
}

.story-content-col p {
    color: #9c9c9c;
    font-size: 13px;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 35px;
    font-weight: 400;
}

.btn-story-outline {
    background: transparent;
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: #c5a880; 
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-story-outline:hover {
    border-color: #c5a880;
    background-color: #c5a880;
    color: #070707;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.story-image-col {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.story-image-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background: linear-gradient(to right, #070707, rgba(7, 7, 7, 0));
    pointer-events: none;
}

.cert-badge h3, .section-header h2, .collections-header .title-main {
    color: #fff !important;
}

/* ==========================================================================
   UPDATED & RECONCILED MEDIA QUERIES FOR SEAMLESS RESPONSIVENESS
   ========================================================================== */

/* Large Tablets & Desktop Tweak Breakpoints */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    .hero-main-title {
        font-size: 46px;
    }
    .infobar-grid {
        gap: 25px; 
    }
    .heritage-flex-wrapper {
        gap: 40px;
    }
    .heritage-intro {
        padding-right: 40px;
    }
    .heritage-perks-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }
    .perk-title {
        min-height: auto;
    }
}

@media (max-width: 1100px) {
    .footer-cta-bar {
        grid-template-columns: 1fr 1fr;
    }
    .main-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 10px;
    }
    .footer-col::after {
        display: none;
    }
    .story-content-col {
        padding: 50px 40px;
    }
    .story-content-col h2 {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 15px 20px;
    }
    .nav-menu-list {
        gap: 15px;
    }
    .nav-item-link {
        font-size: 10px;
    }
    .light-banner, .dark-banner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .features-grid, .dark-banner .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 40px 20px;
    }
    .feature-card::after {
        display: none !important;
    }
}

/* Medium Tablets & iPads */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }
    .luxury-hero {
        min-height: auto; 
    }
    .luxury-hero .hero-container {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .hero-content-left {
        max-width: 100%; 
    }
    .hero-main-title {
        font-size: 40px;
    }
    .infobar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .infobar-item {
        justify-content: flex-start;
        padding: 4px 0;
    }
    .collections-section {
        padding: 60px 0;
    }
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .collection-card {
        height: 360px;
    }
    .heritage-flex-wrapper {
        flex-direction: column;
    }
    .heritage-intro {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 0;
        padding-bottom: 40px;
        width: 100%;
    }
    .showcase-container {
        grid-template-columns: 1fr;
    }
    .left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(181, 148, 115, 0.2);
    }
}

/* Small Tablets / Mobile View Trigger */
@media (max-width: 850px) {
    .nav-menu-list {
        display: none; /* Consider building a toggle layout menu script for this trigger */
    }
    .story-section {
        grid-template-columns: 1fr; 
    }
    .story-content-col {
        padding: 60px 30px;
        align-items: center;
        text-align: center;
    }
    .story-content-col p {
        max-width: 100%;
    }
    .story-image-col {
        height: 320px;
    }
    .story-image-col::after {
        width: 100%;
        height: 20%;
        background: linear-gradient(to bottom, #070707, rgba(7, 7, 7, 0));
    }
}

@media (max-width: 768px) {
    .carousel .carousel-caption {
        padding-left: 3rem !important;
    }
    .right-panel {
        grid-template-columns: 1fr; 
        gap: 40px;
        padding: 40px 20px;
    }
    .footer-cta-bar {
        grid-template-columns: 1fr;
    }
    .main-footer-content {
        grid-template-columns: 1fr;
        gap: 35px 0;
    }
    .bottom-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .bottom-links a {
        margin: 0 10px;
    }
    .utility-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Small Mobile Viewports */
@media (max-width: 576px) {
    :root {
        --section-padding: 40px;
    }
    .hero-container {
        padding: 0 20px; 
    }
    .luxury-hero .hero-container {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .hero-main-title {
        font-size: 32px;
        line-height: 1.3;
    }
    .hero-sub-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .hero-action-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .hero-infobar {
        padding: 30px 0;
    }
    .site-container {
        padding: 0 16px;
    }
    .collections-header .title-main {
        font-size: 26px;
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .card-inner-overlay {
        padding: 30px;
    }
    .card-heading {
        font-size: 32px;
    }
    .brand-heritage-panel {
        padding: 40px 20px;
    }
    .heritage-title {
        font-size: 28px;
    }
    .heritage-perks-grid {
        grid-template-columns: 1fr; 
        gap: 35px;
    }
    .btn-card-action, .btn-origin {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .hero-main-title {
        font-size: 28px;
    }
}




@media (max-width: 576px){
.hero-infobar {
    display: none;
    }
}


.page-header
{
    background-image:  url("../img/slider3.jpg");
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #fff !important;
    }



    h1, .h1 {
        color: #fff !important;
    }