:root {
    --primary: #632d13;
    --secondary: #2A3F33;
    --dark: #121212;
    --light: #F9F6F0;
    --text-color: #555555;
    --heading-font: 'Parkinsans', sans-serif;
    --body-font: 'Parkinsans', sans-serif;
}

html,
body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-playfair {
    font-family: var(--heading-font);
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

html,
body {
    overflow-x: hidden !important;
}

/* Typography & Utilities */
.sub-heading {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.sub-heading::before,
.sub-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: currentColor;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.btn-outline-custom:hover {
    background-color: var(--secondary);
    color: #fff;
}

/* Navbar */
.custom-navbar {
    background-color: #ffffff;
    transition: 0.4s ease-in-out;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-navbar.scrolled {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
}

.custom-navbar .navbar-brand img {
    height: 85px;
    width: auto;
    transition: 0.3s ease;
}

.custom-navbar .nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

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

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
    transition: 0.3s;
    border: none;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 100%;
}

.custom-navbar .navbar-toggler-icon i {
    color: var(--dark);
}

/* Mobile Navbar background fix */
@media (max-width: 991.98px) {
    .custom-navbar {
        background-color: #ffffff;
        padding: 10px 0;
    }

    .custom-navbar .navbar-brand img {
        height: 100px;
        max-width: 70vw;
        object-fit: contain;
    }
}

/* Mega Menu Base Styles */
@media (min-width: 992px) {

    .dropdown-mega:hover .dropdown-menu:not(.force-close),
    .dropdown-mega .dropdown-menu.show:not(.force-close) {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        top: 75%;
    }

    .dropdown-mega .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translateY(15px);
        pointer-events: none;
        margin-top: 0;
    }

}

.dropdown-mega {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    border: none;
    border-radius: 0;
    background-color: #050505;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 40px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mega-menu-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.mega-menu-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: var(--heading-font);
    font-weight: 500;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.mega-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/5;
    text-decoration: none;
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
}

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

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

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

.mega-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.mega-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.mega-card-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.2;
    font-family: var(--heading-font);
}

.mega-card-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Adjustments for responsive */
@media (max-width: 1400px) {
    .mega-menu-grid {
        gap: 15px;
    }

    .mega-card-text h3 {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .mega-menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .mega-menu {
        width: 100%;
        padding: 20px;
        background-color: #121212;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-mega .dropdown-menu {
        margin-top: 0;
        border: none;
    }
}

@media (max-width: 576px) {
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

@media (min-width: 992px) {
    .hero-section {
        height: 100vh;
    }
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-subtitle {
    color: var(--primary);
    font-family: var(--body-font);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 100;
    color: #fff;
    margin-top: 350px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.7s both;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 2.4rem;
        margin-top: 0;
    }
}

.hero-text {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 1.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    transition: 0.3s;
    margin: 0 10px !important;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets,
.heroSwiper .swiper-pagination-horizontal.swiper-pagination-bullets,
.heroSwiper .swiper-horizontal>.swiper-pagination-bullets {
    right: auto !important;
    left: 0 !important;
    top: auto !important;
    bottom: 24px !important;
    width: 100% !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.swiper-pagination-bullet-active {
    background: #fff;
    border-color: #fff;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid #fff;
    border-radius: 50%;
}

/* About Section Collage */
.about-images-composition {
    position: relative;
    height: 600px;
    /* margin-right: 30px; */
}

.about-img-main {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 85%;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-top-left {
    position: absolute;
    top: 5%;
    left: 0;
    width: 40%;
    height: 35%;
    z-index: 3;
    border: 12px solid var(--light);
}

.about-img-top-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-bottom-right {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 55%;
    height: 45%;
    z-index: 3;
    border: 12px solid var(--light);
}

.about-img-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .about-images-composition {
        height: 450px;
        margin-right: 0;
        margin-bottom: 40px;
    }
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Collections Section */
.collections-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f9f6f0;
}

.collection-swiper {
    width: 100%;
    padding-bottom: 60px !important;
}

.collection-card-new {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #e0dcd3;
}

.collection-card-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
    z-index: 1;
}

.collection-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card-new:hover img {
    transform: scale(1.08);
}

.collection-card-new .card-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    z-index: 2;
}

.collection-card-new .card-title-btn {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-card-new .card-arrow-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.collection-card-new .card-title-btn:hover,
.collection-card-new .card-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

/* Statement Section */
.statement-section {
    position: relative;
    background-color: var(--secondary);
    padding: 60px 0;
    overflow: hidden;
}

.statement-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.statement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary) 45%, rgba(42, 63, 51, 0.6) 100%);
    /* z-index: 1; */
}

.statement-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.statement-badge i {
    font-size: 0.7rem;
    margin-right: 8px;
}

.statement-list {
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.statement-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.statement-item:hover,
.statement-item.active {
    color: #fff;
    font-weight: 600;
}

.statement-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark) !important;
    padding: 8px 8px 8px 24px !important;
    background: #fff;
    border: none;
    transition: 0.3s ease;
}

.statement-btn:hover {
    transform: translateY(-3px);
}

.statement-btn i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary);
    color: #fff;
    margin-left: 20px;
}

.statement-image-wrapper {
    height: 600px;
    width: 90%;
    margin-left: auto;
    border-radius: 250px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.statement-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .statement-image-wrapper {
        height: 400px;
        width: 100%;
        border-radius: 150px;
        margin-top: 50px;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    background-color: #1f1a17;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    z-index: 1;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/banner/footer-bg-black.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: -1;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #e1c265;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact i {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
}

.footer-contact i {
    color: #e1c265;
    margin-top: 5px;
    margin-right: 15px;
}

.footer-links a:hover {
    color: #e1c265;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #e1c265;
    transform: translateY(-3px);
    color: var(--primary);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Reduce section padding and margins on mobile */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    .pt-5 {
        padding-top: 2rem !important;
    }
    .pb-5 {
        padding-bottom: 2rem !important;
    }
    .mt-5 {
        margin-top: 2rem !important;
    }
    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

/* Products Page Banner */
.products-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 85px;
    /* Account for fixed navbar */
}

.products-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.products-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.products-banner-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Product Card Styling */
.products-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 30px;
}

.product-card:hover {
    color: inherit;
}

.product-image-container {
    background-color: #ebebeb;
    border-radius: 11px;
    /* padding: 5px; */
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.contact-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 6px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #999;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.product-info-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #444;
    font-family: var(--body-font);
}

.product-origin {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0;
    text-transform: capitalize;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
}

@media (max-width: 991px) {
    .products-banner {
        margin-top: 75px;
        height: 50vh;
    }
}

/* Contact Page Styles */
.contact-page-section .contact-info-box {
    border-radius: 1rem 0 0 1rem;
    height: 100%;
}

.contact-item .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-item:hover .icon-box {
    background: #fff;
    color: var(--secondary);
}

.contact-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.contact-social-icons a:hover {
    background: #fff;
    color: var(--secondary);
    transform: translateY(-3px);
}

.custom-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    transition: 0.3s;
}

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

@media (max-width: 991px) {
    .contact-page-section .contact-info-box {
        border-radius: 1rem 1rem 0 0;
    }
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--theme-color);
    background-color: #fff !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(225, 194, 101, 0.15);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--theme-color);
    color: #222;
}

.feature-card-dark {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-color: #2b2521;
}

.feature-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    border-color: var(--theme-color);
    background-color: #3b332d !important;
}

.feature-card-dark:hover .feature-icon {
    background-color: var(--theme-color) !important;
    color: #222 !important;
}

/* FAQ Section */
.faq-section .accordion-button {
    background-color: #fff;
    color: #333;
    box-shadow: none !important;
    padding: 20px 25px;
    border-radius: 10px !important;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background-color: #fcfcfc;
}

.faq-section .accordion-button::after {
    transition: all 0.3s ease;
}

.faq-section .accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
}

.faq-section .accordion-body {
    padding: 20px 25px;
    background-color: #fcfcfc;
}

/* About Page Specific Styles */
:root {
    --theme-color: #e1c265;
}

.text-theme {
    color: var(--theme-color) !important;
}

.btn-theme {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-theme:hover {
    background-color: #d1b255;
}

.btn-dark-theme {
    background-color: #2b2521;
    border-color: #2b2521;
}

.btn-dark-theme:hover {
    background-color: #1a1613;
}

.about-banner {
    background-image: linear-gradient(rgba(31, 26, 23, 0.7), rgba(31, 26, 23, 0.7)), url('../img/banner/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    text-align: left;
    margin-top: 85px;
}

.about-title {
    color: var(--theme-color);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.about-breadcrumb {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.about-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.sub-title {
    color: var(--theme-color);
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sub-title::before,
.sub-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--theme-color);
}

.sub-title::before {
    left: -45px;
}

.sub-title::after {
    right: -45px;
}

.benefit-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.materials-section {
    background-color: #1f1a17;
}

.material-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.02);
}

.team-img-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    padding: 6px;
    border: 1px solid var(--theme-color);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social a {
    color: #ccc;
    margin: 0 7px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.team-social a:hover {
    color: var(--theme-color);
}

.stages-timeline .timeline-line {
    position: absolute;
    top: 25px;
    left: 12%;
    right: 12%;
    height: 1px;
    border-top: 1px dashed #dcdcdc;
    z-index: 1;
}

.stage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px #fff;
}

/* Google Reviews Section */
.reviewsSwiper {
    padding-bottom: 50px !important;
}

.reviewsSwiper .swiper-slide {
    height: auto;
}

.review-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.review-text {
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Instagram Reels Section */
.reel-container {
    aspect-ratio: 9/16;
    background-color: #000;
    cursor: pointer;
}
.reel-video {
    height: 100%;
    object-fit: cover;
}
.reel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.reel-container:hover .reel-overlay {
    opacity: 1;
}
.reel-overlay i {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.reel-container:hover .reel-overlay i {
    transform: scale(1);
}