@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


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

.body {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

a.nav-link {
    font-weight: 500;
    margin: 0px 8px;
    color: rgb(229 228 229);
}

a.nav-link:hover {
    color: #6366f1;
    font-weight: 500;
    border-bottom: 2px solid #6366f1;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #6366f1;
    border-bottom: 2px solid #6366f1;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #6366f1;
}

.btn-primary {
    background-color: #6366f1;
    border: 1px solid #6d70f0;
}

.btn-outline-primary {
    border: 1px solid #6d70f0;
    color: #6d70f0;
    font-weight: 500;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: #6d70f0;
    border: 1px solid #6d70f0;
}

.carousel-item-height {
    min-height: 90vh;
}

/* Categories Section CSS */

.title-wrapper {
    position: relative;
    display: inline-block;
}

.title-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 5.5rem;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .title-watermark {
        font-size: 3.5rem;
    }
}

.main-heading {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: #000;
}

/* Concentric outer circle */
.category-outer-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #9193e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-outer-circle:hover {
    transform: translateY(-5px);
}

/* Inner circle background */
.category-inner-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #ededf0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-inner-circle img {
    max-width: 150%;
    /* max-height: 80%; */
    object-fit: contain;
    /* border-radius: 50%; */
}

.category-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: #111;
    margin-top: 1rem;
}

/* Categories Section CSS */

/* Custom Card Styling */
.product-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Lift on Hover */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
}

/* Image Wrapper & Zoom Effect */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 290px;
    background-color: #f1f1f4;
}

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

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

/* Category Pill/Badge */
.product-category {
    color: #6366f1;
    /* Soft purple/indigo */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

/* Description Styling */
.product-description {
    color: #71717a;
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

.animated-card {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered Delay */
.animated-card:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-card:nth-child(2) {
    animation-delay: 0.25s;
}

.animated-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Main Editorial Headline */
.editorial-heading {
    /* font-family: 'Inter', system-ui, -apple-system, sans-serif; */
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    /* color: #6a6a6a; */
    color: #504031;
    letter-spacing: -0.02em;
}

/* Footnote / Secondary text */
.editorial-footnote {
    font-size: 0.72rem;
    line-height: 1.5;
    color: #8c8c8c;
    max-width: 250px;
}

/* Sofa Image Floating Effect */
.editorial-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editorial-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.08));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-image-wrapper:hover img {
    transform: scale(1.025) translateY(-6px);
}

/* Animations */
@keyframes fadeSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeSlideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-text-in {
    animation: fadeSlideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-img-in {
    animation: fadeSlideInRight 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.animate-footer-in {
    animation: fadeInBottom 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: #6366f1;
}

/* Beds CSS */
/* Warm beige editorial background matching the sample image */
.whats-new-section {
    background-color: #f1efec;
    padding: 80px 0 100px;
    font-family: 'Inter', sans-serif;
}

/* Elegant Serif Heading */
.section-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 2.35rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #1e1e1e;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Bed Item Card Styling */
.bed-slide-item {
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease;
}

/* Square Rounded Media Box */
.bed-image-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #e5e2dd;
    position: relative;
}

.bed-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Subdued Hover Animation */
.bed-slide-item:hover img {
    transform: scale(1.05);
}

/* Label Beneath Each Card */
.bed-title-label {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #333333;
    margin-top: 1.25rem;
    text-align: center;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.bed-slide-item:hover .bed-title-label {
    color: #6366f1;
    /* Your brand color accent */
}

/* Underline on active/hover label */
.bed-title-label.active-underline::after,
.bed-slide-item:hover .bed-title-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

/* Slider Nav Arrows */
.slider-control-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-control-btn:hover {
    background: #ffffff;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* FOOTER SECTION CSS */

.site-footer {
    background-color: #ffffff;
    color: #6b7280;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-top: 1px solid #f1f1f5;
}

.footer-heading {
    /* color: #1e1b4b; */
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    /* color: #6b7280; */
    color: rgb(229 228 229);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(4px);
}

/* Newsletter Box */
.footer-newsletter .form-control {
    border-radius: 12px 0 0 12px;
    border: 1px solid #e2e8f0;
    padding: 0.7rem 1.1rem;
    font-size: 0.88rem;
    background-color: #f8fafc;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    border-color: #6366f1;
    background-color: #ffffff;
}

.footer-newsletter .btn-subscribe {
    background-color: #6366f1;
    color: #ffffff;
    border-radius: 0 12px 12px 0;
    padding: 0.7rem 1.4rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-newsletter .btn-subscribe:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

/* Social Icons */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f4f4f9;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #6366f1;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact-us Page CSS */
/* Hero Banner Image */
.hero-banner {
    height: 480px;
    background-image: url('/images/banners/舒纤意式20231220-64.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Floating Offices Card */
.floating-office-card {
    margin-top: -120px;
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

/* Form Fields styling */
.form-control,
.form-select {
    border: 1px solid #dcdfe4;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #495057;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #6366f1;
}

/* Dark CTA Button */
.btn-dark-resideo {
    background-color: #6366f1;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border-radius: 4px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-dark-resideo:hover {
    background-color: #5053f5;
    transform: translateY(-2px);
    color: white;
}

/* Map Iframe styling */
.map-container {
    height: 320px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}


/* Outer Presentation Page Container */
.page-sheet {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    /* max-width: 1080px; */
    position: relative;
    overflow: hidden;
}

/* Subdued industrial background pattern */
.page-sheet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(240, 244, 248, 0.6) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(240, 244, 248, 0.6) 0%, transparent 60%);
    pointer-events: none;
}

/* Header & Branding */
.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #18426d;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: #18426d;
    letter-spacing: 0.3px;
}

/* Content Cards */
.content-box {
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 2.2rem 2.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(24, 66, 109, 0.08);
}

/* Section Headings */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #18426d;
    position: relative;
    display: inline-block;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
}

/* Blue Accent Crosshairs / Corner Marks */
.crosshair {
    position: relative;
}

.crosshair::before,
.crosshair::after {
    content: "";
    position: absolute;
    background-color: #cbd5e1;
}

/* Left side vertical marker */
.crosshair::before {
    top: -10px;
    left: -18px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: rgba(87, 153, 213, 0.5);
}

/* Cross hair horizontal tick */
.crosshair::after {
    top: 50%;
    left: -24px;
    width: 14px;
    height: 2px;
    background-color: rgba(87, 153, 213, 0.5);
}

/* Circular Featured Images */
.circle-frame-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 7px solid #5799d5;
    background: radial-gradient(circle, #ffffff 65%, #f4f8fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(87, 153, 213, 0.22);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.circle-frame:hover {
    transform: scale(1.04) rotate(1deg);
    border-color: #18426d;
}

.circle-frame img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.circle-frame:hover img {
    transform: scale(1.06);
}

.lead-text {
    font-size: 0.95rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .circle-frame {
        width: 220px;
        height: 220px;
        border-width: 5px;
    }

    .content-box {
        padding: 1.6rem 1.4rem;
    }

    .section-title {
        font-size: 1.35rem;
    }
}

/* -------------------------------------------------------------- */

/* Gears and pumps section CSS */

:root {
    --primary-blue: #23548e;
    --deep-blue: #16365c;
    --accent-light: #5289c7;
    --card-bg: #ffffff;
    --border-blue: #23548e;
}



/* Interactive Showcase Stage */
.showcase-stage {
    position: relative;
    width: 100%;
    height: 870px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Brand Card */
.brand-card {
    position: absolute;
    z-index: 10;
    width: 290px;
    background: #ffffff;
    padding: 24px 20px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: pulseCenter 4s ease-in-out infinite alternate;
}

.brand-card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.4);
}

.brand-logo-monogram {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    color: #1a416e;
    letter-spacing: -3px;
    font-family: 'Times New Roman', serif;
}

.brand-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: #1c4575;
    letter-spacing: 0.5px;
    margin-top: 6px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #333333;
    font-weight: 600;
    margin: 0;
}

/* Floating Circular Product Pods */
.pod-circle {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    border: 8px solid #9193e8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 0 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pod-circle img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pod-circle:hover {
    transform: scale(1.12) !important;
    border-color: #8875f3;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 255, 255, 0.6);
    z-index: 15;
}

.pod-circle:hover img {
    transform: scale(1.1);
}

/* Positioning of 7 Pods */
.pod-top-center {
    width: 175px;
    height: 175px;
    top: 55px;
    left: 43%;
    transform: translateX(-50%);
    animation: floatUp 5s ease-in-out infinite;
}

.pod-top-left {
    width: 150px;
    height: 150px;
    top: 135px;
    left: 80px;
    animation: floatLeft 6s ease-in-out infinite;
}

.pod-top-right {
    width: 155px;
    height: 155px;
    top: 130px;
    right: 75px;
    animation: floatRight 5.5s ease-in-out infinite;
}

.pod-mid-left {
    width: 150px;
    height: 150px;
    top: 380px;
    left: 50px;
    animation: floatDown 6.5s ease-in-out infinite;
}

.pod-mid-right {
    width: 135px;
    height: 135px;
    top: 380px;
    right: 60px;
    animation: floatUp 5.8s ease-in-out infinite;
}

.pod-bottom-left {
    width: 165px;
    height: 165px;
    bottom: 120px;
    left: 70px;
    animation: floatRight 6.2s ease-in-out infinite;
}

.pod-bottom-center {
    width: 170px;
    height: 170px;
    bottom: 85px;
    left: 41%;
    transform: translateX(-50%);
    animation: floatDown 5.2s ease-in-out infinite;
}

.pod-bottom-right {
    width: 145px;
    height: 145px;
    bottom: 150px;
    right: 70px;
    animation: floatLeft 5.7s ease-in-out infinite;
}

/* Footer Categories Strip */
.category-footer {
    background: #ffffff;
    width: 100%;
    border-top: 3px solid #1a416e;
    position: relative;
    z-index: 10;
}

.category-item {
    padding: 12px 6px;
    text-align: center;
    border-right: 1px solid #d3dde8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.category-item:last-child {
    border-right: none;
}

.category-item:hover {
    background: #e9f2fb;
}

.category-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #3b5a7a;
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0;
}

/* Floating Keyframe Animations */
@keyframes pulseCenter {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateX(0px) translateY(0px);
    }

    50% {
        transform: translateX(-8px) translateY(6px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateX(0px) translateY(0px);
    }

    50% {
        transform: translateX(8px) translateY(-6px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-stage {
        height: auto;
        min-height: 700px;
        display: block;
    }

    .brand-card {
        position: relative;
        margin: 30px auto;
        width: 85%;
    }

    .pod-circle {
        position: static !important;
        margin: 12px auto !important;
        transform: none !important;
        animation: none !important;
    }

    .pods-grid-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        width: 100%;
    }

    .category-footer .row {
        flex-wrap: wrap;
    }

    .category-item {
        flex: 0 0 50%;
        border-bottom: 1px solid #d3dde8;
    }
}