* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ==========================================================================
DESIGN SYSTEM & COLOR PALETTE
PerfumeStore - Clean, Elegant, Minimal and Premium UI
Inspired by Dior, Tom Ford Beauty, Chanel Beauty, and Apple
========================================================================== */

:root {
    /* my */

    --general-color-one: #BFA78A;

    /* Brand Palette */
    --primary: #111827;
    /* Elegant dark primary */
    --secondary: #1F2937;
    /* Sleek charcoal secondary */
    --accent: #231604;
    /* Luxury gold accent */
    --background: #F9FAFB;
    /* Pure minimalist background */
    --surface: #FFFFFF;
    /* Clean surface background */
    --border: #E5E7EB;
    /* Subtle, elegant border line */

    /* Semantic Text Colors */
    --text-primary: #111827;
    /* High-contrast body text */
    --text-secondary: #6B7280;
    /* Muted secondary text */
    --muted: #9CA3AF;
    /* Subtle placeholder/disabled text */

    /* Status Colors */
    --success: #16A34A;
    /* Confident success green */
    --warning: #F59E0B;
    /* Subtle warning amber */
    --danger: #DC2626;
    /* Premium danger red */

    /* Hovers and Overlays */
    --hover-gold: #4A2F08;
    /* Luxury hover gold accent */
    --hover-dark: #0F172A;
    /* Dark hover overlay */

    /* Component Specific Mappings */
    --card-bg: var(--surface);
    --navbar-bg: var(--surface);
    --footer-bg: var(--primary);
    --button-bg: var(--primary);
    --button-hover: var(--hover-gold);
    --section-bg: var(--background);

    /* Decorative & Elevation */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.06), 0 1px 5px rgba(0, 0, 0, 0.02);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 4px;
    /* Minimalist sharp corners */
    --border-radius-lg: 8px;
}

/* ==========================================================================
BASE & RESET STYLES (Color Application Only)
========================================================================== */
body {
    background-color: var(--background);
    color: var(--text-primary);
}

a {
    color: var(--text-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--hover-gold) !important;
    text-decoration: none;
}

/* ==========================================================================
NAVBAR (Dior & Chanel inspired minimalism)
========================================================================== */
.navbar,
header {
    background-color: var(--navbar-bg) !important;
    border-bottom: 1px solid var(--border) !important;
}

.navbar-brand {
    color: var(--text-primary) !important;
    font-weight: 700;
}

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

.nav-link:hover,
.nav-link:focus {
    color: var(--hover-gold) !important;
}

.nav-link.active {
    color: var(--text-primary) !important;
    font-weight: 600;
}

/* ==========================================================================
HERO SECTION (Tom Ford inspired high-end contrast)
========================================================================== */
.hero,
.hero-section {
    background-color: var(--primary) !important;
    color: var(--surface) !important;
}

.hero h1,
.hero h2,
.hero p {
    color: var(--surface) !important;
}

/* ==========================================================================
BUTTONS (Premium Contrast & Gold Accents)
========================================================================== */
.btn {
    border-radius: var(--border-radius) !important;
    transition: var(--transition) !important;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Primary Button: Dark background, white text. Hover: Gold background, dark text */
.btn-primary,
.btn-dark,
button[type="submit"] {
    background-color: var(--button-bg) !important;
    border-color: var(--button-bg) !important;
    color: var(--surface) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-dark:hover,
.btn-dark:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
    background-color: var(--button-hover) !important;
    border-color: var(--button-hover) !important;
    color: var(--text-primary) !important;
    /* Premium dark text on hover gold */
}

/* Secondary / Outline Button */
.btn-secondary,
.btn-outline-dark {
    background-color: transparent !important;
    border: 1px solid var(--border) !important;
    color: var(--text-primary) !important;
}

.btn-secondary:hover,
.btn-outline-dark:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--surface) !important;
}

/* ==========================================================================
CARDS & PRODUCT CARDS (Elegant borders & soft shadows)
========================================================================== */
.card,
.product-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow) !important;
    border-radius: var(--border-radius-lg) !important;
    transition: var(--transition);
}

.card:hover,
.product-card:hover {
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--muted) !important;
}

.card-header,
.card-footer {
    background-color: var(--surface) !important;
    border-color: var(--border) !important;
}

/* ==========================================================================
FORMS & INPUTS (White background, subtle borders, gold focus state)
========================================================================== */
.form-control,
input,
textarea,
select {
    background-color: var(--surface) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-primary) !important;
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
}

.form-control::placeholder,
input::placeholder {
    color: var(--muted) !important;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    background-color: var(--surface) !important;
    border-color: var(--hover-gold) !important;
    /* Luxury gold focus border */
    box-shadow: 0 0 0 3px rgba(74, 47, 8, 0.08) !important;
    /* Elegant gold halo */
    color: var(--text-primary) !important;
    outline: none !important;
}

.form-label,
label {
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* ==========================================================================
SECTIONS & UTILITIES
========================================================================== */
section,
.section {
    background-color: var(--section-bg);
}

/* Alternating dark section styling */
.section-dark,
.bg-dark-section {
    background-color: var(--secondary) !important;
    color: var(--surface) !important;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--surface) !important;
}

/* Borders */
.border,
.border-top,
.border-bottom,
.border-left,
.border-right {
    border-color: var(--border) !important;
}

/* Icons */
i,
.fas,
.far,
.fab {
    color: var(--text-primary);
    transition: var(--transition);
}

a:hover i,
a:hover .fas,
a:hover .far,
a:hover .fab,
i:hover {
    color: var(--hover-gold) !important;
}

/* ==========================================================================
BOOTSTRAP CLASS OVERRIDES (Ensures complete visual consistency)
========================================================================== */
.text-primary {
    color: var(--text-primary) !important;
}

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

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

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--background) !important;
}

.bg-white {
    background-color: var(--surface) !important;
}

/* Badge Styling */
.badge-primary {
    background-color: var(--primary) !important;
    color: var(--surface) !important;
}

.badge-secondary {
    background-color: var(--secondary) !important;
    color: var(--surface) !important;
}

/* Alert Styling */
.alert-success {
    background-color: rgba(22, 163, 74, 0.1) !important;
    border-color: var(--success) !important;
    color: var(--success) !important;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1) !important;
    border-color: var(--warning) !important;
    color: var(--warning) !important;
}

.alert-danger {
    background-color: rgba(220, 38, 38, 0.1) !important;
    border-color: var(--danger) !important;
    color: var(--danger) !important;
}

/* ==========================================================================
FOOTER (Minimal, solid luxury look)
========================================================================== */
footer,
.footer {
    background-color: var(--footer-bg) !important;
    color: var(--surface) !important;
    border-top: 1px solid var(--secondary) !important;
}

footer a,
.footer a {
    color: var(--muted) !important;
}

footer a:hover,
.footer a:hover {
    color: var(--surface) !important;
}

footer i,
.footer i {
    color: var(--muted) !important;
}

footer a:hover i,
.footer a:hover i {
    color: var(--surface) !important;
}


/* ========================================================================================= */
/* ========================================================================================= */
/* styles start for home page    */
/* ========================================================================================= */
/* ========================================================================================= */

/* stert header home sectuion */
.header-home {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: transparent !important;
    border-bottom: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    /* Elegant dark overlay */
    z-index: 2;
}

.header-home .container {
    position: relative;
    z-index: 3;
}

.box-header-home h1 {
    color: var(--surface) !important;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 0;
}

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

.box-header-home p {
    color: var(--surface) !important;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 20px 0;
}

.box-btn-header-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box-btn-header-home .btn-style-explore-header {
    color: var(--surface) !important;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 20px 0;
    border: 2px solid var(--surface) !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.box-btn-header-home .btn-style-shop-header {
    background: var(--general-color-one) !important;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-decoration: none;
    margin: 20px 0;
    border: 0;
    padding: 10px 22px;
    border-radius: 5px;
    transition: var(--transition);

}

.box-btn-header-home a:hover {
    background-color: var(--surface) !important;
    color: var(--text-primary) !important;
}


@media only screen and (max-width: 900px) {
    .box-header-home h1 {
        font-size: 30px;
    }

    .box-header-home p {
        font-size: 14px;
    }

    .box-btn-header-home .btn-style-explore-header,
    .box-btn-header-home .btn-style-shop-header {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media only screen and (max-width: 600px) {
    .box-header-home h1 {
        font-size: 25px;
    }

    .box-header-home p {
        font-size: 12px;
    }

    .box-btn-header-home .btn-style-explore-header,
    .box-btn-header-home .btn-style-shop-header {
        font-size: 12px;

    }
}

/* end header home sectuion */

/* start section shop cards two */

/* ===============================
Shop Cards Section
================================= */

.box-title-shop-card-man,
.box-title-shop-card-woman {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    cursor: pointer;
    transition: all .5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Images */

.box-title-shop-card-man {
    background-image: url(../assets/img/best-affordable-colognes-for-men-2048x1365.jpeg);
}

.box-title-shop-card-woman {
    background-image: url(../assets/img/أفضل-5-برفان-صيفي-حريمي-2023-برفان-حريمي.jpg);
}

/* Overlay */

.box-title-shop-card-man::before,
.box-title-shop-card-woman::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .25),
            transparent);
    transition: .5s;
}

/* Hover Shadow */

.box-title-shop-card-man:hover,
.box-title-shop-card-woman:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);

}

/* Overlay Hover */

.box-title-shop-card-man:hover::before,
.box-title-shop-card-woman:hover::before {

    background: linear-gradient(to top,
            rgba(0, 0, 0, .95),
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .15));

}

/* Text */

.box-title-shop-card-man p,
.box-title-shop-card-woman p {

    position: relative;

    z-index: 2;

    color: #fff;

    font-size: 1.6rem;

    font-weight: 500;

    line-height: 1.6;

    margin-bottom: 18px;

    opacity: 0;

    transform: translateY(35px);

    transition: all .6s ease;

}

/* Button */

.btn-shop-card {

    position: relative;

    z-index: 2;

    display: inline-block;

    width: fit-content;

    padding: 12px 28px;

    border-radius: 40px;

    background: var(--accent);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    font-size: .95rem;

    letter-spacing: 1px;

    transition: all .35s ease;

    opacity: 0;

    transform: translateY(35px);

}

.btn-shop-card:hover {

    background: #fff;

    color: var(--primary);

    text-decoration: none;

}

/* Show Content On Hover */

.box-title-shop-card-man:hover p,
.box-title-shop-card-man:hover .btn-shop-card,
.box-title-shop-card-woman:hover p,
.box-title-shop-card-woman:hover .btn-shop-card {

    opacity: 1;

    transform: translateY(0);

}

/* Optional Image Zoom Effect */

.box-title-shop-card-man,
.box-title-shop-card-woman {

    background-size: 100%;

}

.box-title-shop-card-man:hover,
.box-title-shop-card-woman:hover {

    background-size: 110%;

}

/* Mobile */

@media (max-width:768px) {

    .box-title-shop-card-man,
    .box-title-shop-card-woman {

        height: 260px;

        margin-bottom: 20px;

    }

    .box-title-shop-card-man p,
    .box-title-shop-card-woman p {

        font-size: 1.25rem;

    }

}

/* end section shop cards two */

/* ========================================================================================= */
/* ========================================================================================= */
/* styles start for Signature Fragrances section (Swiper Carousel & Quick View Modal) */
/* ========================================================================================= */
/* ========================================================================================= */

.signature-fragrances {
    padding: 80px 0;
    background-color: var(--background);
}

.signature-fragrances .signature-fragrances-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.signature-fragrances .signature-fragrances-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--general-color-one);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.signature-fragrances .signature-fragrances-title {
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.signature-fragrances .signature-fragrances-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Card Container Styling */
.signature-fragrances .signature-fragrances-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    flex: 1;
    /* Stretch card to take full slide height */
}

.signature-fragrances .signature-fragrances-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--general-color-one);
}

/* Card Image and Overlay styling */
.signature-fragrances .signature-fragrances-img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: #F3F4F6;
}

.signature-fragrances .signature-fragrances-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Quick View Overlay Button on Image Hover */
.signature-fragrances .signature-fragrances-quick-view-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(17, 24, 39, 0.4);
    /* Elegant dark glass overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 5;
}

.signature-fragrances .signature-fragrances-card:hover .signature-fragrances-quick-view-overlay {
    opacity: 1;
}

.signature-fragrances .signature-fragrances-quick-view-btn {
    background-color: var(--surface) !important;
    color: var(--text-primary) !important;
    border: none;
    font-size: 0.75rem;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.signature-fragrances .signature-fragrances-card:hover .signature-fragrances-quick-view-btn {
    transform: translateY(0);
}

.signature-fragrances .signature-fragrances-quick-view-btn:hover {
    background-color: var(--general-color-one) !important;
    color: var(--surface) !important;
}

/* Badges Placement */
.signature-fragrances .signature-fragrances-badges-right {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 10;
}

.signature-fragrances .signature-fragrances-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.signature-fragrances .badge-new {
    background-color: var(--text-primary);
    color: var(--surface);
}

.signature-fragrances .badge-bestseller {
    background-color: var(--accent);
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.signature-fragrances .badge-discount {
    background-color: var(--danger);
    color: var(--surface);
}

/* Front Body Styling */
.signature-fragrances .signature-fragrances-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.signature-fragrances .signature-fragrances-brand {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--general-color-one);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.signature-fragrances .signature-fragrances-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.signature-fragrances .signature-fragrances-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.signature-fragrances .signature-fragrances-rating i {
    color: var(--general-color-one);
    font-size: 0.8rem;
}

.signature-fragrances .signature-fragrances-rating-value {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.signature-fragrances .signature-fragrances-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.signature-fragrances .signature-fragrances-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.signature-fragrances .signature-fragrances-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.signature-fragrances .signature-fragrances-old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--muted);
}

.signature-fragrances .signature-fragrances-gender-tag {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Swiper Custom Styling */
.signature-fragrances .signature-swiper {
    padding: 20px 10px 60px 10px !important;
    position: relative;
    overflow: hidden;
}

.signature-fragrances .signature-swiper .swiper-slide {
    height: auto !important;
    /* Force slides to have equal height */
    display: flex !important;
}

/* Swiper pagination dots */
.signature-fragrances .signature-swiper-pagination {
    bottom: 15px !important;
}

.signature-fragrances .signature-swiper-pagination .swiper-pagination-bullet {
    background: var(--text-primary) !important;
    opacity: 0.2;
    transition: var(--transition);
}

.signature-fragrances .signature-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--general-color-one) !important;
    width: 20px;
    border-radius: 4px;
    opacity: 1;
}

/* Navigation arrows styling */
.signature-fragrances .signature-swiper-prev,
.signature-fragrances .signature-swiper-next {
    color: var(--text-primary) !important;
    background: var(--surface);
    border: 1px solid var(--border);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 100;
}

.signature-fragrances .signature-swiper-prev:after,
.signature-fragrances .signature-swiper-next:after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.signature-fragrances .signature-swiper-prev {
    left: 0px !important;
}

.signature-fragrances .signature-swiper-next {
    right: 0px !important;
}

@media (max-width: 1200px) {
    .signature-fragrances .signature-swiper-prev {
        left: 5px !important;
    }

    .signature-fragrances .signature-swiper-next {
        right: 5px !important;
    }
}

.signature-fragrances .signature-swiper-prev:hover,
.signature-fragrances .signature-swiper-next:hover {
    color: var(--general-color-one) !important;
    border-color: var(--general-color-one);
    background-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
QUICK VIEW MODAL STYLING
========================================================================== */
.signature-modal.modal {
    background-color: rgba(17, 24, 39, 0.45);
    /* Elegant translucent slate */
    backdrop-filter: blur(10px);
    /* Premium Apple-inspired blur */
    -webkit-backdrop-filter: blur(10px);
}

/* Elegant Scale and Fade Entry Animation */
.signature-modal.fade .modal-dialog {
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.signature-modal.show .modal-dialog {
    transform: scale(1);
}

.signature-modal .modal-content {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    background-color: var(--surface);
    overflow: hidden;
    max-height: 88vh;
    /* Restrict modal total height on screen */
    display: flex;
    flex-direction: column;
}

.signature-modal .modal-body {
    overflow-y: auto;
    /* Enable vertical scroll inside modal body only */
    flex: 1;
    padding: 30px !important;
}

/* Custom Scrollbar styling for modal body */
.signature-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.signature-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.signature-modal .modal-body::-webkit-scrollbar-thumb {
    background: rgba(191, 167, 138, 0.3);
    border-radius: 4px;
}

.signature-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--general-color-one);
}

.signature-modal .signature-modal-close {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.5;
    transition: var(--transition);
    color: var(--text-primary);
}

.signature-modal .signature-modal-close:hover {
    opacity: 1;
    color: var(--general-color-one);
    transform: rotate(90deg);
}

/* Modal Gallery Component */
.signature-modal .signature-modal-main-img-container {
    height: 440px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: #F9FAFB;
}

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

.signature-modal .signature-modal-thumbnails {
    gap: 10px;
}

.signature-modal .signature-modal-thumb-wrapper {
    width: 65px;
    height: 65px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    background-color: #F9FAFB;
}

.signature-modal .signature-modal-thumb-wrapper.active {
    border-color: var(--general-color-one);
    box-shadow: 0 0 0 2px rgba(191, 167, 138, 0.25);
}

.signature-modal .signature-modal-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Details Component */
.signature-modal .signature-modal-brand {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--general-color-one);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.signature-modal .signature-modal-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.signature-modal .signature-modal-rating-row {
    font-size: 0.85rem;
}

.signature-modal .signature-modal-stars i {
    color: var(--general-color-one);
    font-size: 0.85rem;
}

.signature-modal .signature-modal-rating-value {
    font-weight: 600;
    color: var(--text-primary);
}

.signature-modal .signature-modal-reviews {
    color: var(--text-secondary);
}

.signature-modal .signature-modal-price-row {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.signature-modal .signature-modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 15px;
}

.signature-modal .signature-modal-old-price {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: var(--muted);
    margin-right: 15px;
}

.signature-modal .signature-modal-discount-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--surface);
    background-color: var(--danger);
    padding: 3px 8px;
    border-radius: var(--border-radius);
    letter-spacing: 0.02em;
}

.signature-modal .signature-modal-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Metadata & Notes Box */
.signature-modal .signature-modal-meta {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--background);
    padding: 15px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
}

.signature-modal .meta-item {
    display: flex;
}

.signature-modal .meta-label {
    font-weight: 600;
    color: var(--text-primary);
    width: 100px;
}

.signature-modal .meta-val {
    color: var(--text-secondary);
}

.signature-modal .signature-modal-notes {
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: var(--border-radius-lg);
    background-color: var(--surface);
}

.signature-modal .notes-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.signature-modal .note-layer {
    font-size: 0.85rem;
    display: flex;
    margin-bottom: 8px;
}

.signature-modal .note-layer:last-child {
    margin-bottom: 0;
}

.signature-modal .note-layer-label {
    font-weight: 600;
    color: var(--general-color-one);
    width: 60px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.signature-modal .note-layer-val {
    color: var(--text-secondary);
}

/* Attribute outlines */
.signature-modal .attribute-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.signature-modal .attribute-btn {
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.signature-modal .attribute-btn.active {
    border-color: var(--general-color-one);
    background-color: rgba(191, 167, 138, 0.08);
    color: var(--general-color-one);
}

.signature-modal .attribute-btn:hover {
    border-color: var(--general-color-one);
    color: var(--general-color-one);
}

/* Quantity selector component */
.signature-modal .quantity-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.signature-modal .quantity-selector {
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.signature-modal .qty-btn {
    border: none;
    background-color: transparent;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    line-height: 1;
    transition: var(--transition);
}

.signature-modal .qty-btn:hover {
    background-color: var(--background);
}

.signature-modal .qty-input {
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    width: 45px;
    height: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: transparent;
}

/* Premium Buttons inside Quick View Modal */
.signature-modal .btn-add-cart {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--surface) !important;
    border-radius: var(--border-radius) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 12px !important;
    transition: var(--transition) !important;
}

.signature-modal .btn-add-cart:hover {
    background-color: var(--hover-gold) !important;
    border-color: var(--hover-gold) !important;
}

.signature-modal .btn-buy-now {
    background-color: var(--general-color-one) !important;
    border-color: var(--general-color-one) !important;
    color: var(--text-primary) !important;
    border-radius: var(--border-radius) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 12px !important;
    transition: var(--transition) !important;
}

.signature-modal .btn-buy-now:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--surface) !important;
}

.signature-modal .btn-wishlist {
    background-color: transparent !important;
    border: 1px solid var(--border) !important;
    color: var(--text-primary) !important;
    border-radius: var(--border-radius) !important;
    padding: 12px !important;
    transition: var(--transition) !important;
}

.signature-modal .btn-wishlist:hover {
    border-color: var(--text-primary) !important;
    background-color: var(--background) !important;
}

/* Custom Spinner Style color matching our design */
.signature-fragrances .text-gold {
    color: var(--general-color-one) !important;
}

.signature-fragrances .spinner-border {
    border-right-color: transparent !important;
}

/* Responsive adjustment for Mobile section padding, cards and centered modal */
@media (max-width: 768px) {
    .signature-fragrances {
        padding: 50px 0;
    }

    .signature-fragrances .signature-fragrances-title {
        font-size: 2rem;
    }

    .signature-fragrances .signature-fragrances-header {
        margin-bottom: 35px;
    }

    /* Mobile modal dialog centering and sizing */
    .signature-modal {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .signature-modal .modal-dialog {
        max-width: 92% !important;
    }

    .signature-modal .modal-content {
        max-height: 80vh !important;
        border-radius: var(--border-radius-lg);
    }

    .signature-modal .signature-modal-main-img-container {
        height: 250px !important;
    }

    .signature-modal .modal-body {
        padding: 20px 15px !important;
    }

    .signature-modal .signature-modal-details {
        padding-left: 0px;
        margin-top: 20px;
    }

    .signature-modal .signature-modal-title {
        font-size: 1.5rem !important;
    }
}







/* footer 
=================================  
*/


/* ==========================================
                Footer
========================================== */

.footer {
    background: var(--footer-bg);
    color: var(--surface);
    padding: 80px 0 30px;
    border-top: 2px solid var(--general-color-one);
}

.footer-logo {
    color: var(--surface);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo i {
    color: var(--general-color-one);
    margin-right: 10px;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 340px;
}

/* ================= Headings ================= */

.footer h5 {
    color: var(--surface);
    margin-bottom: 30px;
    position: relative;
    font-size: 1.15rem;
    font-weight: 600;
}

.footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: var(--general-color-one);
}

/* ================= Links ================= */

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--general-color-one);
    padding-left: 8px;
}

/* ================= Social ================= */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--surface);

    border: 1px solid rgba(255, 255, 255, .12);

    transition: var(--transition);

    text-decoration: none;
}

.footer-social a:hover {
    background: var(--general-color-one);
    color: var(--primary);
    transform: translateY(-5px);
    border-color: var(--general-color-one);
}

/* ================= Newsletter ================= */

.footer-form {
    display: flex;
    margin-top: 20px;
}

.footer-form input {

    flex: 1;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);

    color: var(--surface);

    padding: 14px 18px;

    outline: none;

    border-radius: var(--border-radius) 0 0 var(--border-radius);

    transition: var(--transition);

}

.footer-form input::placeholder {

    color: var(--muted);

}

.footer-form input:focus {

    border-color: var(--general-color-one);

}

.footer-form button {

    background: var(--general-color-one);

    color: var(--primary);

    border: none;

    padding: 0 28px;

    font-weight: 600;

    cursor: pointer;

    border-radius: 0 var(--border-radius) var(--border-radius) 0;

    transition: var(--transition);

}

.footer-form button:hover {

    background: var(--surface);

}

/* ================= Contact ================= */

.footer-contact {

    margin-top: 30px;

}

.footer-contact p {

    color: var(--text-secondary);

    margin-bottom: 14px;

}

.footer-contact i {

    color: var(--general-color-one);

    width: 25px;

}

/* ================= Divider ================= */

.footer hr {

    border-color: rgba(255, 255, 255, .08);

    margin: 60px 0 25px;

}

/* ================= Bottom ================= */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

}

.footer-bottom p {

    color: var(--muted);

    margin: 0;

}

.footer-bottom-links {

    display: flex;

    gap: 20px;

}

.footer-bottom-links a {

    color: var(--muted);

    text-decoration: none;

    transition: var(--transition);

}

.footer-bottom-links a:hover {

    color: var(--general-color-one);

}

/* ================= Hover ================= */

.footer a {

    transition: var(--transition);

}

/* ================= Responsive ================= */

@media (max-width:991px) {

    .footer {

        text-align: center;

    }

    .footer-logo {

        justify-content: center;

    }

    .footer-text {

        margin: auto auto 30px;

    }

    .footer-social {

        justify-content: center;

    }

    .footer h5::after {

        left: 50%;

        transform: translateX(-50%);

    }

    .footer-form {

        flex-direction: column;

    }

    .footer-form input {

        border-radius: var(--border-radius);

        margin-bottom: 12px;

    }

    .footer-form button {

        border-radius: var(--border-radius);

        padding: 14px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 20px;

    }

    .footer-bottom-links {

        justify-content: center;

        flex-wrap: wrap;

    }

}

/* ==========================================================================
   ABOUT PAGE LUXURY STYLE DEFINITIONS
   Inspired by Chanel, Dior, Tom Ford & Apple
   ========================================================================== */

.section-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--general-color-one);
    text-transform: uppercase;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.bg-light-section {
    background-color: var(--background) !important;
}

.z-index-3 {
    z-index: 3 !important;
}

/* 1. Luxury Hero Section */
.about-hero {
    position: relative;
    height: 62vh;
    background-image: url('https://images.unsplash.com/photo-1541643600914-78b084683601?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--surface);
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.65);
    z-index: 1;
}

.about-hero-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--general-color-one);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.about-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35) !important;
}

/* 2. Our Story Section */
.about-story-img-container {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-story-img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.about-story-img-container:hover .about-story-img {
    transform: scale(1.05);
}

.about-story .border-gold {
    border-left: 2px solid var(--general-color-one) !important;
}

/* 3. Mission & Vision Section */
.about-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--general-color-one);
}

.about-card-icon-box i {
    font-size: 2.2rem;
    color: var(--general-color-one);
}

.about-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* 4. Why Choose Us Section */
.why-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--general-color-one);
}

.why-icon-box i {
    font-size: 1.8rem;
    color: var(--general-color-one);
}

.why-title {
    font-weight: 600;
    color: var(--text-primary);
}

/* 5. Our Values Section */
.timeline-wrapper {
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background-color: var(--border);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--surface);
    border: 1px solid var(--border);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.timeline-dot .dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    border-color: var(--general-color-one);
    box-shadow: 0 0 0 4px rgba(191, 167, 138, 0.15);
}

.timeline-item:hover .timeline-dot .dot-inner {
    background-color: var(--general-color-one);
}

@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
    .timeline-item {
        margin-bottom: 30px;
    }
}

/* 6. Our Numbers Section */
.number-box {
    padding: 20px 10px;
}

.number-value {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.number-label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* 7. Meet Our Team Section */
.team-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--general-color-one);
}

.team-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper {
    border-color: var(--general-color-one);
}

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

.team-card:hover .team-img {
    transform: scale(1.06);
}

.team-name {
    font-weight: 600;
    color: var(--text-primary);
}

.team-role {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

/* 8. Customer Testimonials Section */
.about-testimonials-swiper {
    padding-bottom: 55px !important;
}

.testimonial-slide {
    max-width: 700px;
}

.testimonial-stars i {
    font-size: 0.85rem;
    margin: 0 2px;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.testimonial-client-img-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.testimonial-client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
    background: var(--text-primary) !important;
    opacity: 0.15;
    transition: var(--transition);
}

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--general-color-one) !important;
    opacity: 1;
    width: 18px;
    border-radius: 4px;
}

/* 9. Our Partners Section */
.partners-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.partners-marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    justify-content: space-around;
    width: 200%;
    flex-shrink: 0;
    animation: marquee-scroll 24s linear infinite;
}

.partners-marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--muted);
    transition: var(--transition);
    cursor: default;
}

.partner-logo:hover {
    color: var(--general-color-one);
}

/* 10. Call To Action Section */
.about-cta {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1541643600914-78b084683601?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
    z-index: 1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.btn-gold-cta {
    background-color: var(--general-color-one) !important;
    border-color: var(--general-color-one) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition) !important;
}

.btn-gold-cta:hover {
    background-color: var(--surface) !important;
    border-color: var(--surface) !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-outline-white {
    background-color: transparent !important;
    border: 1px solid var(--surface) !important;
    color: var(--surface) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition) !important;
}

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

/* 11. Newsletter Section */
.newsletter-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.newsletter-desc {
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-newsletter-form .newsletter-input {
    border-radius: var(--border-radius) 0 0 var(--border-radius) !important;
    padding: 24px 20px !important;
    border: 1px solid var(--border) !important;
    background-color: var(--background) !important;
}

.about-newsletter-form .newsletter-input:focus {
    border-color: var(--general-color-one) !important;
}

.about-newsletter-form .btn-newsletter-submit {
    background-color: var(--primary) !important;
    color: var(--surface) !important;
    border-radius: 0 var(--border-radius) var(--border-radius) 0 !important;
    padding: 0 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: var(--transition) !important;
}

.about-newsletter-form .btn-newsletter-submit:hover {
    background-color: var(--hover-gold) !important;
    color: var(--surface) !important;
}

/* ==========================================================================
   CONTACT PAGE LUXURY STYLE DEFINITIONS
   Inspired by Chanel, Dior, Tom Ford & Apple
   ========================================================================== */

/* Page transition entry */
.page-transition {
    animation: page-fade-in 0.8s ease-out;
}

@keyframes page-fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. Contact Hero Section */
.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?auto=format&fit=crop&w=1600&q=80') !important;
}

/* 2. Contact Information Cards */
.contact-info-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--general-color-one);
}

.info-icon-box i {
    font-size: 2rem;
    color: var(--general-color-one);
}

.info-title {
    font-weight: 600;
    color: var(--text-primary);
}

.info-val {
    font-size: 1.05rem;
    font-weight: 500;
}

/* 3. Contact Form styling */
.contact-form-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-card label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    transition: var(--transition);
    height: auto;
    font-size: 0.95rem;
}

.contact-form-card input.form-control {
    padding: 14px 18px;
}

.contact-form-card textarea.form-control {
    padding: 14px 18px;
}

.contact-form-card .form-control:focus {
    background-color: var(--surface);
    border-color: var(--general-color-one);
    box-shadow: 0 0 0 3px rgba(191, 167, 138, 0.15);
    outline: none;
}

.why-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-contact-item:hover .why-contact-icon {
    background-color: var(--general-color-one);
}

.why-contact-icon i {
    font-size: 1.15rem;
    color: var(--general-color-one);
    transition: var(--transition);
}

.why-contact-item:hover .why-contact-icon i {
    color: var(--surface);
}

/* Form validation status text size */
.invalid-feedback {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

/* 4. Embedded Google Map */
.map-container-wrap {
    background-color: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-container-wrap iframe {
    display: block;
}

/* 5. Frequently Asked Questions Accordion */
.faq-card {
    background-color: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--general-color-one) !important;
}

.faq-header {
    padding: 1.25rem 1.5rem !important;
}

.faq-header .btn-link {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
    font-size: 1.1rem;
    padding: 0;
}

.faq-header .btn-link:focus, 
.faq-header .btn-link:hover {
    color: var(--general-color-one) !important;
    border: 0;
}

.btn-link:active{
    border: 0 !important;
    outline: none !important;
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-header .btn-link[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: var(--general-color-one);
}

.faq-body {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 6. Customer Support Banner */
.support-banner {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.support-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.75);
    z-index: 1;
}

/* 7. Floating Scroll to Top and WhatsApp widgets */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 1px solid var(--border);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background-color: var(--general-color-one);
    border-color: var(--general-color-one);
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(191, 167, 138, 0.3);
}

.whatsapp-floating-btn {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 1.4rem;
    text-decoration: none !important;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}