body {
    font-family: 'Inter', sans-serif;
    color: #111111;
}

.bg-custom-light {
    background-color: #f4f5f7; /* Off-white background matching the image */
}

/* Navigation Links */
.nav-link-custom {
    color: #111111;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Thinner */
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link-custom:hover {
    color: #666666;
    opacity: 0.8;
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Offset for absolute header */
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.41;
    color: #111111;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.shop-link {
    font-size: 1rem;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.shop-link i {
    transition: transform 0.3s ease;
}

.shop-link:hover {
    color: #111111;
}

.shop-link:hover i {
    transform: translateX(5px);
}

.bottom-elements {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #111111;
    font-size: 1rem;
    margin-right: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.6;
}

.slide-indicator {
    font-weight: 700;
    font-size: 1.25rem;
}

.slide-indicator span {
    font-weight: 400;
    color: #888888;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-wrapper {
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
    }
    .bottom-elements {
        position: relative;
        padding: 2rem 0;
    }
}

/* Custom Form Styles */
.form-control:focus {
    border-color: #111 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.hover-dark {
    transition: color 0.3s ease;
}

.hover-dark:hover {
    color: #111111 !important;
}

/* Modern Slider Animations - Stutter Fix */
.hero-subtitle, .hero-title, .shop-link {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item img {
    opacity: 0;
    transform: scale(0.95) translateX(30px);
}

/* Apply animation exactly when JS adds the class to incoming slide */
.animate-in .hero-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
}

.animate-in .hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.animate-in .shop-link {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.animate-in img {
    animation: imgReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes imgReveal {
    from { opacity: 0; transform: scale(0.95) translateX(30px); }
    to { opacity: 1; transform: scale(1) translateX(0); }
}

/* Brand Logo Style */
.brand-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #111111;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 0.7;
    color: #111111;
}

/* Elite 3D Floating Effects */
.image-3d-container {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.floating-3d {
    transform-style: preserve-3d;
    animation: float3D 9s ease-in-out infinite;
}

@keyframes float3D {
    0% {
        transform: rotateY(-3deg) rotateX(1.5deg) translateY(0px);
    }
    50% {
        transform: rotateY(3deg) rotateX(-1.5deg) translateY(-8px);
    }
    100% {
        transform: rotateY(-3deg) rotateX(1.5deg) translateY(0px);
    }
}

/* Bleeding Edge Massive Overlapping Overflow Layout for Mobile */
@media (max-width: 991.98px) {
    .mobile-grid-hero {
        display: block !important;
        position: relative !important;
        height: 70vh !important;
        padding-top: 110px !important;
        padding-bottom: 40px !important;
        margin: 0 !important;
    }
    
    /* Text Area sits cleanly on the left, keeping high readability */
    .mobile-grid-hero .col-lg-5 {
        display: block !important;
        position: relative !important;
        z-index: 5 !important;
        width: 72% !important; /* Kept narrow to avoid complete overlap by the giant product image */
        text-align: left !important;
        padding-left: 15px !important;
    }

    .mobile-grid-hero .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
        color: #111111;
        font-weight: 500;
    }

    .mobile-grid-hero .hero-title {
        font-size: 2.7rem !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
        font-weight: 700;
        letter-spacing: -0.5px;
    }


    /* Giant Product Image sits absolute, scaled massive and bleeding off the screen edge */
    .mobile-grid-hero .image-3d-container {
        display: block !important;
        position: absolute !important;
        top: 36% !important; /* Moved slightly higher to balance the massive scale */
        transform: translateY(-50%) !important;
        right: -15% !important; /* Shifted left so it is half-on, half-off the screen */
        width: 100% !important;
        z-index: 1 !important;
        pointer-events: none; /* Touches pass directly to buttons/text */
    }

    .mobile-grid-hero .floating-3d {
        display: block !important;
        width: 100%;
    }

    .mobile-grid-hero img {
        max-height: 70vh !important; /* Expanded vertically to allow massive scaling */
        max-width: none !important; /* Overrode Bootstrap's .img-fluid constraint */
        width: 210% !important; /* Doubled/scaled massively to 210% */
        object-fit: contain !important;
    }

    /* Centered Social Icons and Contact Button at the very bottom */
    .bottom-elements {
        position: absolute !important;
        bottom: 20px !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 !important;
        z-index: 10 !important;
    }

    .bottom-elements .shop-link {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        display: inline-block !important;
        pointer-events: auto !important;
    }

    .social-icons {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        pointer-events: auto !important;
    }

    .social-icons a {
        margin: 0 !important;
    }
}

/* Spectacular Creative Full-Screen Popup Menu for Mobile (Lag Optimized) */
@media (max-width: 991.98px) {
    #mobileMenu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        transform: translate3d(0, 0, 0) scale(1.05) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    visibility 0.5s !important;
        background: rgba(255, 255, 255, 0.65) !important; /* Pristine translucent white for Apple glass look */
        backdrop-filter: blur(25px) saturate(190%) !important; /* Deep Apple-style Liquid Crystal blur & saturation boost */
        -webkit-backdrop-filter: blur(25px) saturate(190%) !important;
        z-index: 9999 !important; /* Forces layout priority overlay */
        display: block !important;
        will-change: transform, opacity; /* Force GPU layer promotion */
    }

    #mobileMenu.is-open {
        transform: translate3d(0, 0, 0) scale(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Adjust close button to rotate elegantly */
    #mobileMenu .btn-close {
        transition: transform 0.4s ease;
        padding: 10px;
        background-size: 1.2rem;
    }
    #mobileMenu.is-open .btn-close:hover {
        transform: rotate(90deg);
    }

    /* Centered Creative Menu Navigation */
    #mobileMenu .offcanvas-body {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: center !important;
        padding: 3rem 1.5rem !important;
        height: 100% !important;
    }

    #mobileMenu .nav {
        margin-top: 8vh !important;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    #mobileMenu .nav-item {
        opacity: 0;
        transform: translate3d(0, 20px, 0); /* Hardware accelerated 3D position offset */
        transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity; /* Optimizes mobile performance */
    }

    /* Staggered delay for each menu item to lift up elegantly */
    #mobileMenu.is-open .nav-item:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: translate3d(0, 0, 0); }
    #mobileMenu.is-open .nav-item:nth-child(2) { transition-delay: 0.16s; opacity: 1; transform: translate3d(0, 0, 0); }
    #mobileMenu.is-open .nav-item:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translate3d(0, 0, 0); }
    #mobileMenu.is-open .nav-item:nth-child(4) { transition-delay: 0.32s; opacity: 1; transform: translate3d(0, 0, 0); }

    #mobileMenu .mobile-nav-link {
        font-size: 2.6rem !important; /* Balanced and striking */
        font-weight: 300 !important; /* Haute-couture ultra-thin weight */
        font-family: 'Inter', sans-serif !important;
        font-style: normal !important; /* Non-italic, pure classic look */
        letter-spacing: 1px !important; /* Spacious letter-spacing for thin serif elegance */
        color: #111111 !important;
        text-decoration: none;
        display: inline-block;
        transition: color 0.3s ease, letter-spacing 0.3s ease !important;
        position: relative;
        will-change: color, letter-spacing;
    }

    #mobileMenu .mobile-nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 1px;
        background-color: #111111;
        transition: width 0.3s ease, left 0.3s ease;
    }

    #mobileMenu .mobile-nav-link:hover::after {
        width: 40px;
        left: calc(50% - 20px);
    }

    #mobileMenu .mobile-nav-link:hover {
        color: #777777 !important;
        letter-spacing: 2px !important; /* Elegant breathing space on hover */
        transform: none !important;
        padding-left: 0 !important;
    }

    /* Bottom metadata area inside menu */
    #mobileMenu .border-top {
        width: 80% !important;
        margin: 0 auto !important;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, 
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    }

    #mobileMenu.is-open .border-top {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elite Modern Editorial About Page Styles */
.about-section {
    padding-top: 150px !important;
    padding-bottom: 80px !important;
    background-color: transparent !important; /* Preserves the main body background color */
    overflow-x: hidden;
}

.editorial-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #888888;
    font-weight: 500;
}

.about-editorial-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.05;
    color: #111111;
    letter-spacing: -2px; /* Slightly tighter letter-spacing for Inter thin look */
}

.border-bottom-thin {
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.border-right-thin {
    border-right: 1px solid rgba(0,0,0,0.08);
}

/* Chapter Indicator */
.editorial-chapter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chapter-num {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: #111111;
    opacity: 0.8;
}

.chapter-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #888888;
    font-weight: 600;
    margin-top: 5px;
}

.editorial-h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 300; /* Sleek light weight for Inter modern look */
    font-style: normal; /* Non-italic */
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.editorial-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #222222;
    font-weight: 400;
}

.editorial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666666;
}

/* Giant Editorial Canvas */
.editorial-canvas {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.canvas-bg {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 80%;
    background-color: #f2f1ed;
    border-radius: 40px;
    z-index: 1;
}

.canvas-img {
    position: relative;
    z-index: 2;
    max-height: 90%;
    object-fit: contain;
    mix-blend-mode: multiply;
    animation: floatCanvas 8s ease-in-out infinite;
    will-change: transform;
}

.canvas-tag {
    position: absolute;
    bottom: 5%;
    left: 8%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.4);
}

.tag-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #111111;
}

.tag-desc {
    font-size: 0.68rem;
    color: #666666;
    margin-top: 3px;
}

/* Discipline Grid styling */
.discipline-card {
    padding: 20px 10px;
}

.card-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #bbbbbb;
    margin-bottom: 10px;
}

.discipline-title {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #111111;
}

.discipline-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #777777;
}

.border-left-thin-md {
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 30px;
}

/* Mini Collage Card */
.editorial-mini-card {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.mini-card-inner {
    background-color: #f8f7f5;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.mini-img {
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
    animation: floatMini 8s ease-in-out infinite;
    will-change: transform;
}

.mini-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #888888;
    font-weight: 600;
    margin-top: 15px;
}

/* Parallax float animations */
@keyframes floatCanvas {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatMini {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

/* Responsive modifications for modern editorial layout */
@media (max-width: 991.98px) {
    .about-section {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }
    .about-editorial-title {
        font-size: 2.8rem;
    }
    .border-right-thin {
        border-right: none;
        padding-right: 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-bottom: 30px;
    }
    .editorial-canvas {
        height: 380px;
    }
    .border-left-thin-md {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .about-editorial-title {
        font-size: 2.2rem;
    }
    .editorial-h3 {
        font-size: 1.8rem;
    }
    .editorial-chapter {
        align-items: flex-start;
    }
}

/* Premium Products Page Styles */
.products-section {
    padding-top: 150px !important;
    padding-bottom: 80px !important;
    background-color: transparent !important;
    overflow-x: hidden;
}

.products-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.05;
    color: #111111;
    letter-spacing: -2px;
}

/* Ultra-Modern Capsule Pill Category Filters */
.category-filters-wrapper {
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none; /* Hide standard Firefox scrollbars */
    -ms-overflow-style: none; /* Hide IE scrollbars */
    padding: 5px 0;
}

.category-filters-wrapper::-webkit-scrollbar {
    display: none; /* Hide Webkit scrollbars */
}

.category-filters-container {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 8px;
    border-radius: 100px;
    display: inline-flex;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    white-space: nowrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777777;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}

.filter-btn.active {
    background-color: #111111 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.filter-btn:hover:not(.active) {
    color: #111111;
    background-color: rgba(0, 0, 0, 0.03);
}

/* Product Card Styling */
.product-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-box {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: box-shadow 0.4s ease;
}

.product-img {
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quick Inquire Button inside Image Box */
.product-inquire-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate3d(-50%, 15px, 0);
    opacity: 0;
    visibility: hidden;
    background-color: #111111;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.4s ease;
}

.product-inquire-btn:hover {
    background-color: #333333;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Hover States */
.product-card:hover .product-image-box {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

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

.product-card:hover .product-inquire-btn {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    visibility: visible;
}

/* Product Details */
.product-category {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    color: #888888;
    font-weight: 500;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem; /* Balanced size for Inter product headers */
    font-weight: 500;
    color: #111111;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #666666;
}

/* Filter Animations via jQuery Toggle */
.product-item-wrapper {
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.product-item-wrapper.is-hidden {
    opacity: 0 !important;
    transform: scale(0.95) translate3d(0, 15px, 0) !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Responsive adjustments for Products */
@media (max-width: 991.98px) {
    .products-section {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }
    .products-main-title {
        font-size: 2.8rem;
    }
    .product-image-box {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .products-main-title {
        font-size: 2.2rem;
    }
    .category-filters-wrapper {
        margin-top: 10px;
    }
    /* Mobile persistent Inquire Button layout */
    .product-inquire-btn {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate3d(-50%, 0, 0) !important;
        padding: 10px 20px;
        font-size: 0.7rem;
        bottom: 15px;
    }
}

/* Elite Modern Editorial Contact Page Styles */
.contact-section {
    padding-top: 150px !important;
    padding-bottom: 80px !important;
    background-color: transparent !important; /* Preserves base background color */
    overflow-x: hidden;
}

.contact-editorial-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.05;
    color: #111111;
    letter-spacing: -2px;
}

.info-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
    font-weight: 600;
}

.info-details {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333333;
}

/* Pristine Curved White Card for form */
.contact-form-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.025);
    border: 1px solid rgba(0, 0, 0, 0.015);
}

/* Minimalist Form Inputs */
.form-input-group {
    display: flex;
    flex-direction: column;
}

.form-input-group .form-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: #999999;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.form-input-group .form-control {
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    font-size: 0.95rem;
    color: #111111 !important;
    transition: border-bottom-color 0.3s ease !important;
}

.form-input-group .form-control:focus {
    border-bottom-color: #111111 !important;
}

.form-input-group:focus-within .form-label {
    color: #111111;
}

/* Send Inquiry Capsule Button */
.submit-capsule-btn {
    background-color: #111111;
    color: #ffffff !important;
    border: none;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.submit-capsule-btn:hover {
    background-color: #333333;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.submit-capsule-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .contact-section {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }
    .contact-editorial-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .contact-editorial-title {
        font-size: 2.2rem;
    }
    .contact-form-card {
        padding: 30px;
    }
}
