/* Global Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --dark-color: #333;
    --light-color: #f4f4f4;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
    font-size: 1rem;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 0;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #e9e4d9 60%, #fff 100%);
    padding-top: 90px;
    padding-bottom: 40px;
    margin-bottom: 2rem;
}

.hero-text-content {
    color: #181e2a;
    padding: 2rem 0;
}

.hero-subtitle {
    display: block;
    color: #bfa16a;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.hero-text-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #181e2a;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero-text-content p {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 2rem;
}

.hero-cta-btn {
    background: linear-gradient(90deg, #ff6a2f 0%, #bfa16a 100%);
    color: #fff !important;
    font-weight: 800;
    border-radius: 20px;
    padding: 0.65rem 1.5rem 0.65rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(191,161,106,0.13);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
}
.hero-cta-btn::after {
    content: '\2192'; /* Unicode right arrow */
    font-size: 1.3em;
    margin-left: 0.5em;
    transition: margin-left 0.2s, color 0.2s;
    color: #fff;
}
.hero-cta-btn:hover, .hero-cta-btn:focus {
    background: linear-gradient(90deg, #bfa16a 0%, #ff6a2f 100%);
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(191,161,106,0.18);
    transform: translateY(-2px) scale(1.03);
    text-decoration: none;
}
.hero-cta-btn:hover::after, .hero-cta-btn:focus::after {
    margin-left: 1em;
    color: #ff6a2f;
}

.hero-image-main {
    width: 100%;
    height: 550px;
    min-height: 350px;
    max-width: none;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    margin: 0 auto;
    display: block;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 60px;
        padding-bottom: 30px;
        margin-bottom: 2.5rem;
    }
    .hero-text-content {
        text-align: center;
        padding: 1.5rem 0 1rem 0;
    }
    .hero-text-content h1 {
        font-size: 1.5rem;
    }
    .hero-text-content p {
        font-size: 1rem;
    }
    .hero-image-main {
        height: 220px;
        min-height: 120px;
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
    .hero-section .row {
        flex-direction: column !important;
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 220px;
        padding-top: 18px;
        padding-bottom: 10px;
        margin-bottom: 2.5rem;
    }
    .hero-text-content {
        padding: 0.5rem 0.2rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .hero-text-content h1 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .hero-text-content p {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }
    .hero-cta-btn {
        font-size: 0.82rem;
        padding: 0.38rem 0.7rem 0.38rem 0.7rem;
        border-radius: 12px;
        max-width: 130px;
    }
    .hero-image-main {
        height: 120px;
        min-height: 100px;
        max-width: 90vw;
        margin-top: 0.2rem;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: static;
    }
    .hero-section .row {
        flex-direction: column !important;
        gap: 0.5rem;
    }
}

/* Featured Products */
.featured-products {
    /* background-color: white; */
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* About Section */
.about-section {
    background: #fff;
    position: relative;
    z-index: 1;
}

.about-img-collage {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1.2rem;
}

.about-img-collage img {
    width: 100%;
    max-width: 370px;
    max-height: 320px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 6px solid #f8f6f3;
    background: #fff;
    margin-bottom: 1rem;
}

.about-img-collage img:last-child {
    margin-bottom: 0;
}

.about-img-main img {
    width: 85%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 6px solid #f8f6f3;
}

.about-img-secondary img {
    width: 60%;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 4px solid #f8f6f3;
    margin-right: 2.5rem;
    margin-top: -1.5rem;
}

.about-content-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    margin-left: 0;
}

.about-subtitle {
    text-transform: uppercase;
    color: #d2b48c;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
}

.about-heading {
    font-size: 1.1rem;
    color: #8B4513;
    font-weight: 700;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.about-desc {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
}

.about-mission-statement {
    font-style: italic;
    background: #f8f6f3;
    border-left: 4px solid #d2b48c;
    padding: 1rem 1.5rem;
    color: #6d4c1b;
    border-radius: 0 18px 18px 0;
    font-size: 1.05rem;
    margin-top: 1.2rem;
}

.about-quality-list {
    margin: 1.2rem 0 0 0;
    padding-left: 1.2rem;
}

.about-quality-list li {
    font-size: 1.02rem;
    color: #8B4513;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2em;
}

.about-quality-list li::before {
    content: '\2022';
    color: #d2b48c;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0.1em;
}

@media (max-width: 991px) {
    .about-img-collage {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
    }
    .about-img-main img {
        width: 60vw;
        min-width: 180px;
    }
    .about-img-secondary img {
        width: 30vw;
        min-width: 100px;
        margin-right: 0.5rem;
        margin-top: 0;
    }
    .about-content-card {
        padding: 2rem 1rem;
    }
    .about-section-card, .about-section-card.reverse {
        flex-direction: column !important;
        padding: 1.5rem 0.5rem;
        gap: 1.2rem;
        align-items: stretch;
    }
    .about-section-img {
        max-width: 100vw;
        min-width: 0;
        margin-bottom: 1.2rem;
    }
    .about-section-content {
        width: 100%;
    }
    .about-hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .main-nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 92vw;
        max-width: 380px;
        right: 0;
        margin: 0 auto;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        border-radius: 0 0 24px 24px;
        z-index: 9999;
        padding: 2rem 0 2rem 0;
        text-align: center;
        transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s;
        transform: translateY(-30px);
        opacity: 0;
        pointer-events: none;
    }
    .main-nav-links.show {
        display: block;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .custom-nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .custom-nav-menu .nav-link {
        font-size: 1.18rem;
        padding: 0.8rem 0;
        font-weight: 700;
        color: #8B4513 !important;
        border-radius: 12px;
        transition: background 0.2s, color 0.2s;
    }
    .custom-nav-menu .nav-link.active,
    .custom-nav-menu .nav-link:hover {
        background: #f8f6f3;
        color: #f37021 !important;
    }
    #mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.7rem;
        width: 40px;
        height: 40px;
        margin-left: 1rem;
        z-index: 10001;
        box-shadow: none;
    }
    .custom-hamburger-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: none;
        transition: background 0.2s;
        box-shadow: none;
    }
    #mobile-menu-toggle:hover .custom-hamburger-icon,
    #mobile-menu-toggle:focus .custom-hamburger-icon {
        background: #f8f6f3;
    }
    .about-tabs {
        gap: 0.2rem;
        margin-bottom: 1.2rem;
    }
    .about-tab-btn {
        font-size: 0.92rem;
        padding: 0.5rem 1.1rem;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .about-section .row {
        flex-direction: column;
    }
    .about-img-collage {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    .about-img-main img, .about-img-secondary img {
        width: 90vw;
        min-width: 0;
        margin-right: 0;
    }
    .about-content-card {
        margin-top: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
    .about-title {
        font-size: 1.4rem;
    }
    .about-mission-statement {
        padding: 0.7rem 1rem;
        font-size: 0.98rem;
    }
    .about-section-card, .about-section-card.reverse {
        padding: 1rem 0.2rem;
        gap: 0.7rem;
    }
    .about-section-img img {
        max-width: 98vw;
        min-width: 0;
        border-radius: 12px;
    }
    .about-title {
        font-size: 1.2rem;
    }
    .about-hero-section {
        height: 28vh !important;
        min-height: 120px !important;
    }
    .about-hero-section h1 {
        font-size: 1.5rem !important;
    }
    .about-hero-section p.lead {
        font-size: 1rem !important;
    }
    .hero-section {
        height: 40vh;
        min-height: 180px;
        padding-top: 56px;
    }
    .hero-btn-wrapper {
        margin-bottom: 16px;
    }
    .home-content-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    .home-content-section .col-lg-6:last-child {
        margin-top: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
    .home-features-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .home-features-list li {
        width: 100%;
        max-width: 340px;
        margin-bottom: 1rem;
        padding: 1rem 1.2rem;
        font-size: 1.08rem;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .home-features-list li:last-child {
        margin-bottom: 0;
    }
    .about-tabs {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.2rem;
        align-items: stretch;
    }
    .about-tab-btn {
        width: 100%;
        margin-bottom: 0.7rem;
        font-size: 0.98rem;
        padding: 0.9rem 0.5rem;
        border-radius: 18px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        background: #f8f6f3;
        color: #8B4513;
        border: 1px solid #eee;
        text-align: center;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .about-tab-btn.active {
        background: linear-gradient(90deg, #f37021 60%, #d2b48c 100%);
        color: #fff;
        box-shadow: 0 4px 16px rgba(243,112,33,0.13);
        border: none;
    }
    .about-tab-content {
        display: none;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        background: #fff;
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        animation: fadeInTab 0.4s;
    }
    .about-tab-content.active {
        display: block;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-read-more {
    display: inline-block;
    background: linear-gradient(90deg, #f37021 60%, #d2b48c 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(243,112,33,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}
.btn-read-more:hover {
    background: #b85c13;
    color: #fff;
    box-shadow: 0 4px 16px rgba(184,92,19,0.13);
    text-decoration: none;
}

/* Header/Menu Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    pointer-events: auto;
    transition: none;
    font-size: 1rem;
    min-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 2px 8px rgba(191,161,106,0.04);
}

.custom-navbar {
    background: #fff;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0.3rem 1.2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-brand {
    margin-right: auto;
}

.navbar-brand img, .footer-logo {
    margin: 10px;
    max-height: 64px;
    margin-top: 0;
    margin-bottom: 0;
}

.custom-nav-menu {
    margin-left: auto;
}

.custom-nav-menu .nav-link {
    color: #f37021 !important;
    font-weight: 700;
    margin: 0 0.5rem;
    font-size: 1rem;
    padding: 0.4rem 0.7rem;
    transition: color 0.2s;
    line-height: 1.2;
}

.custom-nav-menu .nav-link.active,
.custom-nav-menu .nav-link:hover {
    color: #b85c13 !important;
}

.search-btn {
    background: none;
    border: 2px solid #f37021;
    color: #f37021;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
}

.search-btn:hover {
    background: #f37021;
    color: #fff;
}

/* Remove sticky-header class effects */
.sticky-header {
    /* No effect needed, header is always styled */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-header, .custom-navbar {
        min-height: 50px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-brand img {
        max-height: 45px;
    }
    .custom-nav-menu .nav-link {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }
    .custom-navbar {
        flex-wrap: nowrap;
    }
    .book-meeting-header-btn {
        margin: 1.2rem auto 0.5rem auto;
        width: 90vw;
        text-align: center;
        display: block;
    }
    .navbar-brand, #mobile-menu-toggle, .main-nav-links {
        order: unset;
    }
    .custom-nav-menu {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .custom-nav-menu .nav-link {
        text-align: left !important;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        width: 100%;
    }
    .book-meeting-header-btn.w-100 {
        margin-top: 1.1rem;
        border-radius: 10px;
        font-weight: 800;
        font-size: 1.08rem;
        background: linear-gradient(90deg, #bfa16a 60%, #e2c178 100%);
        color: #181e2a !important;
        box-shadow: 0 4px 16px rgba(191,161,106,0.13);
        border: 2px solid #e2c178;
        letter-spacing: 0.5px;
        padding: 0.8rem 0;
        text-align: center;
        display: block;
    }
    .book-meeting-header-btn.w-100:hover, .book-meeting-header-btn.w-100:focus {
        background: linear-gradient(90deg, #e2c178 60%, #bfa16a 100%);
        color: #181e2a !important;
        box-shadow: 0 6px 24px rgba(191,161,106,0.18);
        border-color: #bfa16a;
    }
}

@media (max-width: 768px) {
    .custom-navbar {
        border-radius: 0 0 24px 24px;
        min-height: 56px;
    }
    .hero-section {
        height: 40vh;
        min-height: 180px;
        padding-top: 56px;
    }
    .hero-btn-wrapper {
        margin-bottom: 16px;
    }
}

/* Hide default bootstrap navbar */
.navbar, .navbar-collapse, .navbar-toggler {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .card-img-top {
        height: 200px;
    }
}

.home-content-section {
    background: #f8f6f3;
}
.home-content-section .container {
    max-width: 1200px;
}
.home-content-section .row {
    align-items: center;
}
.home-content-section img {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.home-content-section .col-lg-6:last-child {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    margin-left: 0;
}
.home-content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1.2rem;
}
.home-content-section p {
    font-size: 1.08rem;
    color: #333;
}
.home-content-section ul {
    margin: 1.5rem 0 0.5rem 0;
    padding-left: 0;
}
.home-content-section ul li {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5em;
    position: relative;
    color: #8B4513;
    font-weight: 500;
}
.home-content-section ul li::before {
    content: '\2022';
    color: #f37021;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 0.1em;
}
.home-content-section .fw-bold {
    color: #b85c13;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
@media (max-width: 991px) {
    .home-content-section .col-lg-6:last-child {
        padding: 2rem 1rem;
    }
}
@media (max-width: 767px) {
    .home-content-section .row {
        flex-direction: column;
    }
    .home-content-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    .home-content-section .col-lg-6:last-child {
        margin-top: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
}

.home-features-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding-left: 0;
}
.home-features-list li {
    font-size: 1.12rem;
    color: #8B4513;
    font-weight: 600;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    min-width: 180px;
    justify-content: center;
}
@media (max-width: 767px) {
    .home-features-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .home-features-list li {
        width: 100%;
        max-width: 340px;
        margin-bottom: 1rem;
        padding: 1rem 1.2rem;
        font-size: 1.08rem;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .home-features-list li:last-child {
        margin-bottom: 0;
    }
}

.home-content-section .animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.home-content-section .animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-features-list li.animate-fade-up-stagger {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.home-features-list li.animate-fade-up-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop tab style (default) */
.about-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.about-tab-btn {
    background: #fff;
    border: none;
    outline: none;
    color: #8B4513;
    font-weight: 700;
    font-size: 1.12rem;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    position: relative;
}
.about-tab-btn.active {
    background: linear-gradient(90deg, #f37021 60%, #d2b48c 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(243,112,33,0.13);
}
.about-tab-btn:not(.active):hover {
    background: #f8f6f3;
    color: #b85c13;
}
.about-tab-content-wrapper .about-tab-content {
    display: none;
}
.about-tab-content-wrapper .about-tab-content.active {
    display: block;
    animation: fadeInTab 0.5s;
}

/* Mobile accordion style */
@media (max-width: 767px) {
    .about-tabs {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.2rem;
        align-items: stretch;
    }
    .about-tab-btn {
        width: 100%;
        margin-bottom: 0;
        font-size: 1rem;
        padding: 1rem 0.5rem;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        background: #f8f6f3;
        color: #8B4513;
        border: 1px solid #eee;
        text-align: left;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .about-tab-btn.active {
        background: linear-gradient(90deg, #f37021 60%, #d2b48c 100%);
        color: #fff;
        box-shadow: 0 4px 16px rgba(243,112,33,0.13);
        border: none;
    }
    .about-tab-content-wrapper {
        display: flex;
        flex-direction: column;
    }
    .about-tab-content {
        display: none;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        background: #fff;
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        animation: fadeInTab 0.4s;
    }
    .about-tab-content.active {
        display: block;
    }
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #3a2a13;
    font-size: 1.08rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    cursor: pointer;
}
.read-more-link .read-more-arrow {
    color: #f37021;
    font-size: 1.3em;
    margin-left: 0.7em;
    transition: margin-left 0.2s, color 0.2s;
}
.read-more-link:hover,
.read-more-link:focus {
    color: #f37021;
    text-decoration: none;
}
.read-more-link:hover .read-more-arrow,
.read-more-link:focus .read-more-arrow {
    margin-left: 1.1em;
    color: #b85c13;
}

.mission-highlight-card {
    background: #f8f6f3;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(243,112,33,0.07);
    display: inline-block;
    min-width: 220px;
    max-width: 320px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.7rem 1.2rem;
}

img, .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .hero-section {
        height: 95vh;
        min-height: 600px;
        max-height: 900px;
    }
    .hero-image {
        height: 100%;
        min-height: 600px;
        max-height: 900px;
    }
}

/* --- Product Section (Shop) --- */
.shop-section-bg {
    background: #faf9f6;
}
.shop-section-title {
    color: #181e2a;
    font-weight: 700;
}
.shop-section-subtitle {
    color: #bfa16a;
    font-size: 1rem;
    letter-spacing: 1px;
}
.shop-section-desc {
    max-width: 600px;
    color: #888;
    margin-left: auto;
    margin-right: auto;
}
.product-card {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}
.product-card:hover {
    box-shadow: 0 8px 24px rgba(191,161,106,0.13);
    transform: translateY(-2px) scale(1.02);
}
.product-card .product-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #f8f6f3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card .product-content {
    width: 100%;
    padding: 0.4rem 0.3rem 0.6rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product-card .product-title {
    color: #181e2a;
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0.3rem 0 0.1rem 0;
    text-align: center;
}
.product-card .product-button {
    border-radius: 16px;
    padding: 4px 14px;
    font-size: 0.89rem;
    margin-top: 0.2rem;
    font-weight: 500;
}
.product-card .product-button:hover {
    background: #bfa16a;
    color: #fff;
    border-color: #bfa16a;
}
.product-card .badge-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #bfa16a;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    z-index: 2;
}

/* Remove old max-width/margin for product cards in grid */
.featured-products .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 991px) {
    .product-card .product-content {
        padding: 0.5rem 0.3rem 0.7rem 0.3rem;
    }
    .product-card .product-title {
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .product-card .product-content {
        padding: 0.4rem 0.1rem 0.6rem 0.1rem;
    }
    .product-card .product-title {
        font-size: 0.95rem;
    }
}

.product-gallery {
    max-width: 700px;
    margin: 3.5rem auto 2.5rem auto;
    text-align: center;
}
.product-gallery-main {
    width: 100%;
    max-width: 420px;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    background: #fff;
    margin-bottom: 1.5rem;
    border: 1.5px solid #f4e7d3;
    padding: 1.2rem;
    transition: box-shadow 0.2s, border 0.2s;
}
.product-gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}
.product-gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
    background: #f8f6f3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border: 2px solid #bfa16a;
    box-shadow: 0 4px 16px rgba(191,161,106,0.13);
    transform: scale(1.08);
}
@media (max-width: 767px) {
    .product-gallery-main { max-width: 98vw; height: 140px; padding: 0.5rem; }
    .product-gallery-thumbs { gap: 0.5rem; }
    .product-gallery-thumb { width: 38px; height: 38px; }
}
.product-detail-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    padding: 3rem 2.2rem;
    margin-bottom: 2.5rem;
    border: 1.5px solid #eee;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
}
.product-detail-card h2 {
    color: #8B4513;
    font-weight: 900;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}
.product-detail-card h5 {
    color: #bfa16a;
    font-weight: 700;
    margin-top: 1.7rem;
    margin-bottom: 0.8rem;
    font-size: 1.18rem;
    border-bottom: 1px solid #f4e7d3;
    padding-bottom: 0.3rem;
}
.product-detail-card ul {
    margin-bottom: 1.3rem;
    padding-left: 1.2rem;
}
.product-detail-card ul li {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.product-detail-card p {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 1.3rem;
    text-align: center;
}

.product-detail-wrapper {
    background: #faf9f6;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border: 1.5px solid #eee;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin: 2.5rem auto 2.5rem auto;
    max-width: 950px;
}
@media (max-width: 991px) {
    .product-detail-wrapper {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        margin: 1.2rem 0;
    }
}
.product-main-img {
    width: 100%;
    max-width: 340px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #fff;
    margin-bottom: 1.2rem;
    border: 1.5px solid #f4e7d3;
    transition: box-shadow 0.2s, border 0.2s;
}
.product-thumbs-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}
.product-thumb-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f8f6f3;
    transition: border 0.2s, box-shadow 0.2s;
}
.product-thumb-img.active,
.product-thumb-img:hover {
    border: 2px solid #bfa16a;
    box-shadow: 0 2px 8px rgba(191,161,106,0.13);
}
.product-info-card {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
}
.product-info-title {
    color: #8B4513;
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.product-info-price {
    color: #bfa16a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.product-info-desc {
    color: #555;
    font-size: 1.13rem;
    margin-bottom: 1.2rem;
}
.product-attributes-table {
    width: 100%;
    margin-bottom: 1.2rem;
}
.product-attributes-table td {
    padding: 0.3rem 0.7rem 0.3rem 0;
    color: #333;
    font-size: 1.08rem;
}
.product-attributes-table td:first-child {
    font-weight: 600;
    color: #8B4513;
    width: 120px;
}
@media (max-width: 767px) {
    .product-detail-wrapper {
        padding: 0.7rem 0.2rem 1.2rem 0.2rem;
        margin: 0.7rem 0;
    }
    .product-main-img { max-width: 98vw; height: 180px; }
    .product-info-title { font-size: 1.2rem; }
    .product-info-price { font-size: 1.1rem; }
    .product-divider-mobile {
        border-top: 1.5px solid #e5e5e5;
        margin: 1.2rem 0 1.2rem 0;
    }
}

.testimonials-section {
    background: #fafbfc;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.testimonials-section .section-title {
    color: #181e2a;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.testimonials-section .section-subtitle {
    color: #bfa16a;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}
.testimonials-section .section-desc {
    color: #888;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.08rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 1.5rem;
    border: 1.5px solid #f4e7d3;
    transition: box-shadow 0.2s;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonial-card:hover {
    box-shadow: 0 12px 36px rgba(191,161,106,0.13);
}
.testimonial-card img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(191,161,106,0.10);
    margin-bottom: 1.1rem;
}
.testimonial-card .testimonial-quote {
    color: #bfa16a;
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    font-family: serif;
    line-height: 1;
}
.testimonial-card p {
    color: #444;
    font-size: 1.13rem;
    font-style: italic;
    margin-bottom: 1.2rem;
}
.testimonial-card .testimonial-name {
    font-weight: 800;
    color: #181e2a;
    font-size: 1.13rem;
    margin-bottom: 0.2rem;
}
.testimonial-card .testimonial-country {
    color: #b0b0b0;
    font-size: 0.98rem;
}
@media (max-width: 991px) {
    .testimonial-card {
        min-height: 320px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
}
@media (max-width: 767px) {
    .testimonials-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .testimonial-card {
        min-height: 0;
        margin-bottom: 2.2rem;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .testimonial-card img {
        width: 56px;
        height: 56px;
    }
    .testimonials-section .section-title {
        font-size: 1.3rem;
    }
    .testimonial-card .testimonial-quote {
        font-size: 1.5rem;
    }
    .testimonial-card p {
        font-size: 1rem;
    }
    .testimonial-card .testimonial-name {
        font-size: 1rem;
    }
}

/* Footer CTA Section */
.footer-cta-section {
    position: relative;
    background: #181e2a;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.footer-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24, 30, 42, 0.7);
    z-index: 2;
}
.footer-cta-section .container {
    position: relative;
    z-index: 3;
}
.footer-cta-label {
    color: #e2c178;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}
.footer-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}
.footer-cta-desc {
    color: #f4f4f4;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}
.footer-cta-btn {
    background: #e2c178;
    color: #181e2a;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.7rem 2.2rem;
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(226,193,120,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
    display: inline-block;
}
.footer-cta-btn:hover {
    background: #bfa16a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(191,161,106,0.13);
}

/* Footer Main Section */
.custom-footer-section {
    background: #f8f6f3;
    color: #6d5c3d;
    font-size: 1rem;
    border-top: 1px solid #e2c178;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #181e2a;
    letter-spacing: 1px;
}
.footer-about {
    color: #6d5c3d;
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
}
.footer-social-links a {
    color: #6d5c3d;
    font-size: 1.3rem;
    margin-right: 1.1rem;
    transition: color 0.2s;
}
.footer-social-links a:last-child {
    margin-right: 0;
}
.footer-social-links a:hover {
    color: #bfa16a;
}
.footer-contact-title,
.footer-signup-title {
    color: #bfa16a;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}
.footer-contact-info {
    color: #181e2a;
    font-size: 1.01rem;
}
.footer-contact-phone {
    color: #181e2a;
    font-weight: 700;
}
.footer-signup-form {
    max-width: 340px;
}
.footer-signup-form input[type="email"] {
    border-radius: 4px;
    border: 1px solid #e2c178;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #181e2a;
}
.footer-signup-btn {
    background: #181e2a;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.footer-signup-btn:hover {
    background: #bfa16a;
    color: #181e2a;
}
.footer-signup-desc {
    color: #6d5c3d;
    font-size: 0.98rem;
}
@media (max-width: 991px) {
    .footer-cta-title { font-size: 1.5rem; }
    .footer-cta-section { min-height: 220px; }
    .custom-footer-section { font-size: 0.97rem; }
}
@media (max-width: 767px) {
    .footer-cta-title { font-size: 1.1rem; }
    .footer-cta-section { min-height: 120px; padding: 2rem 0; }
    .custom-footer-section {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }
    .custom-footer-section .row {
        gap: 0.3rem;
    }
    .custom-footer-section .col-md-4 {
        background: none;
        box-shadow: none;
        border-radius: 6px;
        padding: 0.3rem 0.2rem 0.3rem 0.2rem;
        margin-bottom: 0.1rem;
    }
    .footer-logo {
        height: 26px;
        max-width: 40px;
        margin-bottom: 0.1rem;
    }
    .footer-brand {
        margin-bottom: 0.1rem;
    }
    .footer-brand-name {
        font-size: 0.98rem;
        margin-bottom: 0.1rem;
    }
    .footer-about {
        margin-bottom: 0.1rem;
        font-size: 0.93rem;
    }
    .footer-social-links {
        margin-bottom: 0.1rem;
        gap: 0.7rem;
    }
    .footer-social-links a {
        font-size: 1.2rem;
    }
    .footer-contact-title,
    .footer-signup-title {
        font-size: 0.93rem;
        margin-bottom: 0.1rem;
    }
    .footer-contact-info {
        font-size: 0.93rem;
        margin-bottom: 0.1rem;
    }
    .footer-signup-form {
        margin-bottom: 0.1rem;
    }
    .footer-signup-form input[type="email"] {
        font-size: 0.93rem;
        padding: 0.3rem 0.5rem;
        margin-bottom: 0.1rem;
        border-radius: 4px;
    }
    .footer-signup-btn {
        font-size: 0.93rem;
        padding: 0.3rem 0.5rem;
        border-radius: 4px;
    }
    .footer-signup-desc {
        font-size: 0.9rem;
        margin-top: 0.1rem;
    }
    .col-md-4 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.footer-logo {
    height: 80px;
    max-width: 180px;
    width: auto;
    display: block;
    margin-right: 1.2rem;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .footer-logo {
        height: 56px;
        max-width: 120px;
        margin-right: 0.7rem;
    }
}

/* Contact Form Improvements */
.contact-form {
    background: #faf9f6;
    border: 1px solid #e2c178;
    border-left: 3px solid #bfa16a;
    box-shadow: none;
    padding: 1rem 1rem 0.7rem 1rem;
    margin-bottom: 0;
}
.contact-form .form-label {
    font-weight: 600;
    color: #6d5c3d;
    margin-bottom: 0.15rem;
    font-size: 0.98rem;
}
.contact-form .form-control, .contact-form textarea {
    border-radius: 6px;
    border: 1px solid #e2c178;
    background: #fff;
    color: #181e2a;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    padding: 0.45rem 0.7rem;
}
.contact-form textarea {
    min-height: 70px;
    resize: vertical;
}
.contact-form .btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    background: #bfa16a !important;
    border: none;
    color: #181e2a !important;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(191,161,106,0.13);
    opacity: 1 !important;
    filter: none !important;
    cursor: pointer;
}
.contact-form .btn:hover, .contact-form .btn:focus {
    background: #e2c178 !important;
    color: #181e2a !important;
    box-shadow: 0 4px 16px rgba(191,161,106,0.18);
    opacity: 1 !important;
    filter: none !important;
}
@media (max-width: 991px) {
    .contact-form {
        padding: 0.7rem 0.3rem 0.5rem 0.7rem;
    }
}
@media (max-width: 767px) {
    .contact-form {
        border-left: 2px solid #bfa16a;
        padding: 0.5rem 0.1rem 0.3rem 0.5rem;
    }
    .contact-form .btn {
        width: 100%;
        display: block;
        margin-top: 0.3rem;
    }
}

.book-meeting-header-btn {
    background: linear-gradient(90deg, #e2c178 0%, #bfa16a 100%);
    color: #181e2a !important;
    font-weight: 700;
    border-radius: 24px;
    padding: 0.45rem 1.1rem 0.45rem 1rem;
    font-size: 0.97rem;
    box-shadow: 0 2px 8px rgba(191,161,106,0.10);
    border: 1.5px solid #e2c178;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.book-meeting-header-btn i {
    font-size: 1em;
    margin-right: 0.2em;
}
.book-meeting-header-btn:hover, .book-meeting-header-btn:focus {
    background: linear-gradient(90deg, #f7e3a1 0%, #e2c178 100%);
    color: #181e2a !important;
    box-shadow: 0 4px 16px rgba(191,161,106,0.18);
    text-decoration: none;
    border-color: #bfa16a;
}
@media (max-width: 991px) {
    .book-meeting-header-btn {
        width: 90vw;
        margin: 1.2rem auto 0.5rem auto;
        font-size: 1rem;
        padding: 0.7rem 0;
        text-align: center;
        justify-content: center;
    }
}

/* Product Grid Layout */
.product-grid {
    margin-bottom: 1rem;
}

.product-grid .col-6 {
    margin-bottom: 1rem;
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

.gallery-section .video-container {
    position: relative;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    overflow: hidden;
    margin: 0;
    height: 255px;
}

.gallery-section .video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-section .video-container video {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-slider-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #fff;
    transition: all 0.4s ease;
    margin: 0;
}

.gallery-slider-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-swiper {
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
}

.gallery-swiper .swiper-slide {
    height: 255px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform;
    margin: 0;
    padding: 0;
    display: block;
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.08);
}

.gallery-swiper .swiper-pagination {
    bottom: 15px;
    z-index: 10;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #bfa16a;
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .gallery-section {
        padding: 0;
    }
    
    .gallery-section .video-container,
    .gallery-slider-wrapper {
        margin: 0;
    }
    
    .gallery-section .video-container,
    .gallery-swiper .swiper-slide {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 0;
    }
    
    .gallery-section .video-container,
    .gallery-swiper .swiper-slide {
        height: 180px;
    }
    
    .gallery-section .video-container,
    .gallery-slider-wrapper {
        border-radius: 15px;
        margin: 0;
    }
    
    .gallery-swiper .swiper-slide img {
        border-radius: 15px;
    }
} 