/* Hide scrollbar for the slider container, if any */
.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* --- Custom Button Styles --- */
.custom-btn {
    /* Defining CSS variables for colors and styles */
    --button-text-color: 0, 0, 0;
    /* Black text */
    --button-background: 255, 255, 255;
    /* White background */
    --button-outline-color: var(--button-background);
    --button-border-radius: 0.3rem;
    /* Matches Tailwind's rounded-lg */
    --button-text-transform: uppercase;
    --button-font: 700 0.875rem/1.25rem 'Inter', sans-serif;
    /* bold, text-sm */
    --button-letter-spacing: 0.05em;

    --transform-origin-start: 0% 50%;
    --transform-origin-end: 100% 50%;

    --initial-gradient: linear-gradient(rgb(var(--button-background)), rgb(var(--button-background)));
    --hover-gradient: linear-gradient(transparent, transparent);
    --initial-background-position: var(--transform-origin-end);
    --hover-background-position: var(--transform-origin-start);

    -webkit-appearance: none;
    appearance: none;
    text-transform: var(--button-text-transform);
    font: var(--button-font);
    letter-spacing: var(--button-letter-spacing);
    text-shadow: none;
    text-align: center;
    cursor: pointer;
    color: rgb(var(--button-text-color));
    border: 1px solid rgb(var(--button-outline-color));
    border-radius: var(--button-border-radius);
    background-color: transparent;
    background-image: var(--initial-gradient), var(--hover-gradient);
    background-size: 101% 101%, 0 101%;
    background-position: var(--initial-background-position);
    background-repeat: no-repeat;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .85rem 1.75rem;
    /* Slightly adjusted for better visual balance */
    transition: background-size .45s cubic-bezier(.785, .135, .15, .86), background-position .45s step-end, color .45s cubic-bezier(.785, .135, .15, .86), border-color .45s cubic-bezier(.785, .135, .15, .86);
    position: relative;
}

/* The hover state that triggers the animation */
.custom-btn:hover {
    background-size: 0 101%, 101% 101%;
    background-position: var(--hover-background-position);
    color: rgb(var(--button-background));
    /* Becomes white text on hover */
    border-color: rgb(var(--button-background));
    /* Becomes white border on hover */
}

/* --- Custom Button Styles 2 (Corrected) --- */
.custom-btn-2 {
    /* Defining CSS variables for colors and styles */
    --button-text-color: 255, 255, 255;
    /* White text */
    --button-background: 0, 0, 0;
    /* Black background */
    --button-outline-color: var(--button-background);
    --button-border-radius: 0.3rem;
    --button-text-transform: uppercase;
    --button-font: 700 0.875rem/1.25rem 'Inter', sans-serif;
    --button-letter-spacing: 0.05em;

    --transform-origin-start: 0% 50%;
    --transform-origin-end: 100% 50%;

    --initial-gradient: linear-gradient(rgb(var(--button-background)), rgb(var(--button-background)));
    --hover-gradient: linear-gradient(transparent, transparent);
    --initial-background-position: var(--transform-origin-end);
    --hover-background-position: var(--transform-origin-start);

    -webkit-appearance: none;
    appearance: none;
    text-transform: var(--button-text-transform);
    font: var(--button-font);
    letter-spacing: var(--button-letter-spacing);
    text-shadow: none;
    text-align: center;
    cursor: pointer;
    color: rgb(var(--button-text-color));
    border: 1px solid rgb(var(--button-outline-color));
    border-radius: var(--button-border-radius);
    background-color: transparent;
    background-image: var(--initial-gradient), var(--hover-gradient);
    background-size: 101% 101%, 0 101%;
    background-position: var(--initial-background-position);
    background-repeat: no-repeat;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .85rem 1.80rem;
    transition: background-size .45s cubic-bezier(.785, .135, .15, .86), background-position .45s step-end, color .45s cubic-bezier(.785, .135, .15, .86), border-color .45s cubic-bezier(.785, .135, .15, .86);
    position: relative;
    white-space: nowrap;

    /* Prevents the default blue outline on focus, as we have our own style */
    outline: none;
}

/* * THE FIX: Combine :hover and :focus selectors.
 * Now, the animated state will trigger on both mouse hover AND when the
 * element is focused (e.g., after a click or by using the Tab key).
*/
.custom-btn-2:hover,
.custom-btn-2:focus {
    background-size: 0 101%, 101% 101%;
    background-position: var(--hover-background-position);
    background-color: rgb(255, 255, 255);
    /* white background */
    color: rgb(0, 0, 0);
    /* black text */
    border-color: rgb(0, 0, 0);
    /* black border */
}



.marquee-group img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* ✅ Responsive Styling */
@media (max-width: 1024px) {
  .marquee-group img {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .marquee-group img {
    height: 40px;
  }
}

@media (max-width: 480px) {
    .marquee-section-two-brand {
        margin-bottom: 40px;
    }
  .marquee-group img {
    height: 35px;
  }
}


/*=======================
Book Now Button style
=======================*/
.scroll-to-top-custom {
    /*position: fixed;*/
    right: 20px;
    bottom: 20px;
    padding: 4px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color-light);
    text-align: center;
    cursor: pointer;
    background-color: var(--theme-color1);
    /*z-index: 999;*/
    /*display: flex;*/
    /* 👈 make it visible */
    border-radius: 30px;
    /* 👈 pill shape instead of circle */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /*transition: all 300ms ease;*/
    align-items: center;
    justify-content: center;
    width: auto;
    /* allow text + icon */
    height: auto;
}

.scroll-to-top-custom i {
    font-size: 18px;
    margin-right: 12px;
}

@media (max-width: 1399.98px) {
    .scroll-to-top-custom {
        bottom: 70px;
    }
}

.scroll-to-top-custom:hover {
    transform: scale(1.08);
    /* smooth zoom */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    /* stronger shadow */
}

.title-section-custom {
    display: flex;
    flex-direction: column;
    /* stack title and description */
    align-items: center;
    /* center horizontally */
    text-align: center;
    /* center text inside */
}

.main-title-custom {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.description-text-custom {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {

    .main-title-custom {
        font-size: 2rem;
        text-align: center;
    }

    .description-text-custom {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title-custom {
        font-size: 1.8rem;
    }

    .description-text-custom {
        font-size: 0.95rem;
    }
}



.content-box:hover {
    background: transparent !important;
}

.product-slider-container .slide {
    transition: transform 0.5s ease-in-out;
}

/*.inner-box:hover {*/
/*    background: white !important;*/
/*}*/

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

.pilates-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Section Styling */
.pilates-main-section {
    background-color: white;
    font-family: 'League Spartan', sans-serif;
}

.pilates-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 0;
}

/* Text Content */
.pilates-text-area {
    padding: 60px 40px;
    background-color: #fff;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pilates-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pilates-description-text {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pilates-cta-button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: auto;
    max-width: 200px;
}

.pilates-cta-button:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

/* Image Container */
.pilates-image-box {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pilates-image-box img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

/* Chat Widget */
.pilates-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.pilates-chat-widget:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.pilates-chat-widget::before {
    content: '💬';
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pilates-main-section {
        padding: 0;
    }

    .pilates-grid-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .pilates-text-area {
        height: auto;
        padding: 40px 20px;
    }

    .pilates-main-title {
        font-size: 2rem;
        text-align: center;
    }

    .pilates-description-text {
        font-size: 1rem;
        text-align: center;
    }

    .custom-btn-2 {
        display: block;
        text-align: center;
        align-items: center;
        margin: 0 auto;
        width: fit-content;
        max-width: none;
    }

    .pilates-image-box {
        margin: 0;
        width: 100%;
    }

    .pilates-image-box img {
        height: 600px;
    }

    .pilates-text-area {
        order: 2;
    }

    .pilates-image-box {
        order: 1;
    }

    .pilates-chat-widget {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pilates-text-area {
        padding: 30px 15px;
    }

    .pilates-main-title {
        font-size: 1.8rem;
    }

    .pilates-description-text {
        font-size: 0.95rem;
    }

    .pilates-cta-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .pilates-image-box img {
        height: 500px;
    }
}

/* Section specific styling */
.pilates-section-1 .pilates-text-area {
    order: 2;
}

.pilates-section-1 .pilates-image-box {
    order: 1;
}

.pilates-section-2 .pilates-text-area {
    order: 1;
}

.pilates-section-2 .pilates-image-box {
    order: 2;
}

.pilates-section-3 .pilates-text-area {
    order: 2;
}

.pilates-section-3 .pilates-image-box {
    order: 1;
}

@media (max-width: 768px) {

    .pilates-section-1 .pilates-text-area,
    .pilates-section-2 .pilates-text-area,
    .pilates-section-3 .pilates-text-area {
        order: 2;
    }

    .pilates-section-1 .pilates-image-box,
    .pilates-section-2 .pilates-image-box,
    .pilates-section-3 .pilates-image-box {
        order: 1;
    }
}

/* Animation */
.pilates-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.pilates-fade-in.pilates-visible {
    opacity: 1;
    transform: translateY(0);
}


/*pilates-benefits-section*/

/* ======================================
   PILATES BENEFITS SECTION - PROFESSIONAL BLACK & WHITE DESIGN
   ====================================== */

.pilates-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pilates-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.pilates-benefits-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.pilates-benefits-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000000;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.pilates-benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000000;
}

.pilates-benefits-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin: 25px auto 0;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

/* Grid Layout */
.pilates-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Individual Card Styling */
.pilates-benefit-card {
    position: relative;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.pilates-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

/* Image Container */
.pilates-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.pilates-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(100%);
}

.pilates-benefit-card:hover .pilates-card-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Overlay Effect */
.pilates-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.pilates-benefit-card:hover .pilates-card-overlay {
    opacity: 0.8;
}

/* Card Content */
.pilates-card-content {
    padding: 35px 25px 30px;
    text-align: center;
    background: #ffffff;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Icon Styling */
.pilates-card-icon {
    width: 70px;
    height: 70px;
    margin: -55px auto 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #000000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pilates-benefit-card:hover .pilates-card-icon {
    background: #000000;
    transform: rotate(360deg);
}

.pilates-card-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.pilates-benefit-card:hover .pilates-card-icon img {
    filter: brightness(0) invert(1);
}

/* Card Title */
.pilates-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Statistics Box Styling */
.pilates-stats-box {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 20px 15px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.pilates-benefit-card:hover .pilates-stats-box {
    background: #000000;
    border-color: #000000;
}

/* Individual Stat Item */
.pilates-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.pilates-stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pilates-benefit-card:hover .pilates-stat-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Stat Number */
.pilates-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: right;
    transition: color 0.3s ease;
}

.pilates-benefit-card:hover .pilates-stat-number {
    color: #ffffff;
}

/* Stat Text */
.pilates-stat-text {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    text-align: left;
    flex: 1;
    transition: color 0.3s ease;
}

.pilates-benefit-card:hover .pilates-stat-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Decorative Divider */
.pilates-card-divider {
    width: 0;
    height: 2px;
    background: #000000;
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.pilates-benefit-card:hover .pilates-card-divider {
    width: 60px;
    background: #ffffff;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Tablets and Medium Screens */
@media screen and (max-width: 992px) {
    .pilates-benefits-section {
        padding: 60px 0;
    }

    .pilates-benefits-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .pilates-benefits-subtitle {
        font-size: 1rem;
    }

    .pilates-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .pilates-card-image-wrapper {
        height: 270;
    }

    .pilates-card-content {
        min-height: 280px;
        padding: 30px 20px 25px;
    }

    .pilates-stat-number {
        font-size: 24px;
        min-width: 70px;
    }

    .pilates-stat-text {
        font-size: 12px;
    }
}

/* Mobile Phones */
@media screen and (max-width: 768px) {
    .pilates-benefits-section {
        padding: 50px 0;
    }

    .pilates-benefits-header {
        margin-bottom: 40px;
    }

    .pilates-benefits-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .pilates-benefits-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .pilates-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pilates-card-image-wrapper {
        height: 260px;
    }

    .pilates-card-content {
        padding: 25px 20px;
        min-height: 260px;
    }

    .pilates-card-title {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .pilates-card-icon {
        width: 60px;
        height: 60px;
        margin-top: -50px;
    }

    .pilates-card-icon img {
        width: 30px;
        height: 30px;
    }

    .pilates-stats-box {
        padding: 15px 12px;
        margin: 15px 0;
    }

    .pilates-stat-item {
        gap: 8px;
        margin: 10px 0;
        padding: 6px 0;
    }

    .pilates-stat-number {
        font-size: 22px;
        min-width: 65px;
    }

    .pilates-stat-text {
        font-size: 11px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .pilates-benefits-section {
        padding: 40px 0;
    }

    .pilates-benefits-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .pilates-benefits-title::after {
        width: 60px;
        height: 2px;
    }

    .pilates-benefits-subtitle {
        font-size: 0.9rem;
    }

    .pilates-card-image-wrapper {
        height: 250px;
    }

    .pilates-card-content {
        padding: 25px 15px;
        min-height: 240px;
    }

    .pilates-stats-box {
        padding: 12px 10px;
        margin: 12px 0;
    }

    .pilates-stat-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 8px 0;
    }

    .pilates-stat-number {
        font-size: 24px;
        min-width: auto;
        text-align: center;
    }

    .pilates-stat-text {
        font-size: 11px;
        text-align: center;
    }
}

/* High Resolution Displays */
@media screen and (min-width: 1400px) {
    .pilates-benefits-container {
        max-width: 1400px;
    }

    .pilates-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .pilates-card-content {
        min-height: 320px;
    }
}

/* Print Styles */
@media print {
    .pilates-benefits-section {
        background: #ffffff;
        padding: 30px 0;
    }

    .pilates-benefit-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000000;
    }

    .pilates-stats-box {
        background: #ffffff;
        border: 1px solid #000000;
    }

    .pilates-stat-number,
    .pilates-stat-text {
        color: #000000 !important;
    }
}



/* ============================================
   PRODUCT SECTION - FULL RESPONSIVE DESIGN
   ============================================ */

.product-section-wrapper {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Styling ===== */
.product-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.product-section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000000;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.product-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000000;
}

.product-section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin: 25px auto 0;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Slider Wrapper ===== */
.product-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slider-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
}

/* ===== Product Card ===== */
.product-display-card {
    background: #ffffff;
    border: 2px solid #000000;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

/* ===== Grid Layout ===== */
.product-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* ===== Image Column ===== */
.product-img-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-right: 2px solid #000000;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-display-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect only on image */
.product-img-container:hover .product-display-img {
    transform: scale(1.08);
}

.product-featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    text-transform: uppercase;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* ===== Content Column ===== */
.product-content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    background: #ffffff;
}

.product-name-display {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 25px;
}

.product-description-text {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ===== Video Feature Box ===== */
.product-video-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #000000;
    margin-bottom: 30px;
}

.product-video-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #000000;
}

.product-video-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.5;
    font-weight: 500;
}

.product-video-text strong {
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== CTA Button ===== */
.product-quick-view-btn {
    display: inline-block;
    border: 2px solid #000;
    color: #000;
    background: transparent;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.product-quick-view-btn:hover {
    background: #000;
    color: #fff;
}

/* ===== Navigation Arrows ===== */
.product-slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-prev-arrow {
    left: 20px;
}

.product-next-arrow {
    right: 20px;
}

.nav-arrow-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.product-slider-nav-arrow:hover {
    background: #333;
    transform: translateY(-50%) scale(1.1);
}

.product-slider-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* ===== Slider Indicators ===== */
.product-slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.product-slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider-indicator:hover {
    background: #666;
}

.product-slider-indicator.active {
    width: 36px;
    background: #000;
    border-radius: 6px;
    border-color: #000;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and Medium Screens */
@media screen and (max-width: 992px) {
    .product-section-wrapper {
        padding: 60px 0;
    }

    .product-section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .product-section-subtitle {
        font-size: 1rem;
    }

    .product-img-container {
        height: 400px;
        padding: 30px;
    }

    .product-content-area {
        padding: 40px 30px;
    }

    .product-name-display {
        font-size: 1.9rem;
    }

    .product-slider-nav-arrow {
        padding: 10px;
    }

    .nav-arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Phones - CRITICAL FIXES */
@media screen and (max-width: 768px) {
    .product-section-wrapper {
        padding: 50px 0;
        min-height: auto;
    }

    .product-container {
        padding: 0 15px;
    }

    .product-header {
        margin-bottom: 40px;
    }

    .product-section-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .product-section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .product-slider-slide {
        padding: 0 5px;
    }

    .product-display-card {
        border-width: 2px;
    }

    /* Stack layout for mobile */
    .product-grid-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-img-container {
        height: 350px;
        border-right: none;
        border-bottom: 2px solid #000000;
        padding: 25px;
    }

    .product-featured-tag {
        top: 15px;
        left: 15px;
        font-size: 0.65rem;
        padding: 6px 16px;
    }

    .product-content-area {
        padding: 30px 20px;
    }

    .product-name-display {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .product-description-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .product-video-feature {
        padding: 16px 20px;
        gap: 12px;
        margin-bottom: 25px;
    }

    .product-video-icon {
        width: 30px;
        height: 30px;
    }

    .product-video-text {
        font-size: 0.9rem;
    }

    .product-video-text strong {
        font-size: 1rem;
    }

    .product-quick-view-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .product-slider-nav-arrow {
        padding: 8px;
        top: 40%;
    }

    .product-prev-arrow {
        left: 10px;
    }

    .product-next-arrow {
        right: 10px;
    }

    .nav-arrow-icon {
        width: 18px;
        height: 18px;
    }

    .product-slider-indicators {
        margin-top: 35px;
        gap: 8px;
    }

    .product-slider-indicator {
        width: 10px;
        height: 10px;
    }

    .product-slider-indicator.active {
        width: 30px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .product-section-wrapper {
        padding: 40px 0;
    }

    .product-container {
        padding: 0 10px;
    }

    .product-section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .product-section-title::after {
        width: 60px;
        height: 2px;
    }

    .product-section-subtitle {
        font-size: 0.9rem;
    }

    .product-img-container {
        height: 300px;
        padding: 20px;
    }

    .product-content-area {
        padding: 25px 15px;
    }

    .product-name-display {
        font-size: 1.4rem;
    }

    .product-description-text {
        font-size: 0.9rem;
    }

    .product-video-feature {
        padding: 14px 16px;
    }

    .product-quick-view-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* High Resolution Displays */
@media screen and (min-width: 1400px) {
    .product-container {
        max-width: 1400px;
    }

    .product-img-container {
        height: 550px;
    }
}



/* ============================================
   VIDEO GALLERY SECTION - BLACK & WHITE THEME
   ============================================ */

.video-gallery-section {
    padding: 80px 0 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.video-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Styling ===== */
.video-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-gallery-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000000;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.video-gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000000;
}

.video-gallery-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin: 25px auto 0;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Video Grid Layout ===== */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* ===== Video Card Styling ===== */
.video-gallery-card {
    background: #ffffff;
    border: 2px solid #000000;
    overflow: hidden;
}

/* ===== Video Wrapper ===== */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000000;
    overflow: hidden;
}

.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Custom Play Overlay ===== */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-gallery-card.playing .video-play-overlay {
    opacity: 0;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: all;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #000000;
}

.play-icon {
    width: 32px;
    height: 32px;
    color: #000000;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.video-play-btn:hover .play-icon {
    color: #ffffff;
}

/* ===== Video Info Section ===== */
.video-info {
    padding: 25px 20px;
    background: #ffffff;
    border-top: 2px solid #000000;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.about-video-content {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-video-content::before {
    font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media screen and (max-width: 992px) {
    .video-gallery-section {
        padding: 60px 0;
    }

    .video-gallery-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .video-gallery-subtitle {
        font-size: 1rem;
    }

    .video-gallery-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .play-icon {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Landscape & Smaller Tablets */
@media screen and (max-width: 768px) {
    .video-gallery-section {
        padding: 50px 0;
    }

    .video-gallery-header {
        margin-bottom: 40px;
    }

    .video-gallery-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .video-gallery-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .video-info {
        padding: 20px 15px;
    }

    .video-title {
        font-size: 1.15rem;
    }

    .about-video-content {
        font-size: 0.9rem;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
    }

    .play-icon {
        width: 26px;
        height: 26px;
    }

    .video-gallery-btn {
        padding: 16px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .video-gallery-section {
        padding: 40px 0;
    }

    .video-gallery-container {
        padding: 0 15px;
    }

    .video-gallery-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .video-gallery-title::after {
        width: 60px;
        height: 2px;
    }

    .video-gallery-subtitle {
        font-size: 0.9rem;
    }

    .video-gallery-grid {
        gap: 20px;
    }

    .video-info {
        padding: 18px 12px;
    }

    .video-title {
        font-size: 1rem;
    }

    .about-video-content {
        font-size: 0.85rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        width: 24px;
        height: 24px;
    }

    .video-gallery-btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    }
}

/* High Resolution Displays */
@media screen and (min-width: 1400px) {
    .video-gallery-container {
        max-width: 1400px;
    }

    .video-gallery-grid {
        gap: 50px;
    }
}



/* ============================================
   FAQ SECTION - ENHANCED BLACK & WHITE DESIGN
   ============================================ */

.faq-section-enhanced {
    padding: 80px 0 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Styling ===== */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-main-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000000;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000000;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin: 25px auto 0;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== FAQ Grid Layout ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== FAQ Item Styling ===== */
.faq-item {
    background: #ffffff;
    border: 2px solid #000000;
    overflow: hidden;
}

/* ===== Question Button ===== */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: #000000;
    color: #ffffff;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #ffffff;
}

/* ===== Icon Styling ===== */
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #ffffff;
    transform: rotate(45deg);
}

.faq-icon-svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-item.active .faq-icon-svg {
    color: #000000;
}

.faq-icon-horizontal {
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-icon-horizontal {
    opacity: 0;
}

/* ===== Answer Section ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 25px 30px;
    background: #f8f9fa;
}

.faq-answer-content p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media screen and (max-width: 992px) {
    .faq-section-enhanced {
        padding: 60px 0;
    }

    .faq-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question-text {
        font-size: 1.05rem;
    }

    .faq-answer-content {
        padding: 20px 25px;
    }
}

/* Mobile & Tablets */
@media screen and (max-width: 768px) {
    .faq-section-enhanced {
        padding: 50px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-main-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .faq-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-icon-svg {
        width: 14px;
        height: 14px;
    }

    .faq-answer-content {
        padding: 18px 20px;
    }

    .faq-answer-content p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section-enhanced {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-main-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .faq-main-title::after {
        width: 60px;
        height: 2px;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 16px 15px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 16px 15px;
    }

    .faq-answer-content p {
        font-size: 0.9rem;
    }
}

/* High Resolution Displays */
@media screen and (min-width: 1400px) {
    .faq-container {
        max-width: 1400px;
    }

    .faq-grid {
        gap: 50px;
    }
}




/* ============================================
   FOUNDERS MESSAGE SECTION - ENHANCED DESIGN
   ============================================ */

.founders-message-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    padding: 60px 0;
    font-family: 'League Spartan', sans-serif;
    position: relative;
    overflow: hidden;
}

.founders-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Text Column Styling */
.founders-text-column {
    padding-right: 40px;
}

.founders-content {
    position: relative;
    z-index: 1;
}

.founders-label {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founders-title {
    font-size: 60px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.founders-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Highlights List */
.founders-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

/* Video Wrapper */
.founders-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    max-height: 380px;
    border: 2px solid #000000;
    background: #000000;
}

.founders-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
    .founders-message-section {
        padding: 50px 0;
    }

    .founders-text-column {
        padding-right: 20px;
        margin-bottom: 40px;
    }

    .founders-title {
        font-size: 50px;
    }

    .founders-description {
        font-size: 0.95rem;
    }

    .founders-video-wrapper {
        max-height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .founders-message-section {
        padding: 40px 0;
    }

    .founders-text-column {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .founders-label {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .founders-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .founders-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .highlight-item {
        gap: 12px;
    }

    .highlight-icon {
        width: 36px;
        height: 36px;
    }

    .highlight-icon svg {
        width: 18px;
        height: 18px;
    }

    .highlight-item span {
        font-size: 0.95rem;
    }

    .founders-video-wrapper {
        max-height: 280px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .founders-message-section {
        padding: 30px 0;
    }

    .founders-label {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .founders-title {
        font-size: 36px;
    }

    .founders-description {
        font-size: 16px;
    }

    .founders-highlights {
        gap: 12px;
    }

    .highlight-item {
        gap: 10px;
    }

    .highlight-icon {
        width: 32px;
        height: 32px;
    }

    .highlight-icon svg {
        width: 16px;
        height: 16px;
    }

    .highlight-item span {
        font-size: 16px;
    }

    .founders-video-wrapper {
        max-height: 220px;
        border-width: 2px;
        border-radius: 6px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .founders-video-wrapper {
        max-height: 420px;
    }
}