/* assets/css/main.css */
:root {
    --clr-bg: #ebebe5;
    --clr-dark: #212122;
    --clr-primary: #A67350;
    --clr-light: #ffffff;
    --clr-gray: #6b6b6b;
    --clr-badge-bg: rgba(255, 255, 255, 0.4);

    --font-primary: 'Inter', sans-serif;

    --fs-h1: clamp(3rem, 8vw, 8.6rem);
    --fs-h2: clamp(1.2rem, 3vw, 1.8rem);
    --fs-body: 1.1rem;
    --fs-small: 0.875rem;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --radius-pill: 50px;
    --radius-badge: 30px;
}

body {
    background-color: var(--clr-bg);
    font-family: var(--font-primary);
    color: var(--clr-dark);
    margin: 0;
    padding: 0;
}

main {
    overflow-x: clip;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--fw-bold);
    margin-bottom: 0.5rem;
}

/* Navbar Custom */
.custom-navbar {
    background-color: transparent;
    z-index: 1030;
    position: fixed;
    top: 1.3rem;
    width: 100%;
}

.custom-navbar .container {
    max-width: 1400px;
}

.navbar-inner {
    background-color: var(--clr-dark);
    border-radius: var(--radius-pill);
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-bottom: 4px solid var(--clr-primary);
}

.brand-logo {
    height: 35px;
    /* Adjust as needed */
    width: auto;
}

.custom-navbar .navbar-nav .nav-link {
    color: #c0c0c0;
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    padding: 0.5rem 1.2rem;
    transition: color 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: var(--clr-light);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    color: var(--clr-light);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.search-icon:hover {
    color: var(--clr-primary);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--fs-body);
}

.btn-primary-custom {
    background: linear-gradient(88deg, #EBB38B -2.54%, #F5C39E 38.98%, #FFD4B1 104.85%);
    color: var(--clr-dark);
    border: none;
    font-weight: var(--fw-semibold);
}

.btn-primary-custom:hover {
    background-color: #be845c;
    color: var(--clr-dark);
}

.btn-dark-custom {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    /* border: none; */
}

.btn-dark-custom:hover {
    background-color: #111;
    color: var(--clr-light);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
}

.btn-outline-custom:hover {
    background-color: var(--clr-dark);
    color: var(--clr-light);
}

/* Hero Section */
.hero-section {
    padding-top: 6.5rem;
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(233, 228, 216, 0.20) 50%, rgba(238, 211, 181, 0.20) 100%);
    background: url('../images/index/hero-bg.svg') no-repeat center / cover;
}

.hero-section .right-hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    height: 82%;
    max-height: 600px;
    pointer-events: none;
}

.hero-text-col {
    padding-right: 2rem;
    z-index: 2;
}

.hero-title {
    font-size: var(--fs-h1);
    line-height: normal;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #A67350 0.3%, #CF9465 40.54%, #DA9067 71.57%, #C77240 101.14%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: var(--fs-h2);
    color: var(--clr-dark);
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: var(--fs-body);
    color: var(--clr-gray);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.50);
    padding: 0.5rem;
    border-radius: var(--radius-badge);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--clr-dark);
}

.badge-custom img {
    height: 18px;
    width: 18px;
    object-fit: contain;
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-products-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Marquee Section */
.marquee-section {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 40s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    padding: 0 2rem;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    color: #e0e0e0;
    position: relative;
}

.marquee-content span::before {
    content: url('../images/index/asterisk.svg');
    position: absolute;
    top: 58%;
    left: 0;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.marquee-content span.material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-inner {
        border-radius: 20px;
        padding: 0.5rem 1.5rem;
    }

    .navbar-actions {
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .custom-navbar .navbar-nav {
        text-align: left;
        margin-top: 1rem;
        width: 100%;
    }

    .navbar-collapse {
        width: 100%;
    }

    .hero-section {
        text-align: center;
        padding-top: 9rem;
        min-height: auto;
    }

    .hero-text-col {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .custom-navbar .navbar-nav .nav-link {
        padding: 1rem 1.2rem !important;
    }
}

/* Explore Section */

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--clr-dark);
    font-weight: var(--fw-bold);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-card {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    background-color: #2b2b2b;
    text-decoration: none;
    min-height: 250px;
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-img {
    transform: scale(1.05);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    color: var(--clr-light);
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: var(--fw-medium);
    display: flex;
    align-items: center;
    color: var(--clr-light);
    margin: 0;
}

.category-card-title .material-symbols-outlined {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-title .material-symbols-outlined {
    transform: translateX(5px);
}

@media (min-width: 992px) {
    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
    }

    .explore-card-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .explore-card-2 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .explore-card-3 {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
    }

    .explore-card-4 {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }
}

/* Comfort Section */
.comfort-section {
    background-color: var(--clr-dark);
}

/* Custom Tabs */
.custom-tabs {
    gap: 0.5rem;
}

.custom-tabs .nav-link {
    color: var(--clr-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    background-color: transparent;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    border-color: var(--clr-light);
}

.custom-tabs .nav-link.active {
    background-color: var(--clr-primary);
    color: var(--clr-light);
    border-color: var(--clr-primary);
}

/* Typography */
.comfort-title {
    color: var(--clr-light);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: var(--fw-bold);
}

.comfort-desc {
    color: #a0a0a0;
    font-size: var(--fs-body);
}

/* Swiper Nav Controls */
.swiper-controls-wrapper {
    position: relative;
}

.swiper-nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--clr-light);
    width: 60px;
    height: 38px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
    border-color: var(--clr-light);
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-nav-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Swiper Pagination Override */
.swiper-pagination.swiper-pagination-bullets {
    position: static;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
}

.swiper-pagination .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary);
    transform: scale(1.2);
}

/* Comfort Card Specifics */
.comfort-card {
    height: 460px;
}

.section-desc {
    color: #212122;
    font-size: var(--fs-body);
}

/* Light theme for swiper controls */
.everyday-section .swiper-nav-btn {
    border-color: #dcdcdc;
    color: var(--clr-dark);
}

.everyday-section .swiper-nav-btn:hover {
    border-color: var(--clr-dark);
}

.everyday-pagination .swiper-pagination-bullet {
    background: #d1d1d1;
}

.everyday-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

/* Product Card */
.product-card {
    background-color: var(--clr-light);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-card-img-wrapper {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-badge {
    background-color: #f8efe8;
    color: #c0855f;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.spec-badge {
    background-color: #f4f5f7;
    color: var(--clr-dark);
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: var(--fw-medium);
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #D1D1D6;
}

.product-btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
}

/* Heritage Section */
.heritage-top {
    background-color: #244545;
    position: relative;
}

.skyline-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/index/section-bg.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.heritage-bottom {
    background-color: var(--clr-bg);
    padding-top: 1.2rem;
    padding-bottom: 5rem;
    position: relative;
}

.globe-icon-wrapper {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 175px;
    height: 175px;
    background-color: var(--clr-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 3;
}

.globe-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-box {
    background-color: #1a1a1b;
    border-radius: 30px;
    padding: 7rem 2rem 2.5rem;
    position: relative;
    z-index: 2;
    background-image: url('../images/index/dots-bg.png');
    background-size: cover;
    background-position: center bottom;
}

.stat-number {
    color: #D9943E;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
}

.countries-list {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Partner Section */
/*.partner-section {*/
/*    background-color: var(--clr-bg);*/
/*}*/

/*.partner-desc {*/
/*    max-width: 650px;*/
/*    line-height: 1.6;*/
/*}*/

/*.partner-logo {*/
/*    max-width: 100%;*/
/*    object-fit: contain;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

/*.partner-logo:hover {*/
/*    opacity: 0.8;*/
/*}*/

/*.partner-btn {*/
/*    padding: 0.8rem 2.5rem;*/
/*    font-size: 1rem;*/
/*}*/

/*.partner-logos-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: 15px;*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*}*/

/*.partner-logo-item {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.partner-logo-item .c-logo-wrapper {*/
/*    width: 100%;*/
/*}*/

/*@media (min-width: 768px) {*/
/*    .partner-logos-grid {*/
/*        grid-template-columns: repeat(6, 1fr);*/
/*        gap: 20px;*/
/*    }*/

/*    .partner-logo-item:nth-child(1) {*/
/*        grid-column: 1 / span 2;*/
/*    }*/

/*    .partner-logo-item:nth-child(2) {*/
/*        grid-column: 3 / span 2;*/
/*    }*/

/*    .partner-logo-item:nth-child(3) {*/
/*        grid-column: 5 / span 2;*/
/*    }*/

/*    .partner-logo-item:nth-child(4) {*/
/*        grid-column: 2 / span 2;*/
/*    }*/

/*    .partner-logo-item:nth-child(5) {*/
/*        grid-column: 4 / span 2;*/
/*    }*/
/*}*/

/*@media (max-width: 767px) {*/
/*    .partner-logo-item:nth-child(5) {*/
/*        grid-column: 1 / span 2;*/
/*        justify-self: center;*/
/*        width: calc(50% - 7.5px);*/
/*    }*/
/*}*/

.partner-section {
    background-color: var(--clr-bg);
}

.partner-desc {
    max-width: 650px;
    line-height: 1.6;
}

.partner-logo {
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

.partner-btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo-item {
    display: flex;
    justify-content: center;
}

.partner-logo-item .c-logo-wrapper {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
    }

    /* Row 1 */
    .partner-logo-item:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .partner-logo-item:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .partner-logo-item:nth-child(3) {
        grid-column: 5 / span 2;
    }

    .partner-logo-item:nth-child(4) {
        grid-column: 7 / span 2;
    }

    /* Row 2 */
    .partner-logo-item:nth-child(5) {
        grid-column: 2 / span 2;
    }

    .partner-logo-item:nth-child(6) {
        grid-column: 4 / span 2;
    }

    .partner-logo-item:nth-child(7) {
        grid-column: 6 / span 2;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-logo-item:nth-child(7) {
        grid-column: 1 / span 2;
        justify-self: center;
        width: calc(50% - 7.5px);
    }
}

.c-logo-wrapper {
    background-color: var(--clr-light);
    border-radius: 12px;
    display: inline-block;
    padding: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Section */

.social-link {
    color: var(--clr-dark);
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--clr-primary);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.insta-post {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #d8d8d8;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-post:hover .insta-img {
    transform: scale(1.05);
}

.insta-type-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.insta-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.insta-post:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Support Section */
.support-card {
    background-color: var(--clr-light);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support-card-title {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
}

.support-card-desc {
    color: #4a4a4a;
    font-size: var(--fs-body);
    line-height: 1.6;
    flex-grow: 1;
}

/* Contact Section */
.contact-section {
    background-image: url('../images/index/Contact Section.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Fades the background slightly to ensure readability */
    pointer-events: none;
}

.contact-form-wrapper {
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-form-wrapper .form-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.custom-input {
    background-color: transparent;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-dark);
}

.custom-input:focus {
    background-color: transparent;
    border-color: var(--clr-primary);
    box-shadow: none;
    outline: none;
}

/* Footer Section */
.site-footer-links {
    color: var(--clr-dark);
    background: rgba(221, 221, 222, 0.65);
    backdrop-filter: blur(2px);
}

.footer-logo {
    display: block;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--clr-dark);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--clr-primary);
}

.footer-text-small {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom-links {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-bottom-links a {
    color: var(--clr-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.4rem;
}

.footer-bottom-links a:hover {
    color: var(--clr-primary);
}

.footer-watermark {
    width: 100%;
    max-width: 1400px;
    object-fit: contain;
    pointer-events: none;
    display: block;
    margin: auto;
}


@media (max-width: 568px) {
    .btn {
        font-size: var(--fs-small);
        padding: 0.75rem 1.3rem;
    }
}