/* Custom English CSS for OPACK */

:root {
  /* Core Theme Colors */
  --clr-theme-primary: #2596be;
  --clr-theme-secondary: #1d7696;
  --clr-theme-grocery: #FFFFFF;
  --clr-theme-3: #FFFFFF;
  --clr-theme-4: #2596be;
  --clr-theme-5: #FFFFFF;
  
  /* Text and Headings */
  --clr-common-heading: #1A1A1A;
  --clr-common-selection: #FFFFFF;
  --clr-text-primary: #fff;
  --clr-text-secondary: #1A1A1A;
  --clr-text-body: #1A1A1A;
  --clr-text-2: #1A1A1A;
  --clr-text-3: #FFFFFF;
  --clr-text-4: #4A4A4A;
  
  /* Backgrounds */
  --clr-bg-1: #F7F7F7;
  --clr-bg-2: #131033; /* Elegant Dark Footer Background */
  --clr-bg-3: #F7F7F7;
  --clr-bg-4: #F7F7F7;
  --clr-bg-5: rgba(37, 150, 190, 0.05); /* Light logo-colored background */
  
  /* Borders & Gradients */
  --clr-border-1: #FFFFFF;
  --clr-border-2: rgba(93, 78, 211, 0.2);
  --clr-border-primary: #FFFFFF;
  --clr-gradient-1: linear-gradient(96.81deg, #FFFFFF 0%, #FFFFFF 50%, #42B7E9 100%);
}

/* Fix English Navbar Spacing */
.header-main-4 .mean__menu-wrapper.furniture__menu {
    margin-left: 50px !important; /* Move menu away from logo in LTR */
}

.header-main-4 .header-logo {
    margin-right: 20px;
}

.tp-header-top-menu {
    gap: 20px;
}

/* RTL Styles for Arabic */
[dir="rtl"] .header-main-4 .mean__menu-wrapper.furniture__menu {
    margin-right: 50px !important; /* Move menu away from logo in RTL */
    margin-left: 0 !important;
}

[dir="rtl"] .header-main-4 .header-logo {
    margin-left: 20px;
    margin-right: 0;
}

[dir="rtl"] .header-main-4 .header-logo img {
    transform: scaleX(-1); /* Flip logo if needed */
}

[dir="rtl"] .tp-header-top-menu {
    direction: rtl;
    justify-content: flex-start !important;
}

[dir="rtl"] .header-to-main {
    direction: rtl;
}

[dir="rtl"] .header-to-main .link-text {
    text-align: right;
}

[dir="rtl"] .header-to-main .link-text a {
    margin-right: 5px;
    margin-left: 0;
}

[dir="rtl"] .header-to-main .link-text img {
    margin-left: 5px;
    margin-right: 0;
}

[dir="rtl"] .header-action-item {
    margin-left: 15px;
    margin-right: 0;
}

[dir="rtl"] .header-search {
    margin-left: 20px;
    margin-right: 0;
}

[dir="rtl"] .header-search input {
    text-align: right;
}

[dir="rtl"] .furniture__menu ul {
    text-align: right;
}

[dir="rtl"] .furniture__menu ul li {
    float: right;
}

[dir="rtl"] .breadcrumb__menu ul {
    text-align: right;
}

[dir="rtl"] .breadcrumb__menu ul li {
    float: right;
}

[dir="rtl"] .footer__widget ul {
    text-align: right;
}

[dir="rtl"] .footer__widget ul li {
    text-align: right;
}

[dir="rtl"] .product-content {
    text-align: right;
}

[dir="rtl"] .product-title {
    text-align: right;
}

[dir="rtl"] .product-price {
    text-align: right;
}

/* General text alignment for RTL */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .text-left {
    text-align: right !important;
}

[dir="rtl"] .text-right {
    text-align: left !important;
}

[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .mr-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .float-left {
    float: right !important;
}

[dir="rtl"] .float-right {
    float: left !important;
}
button.furniture-clr-hover {
    font-size: 15px !important;
}
.search-sidebar-form .btn{
 background-color: var(--clr-theme-primary);
}

/* Product button states */
.product-action-btn {
    transition: all 0.3s ease;
}

/* Wishlist button state - greenish yellow when product is in wishlist */


.product-action-btn.add-to-wishlist-btn.in-wishlist svg {
    fill: #fff !important;
    stroke: #fff !important;
}

.product-action-btn.add-to-wishlist-btn.in-wishlist:hover {
    background-color: #e1e816 !important; /* Darker greenish yellow on hover */
    transform: scale(1.05);
}

/* Cart button state - subtle indication when product is in cart */
.product-action-btn.add-to-cart-btn.in-cart {
    background-color: #28a745 !important; /* Green color */
    border-color: #28a745 !important;
}

.product-action-btn.add-to-cart-btn.in-cart svg {
    fill: #fff !important;
    stroke: #fff !important;
}

.product-action-btn.add-to-cart-btn.in-cart:hover {
    background-color: #218838 !important; /* Darker green on hover */
    transform: scale(1.05);
}

/* Loading state for buttons */
.product-action-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.product-action-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pagination Styles */
.custom-pagination {
    margin-top: 40px;
}

.custom-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background-color: #fff;
    color: var(--clr-theme-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
    background-color: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    color: #fff;
    transform: translateY(-2px);
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.custom-pagination .page-link.act-btn {
    padding: 0 10px;
}

.custom-pagination .page-link i {
    font-size: 14px;
    line-height: 1;
}

.custom-pagination .page-link:hover i {
    color: #fff;
}

.custom-pagination .inner-page-list {
    margin: 0 8px;
}

.custom-pagination .inner-page-list .pagination {
    gap: 4px;
}

/* RTL Pagination Support */
[dir="rtl"] .custom-pagination .pagination {
    direction: rtl;
}

[dir="rtl"] .custom-pagination .page-link i.bi-chevron-left {
    transform: rotate(180deg);
}

[dir="rtl"] .custom-pagination .page-link i.bi-chevron-right {
    transform: rotate(180deg);
}

.bd-filter__sidebar li{
    list-style-type: none !important;
    margin-bottom: 10px !important;
}

/* Fix for Continue Shopping button hover issue in wishlist */
.cart-area .fill-btn:hover,
.wishlist .fill-btn:hover {
    color: #ffffff !important;
}

/* Ensure continue shopping button text remains visible on hover */
.table .fill-btn:hover {
    color: #ffffff !important;
}

/* Additional specific rule for continue shopping button */
#continue_shopping:hover,
#continue_shopping:hover .fill-btn-normal,
#continue_shopping:hover .fill-btn-hover {
    color: #ffffff !important;
}

/* Force white text on hover for all fill-btn instances */
.fill-btn#continue_shopping:hover {
    color: #ffffff !important;
}

/* Target the inner spans specifically */
#continue_shopping .fill-btn-inner span {
    color: #ffffff !important;
}

/* Disable the ::before pseudo-element for continue shopping button */
#continue_shopping::before {
    display: none !important;
}

/* Ensure no background appears on hover */
#continue_shopping:hover::before {
    display: none !important;
}

/* Override any background color on hover */
#continue_shopping:hover {
    background-color: transparent !important;
    background: none !important;
    background-image: none !important;
}

/* Ensure no background at all times */
#continue_shopping {
    background-color: transparent !important;
    background: none !important;
    background-image: none !important;
}

/* Force transparent background on all states */
#continue_shopping:link,
#continue_shopping:visited,
#continue_shopping:active,
#continue_shopping:focus {
    background-color: transparent !important;
    background: none !important;
    background-image: none !important;
}
.text-time
{
    color:rgba(255, 255, 255, 0.7) !important
}
.furniture__product .prod-desc
{
    text-align: center;
}

/* --- Global Components --- */
.btn-gradient {
    background: var(--primary-gradient);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a3c !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #f1f1f1;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    border-color: #2596be;
    color: #2596be !important;
    background: rgba(37, 150, 190, 0.05);
    transform: translateY(-2px);
}

.section-title-modern {
    font-size: 58px;
    font-weight: 800;
    color: #1a1a3c;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .section-title-modern { font-size: 42px; }
}

@media (max-width: 768px) {
    .section-title-modern { font-size: 32px; }
}

/* --- Form Styles --- */
.form-control {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-control:focus {
    border-color: #2596be;
    box-shadow: 0 0 0 4px rgba(37, 150, 190, 0.1);
    background: #fff;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h5 {
    color: #2596be;
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-section h4 {
    color: #2596be !important;
    font-weight: 700;
}

/* --- About Page Specifics --- */
.about-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 600px;
    border-radius: 40px;
}

@media (max-width: 991px) {
    .about-hero-img {
        min-height: 300px;
        max-height: 400px;
    }
}

.about-label {
    color: #2596be;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.progress-item {
    margin-bottom: 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-header h6 {
    font-weight: 700;
    color: #1a1a3c;
    margin: 0;
}

.progress-header span {
    color: #2596be;
    font-weight: 700;
}

.progress-bar-container {
    height: 6px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.vision-mission-box {
    border: 2px solid #2596be;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.vision-mission-box:hover {
    background: rgba(37, 150, 190, 0.02);
    transform: translateY(-5px);
}

.vision-mission-box h5 {
    color: #2596be;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
}

.vision-mission-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

/* --- Pricing Page Specifics --- */
.pricing-wrapper {
    display: flex;
    gap: 24px;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .pricing-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
        -webkit-overflow-scrolling: touch;
    }
    .pricing-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    .pricing-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .pricing-wrapper::-webkit-scrollbar-thumb {
        background: #2596be;
        border-radius: 10px;
    }
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 35px 25px;
    flex: 0 0 calc(25% - 18px); /* 4 plans on desktop */
    min-width: 280px; /* Minimum width for mobile scroll */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .pricing-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 992px) {
    .pricing-card {
        flex: 0 0 300px;
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: #2596be;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a3c;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a3c;
    margin: 30px 0;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: #636e72;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pricing-features li {
    font-size: 15px;
    color: #1a1a3c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #2596be;
    font-size: 18px;
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid #2596be;
    color: #2596be !important;
    padding: 12px;
    border-radius: 50px;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-pricing-outline:hover {
    background: rgba(37, 150, 190, 0.05);
    border-color: #1d7696;
    color: #1d7696 !important;
    transform: translateY(-2px);
}

.help-banner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.help-banner h4 {
    font-weight: 700;
    color: #1a1a3c;
    margin-bottom: 10px;
}

.help-banner p {
    margin: 0;
    color: #636e72;
}

@media (max-width: 768px) {
    .help-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

/* --- Responsive Navbar --- */
.content-wrapper {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .content-wrapper {
        margin-top: 30px;
    }
}

.custom-navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 50px; 
    background: #fff; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo img {
    height: 40px;
}

@media (min-width: 993px) {
    .nav-logo img {
        height: 55px;
    }
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    list-style: none; 
    margin: 0; 
    padding: 0;
}

.nav-links li a { 
    text-decoration: none; 
    color: #1a1a3c; 
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--clr-theme-primary);
}

.nav-cta .btn-gradient {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.nav-cta .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.3);
}

.menu-toggle { 
    display: none; 
    cursor: pointer; 
    font-size: 24px; 
    color: #1a1a3c; 
}

@media (max-width: 992px) {
    .custom-navbar { padding: 15px 20px; }
    .menu-toggle { display: block; }
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: #fff; 
        padding: 20px; 
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); 
        gap: 15px;
    }
    .nav-links.active { display: flex; }
    .nav-cta { display: none; }
    .nav-links .mobile-cta { display: block; margin-top: 10px; }
}

@media (min-width: 993px) {
    .nav-links .mobile-cta { display: none; }
}

/* --- CTA Section --- */
.cta-section h2, .cta-footer h2 {
    font-size: 42px !important;
    font-weight: 800 !important;
}

@media (max-width: 768px) {
    .cta-section h2, .cta-footer h2 {
        font-size: 28px !important;
    }
    .cta-section p, .cta-footer p {
        font-size: 15px !important;
    }
}

/* --- Section & UI Styles --- */
:root {
    --primary-gradient: linear-gradient(135deg, #2596be 0%, #1d7696 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1a1a3c;
    --text-muted: #636e72;
}

::selection {
    background: #2596be;
    color: #ffffff;
}

.landing-hero {
    padding: 80px 0;
    background: #fff;
    background-image: radial-gradient(at 0% 0%, rgba(37, 150, 190, 0.05) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(29, 118, 150, 0.05) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-title-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a3c;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-pill {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(37, 150, 190, 0.1);
    color: #2596be;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-desc-modern {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list-modern li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.img-wrapper-modern {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.img-wrapper-modern img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper-modern:hover img {
    transform: scale(1.05);
}

.glass-overlay-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white !important;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.feature-card-modern {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card-modern:hover {
    transform: translateY(-15px);
    border-color: transparent;
}

.feature-card-modern:hover::before { opacity: 1; }

.feature-card-modern:hover .feature-card-icon,
.feature-card-modern:hover .feature-card-title,
.feature-card-modern:hover .feature-card-desc {
    color: white !important;
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 150, 190, 0.1);
    color: #2596be;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a3c;
    margin-bottom: 15px;
}

.feature-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.core-features-section {
    padding: 80px 0;
    background: #fafafa;
}

.soup-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.alternate-section {
    padding: 80px 0;
}

.alternate-section:nth-child(even) { background: #fdfbfb; }

/* --- Site-Wide Mobile Spacing Adjustments --- */
@media (max-width: 768px) {
    .landing-hero { padding: 40px 0; }
    .core-features-section { padding: 40px 0; }
    .alternate-section { padding: 40px 0; }
    
    .section-desc-modern { font-size: 16px; margin-bottom: 20px; }
    .hero-btns { gap: 15px !important; }
    
    .pricing-wrapper { gap: 15px; padding: 10px 0; }
    .pricing-card { min-width: 260px; padding: 25px 20px; }
    
    .help-banner { padding: 25px 20px; }
}

/* --- Footer Bottom Adjustments --- */
.footer-bottom-container {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a3c;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    text-decoration: none;
    color: #1a1a3c;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2596be;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 10px 20px;
    }
    footer .col-lg-4 {
        margin-bottom: 20px;
    }
}

/* Swiper overrides */
@media (max-width: 768px) {
    .features-container {
        overflow: hidden;
        padding: 10px 0;
    }
    .features-swiper {
        padding-bottom: 50px !important;
        overflow: visible !important;
    }
    .features-swiper .swiper-slide {
        height: auto;
        opacity: 0.5;
        transition: all 0.3s ease;
        transform: scale(0.9);
    }
}

@media (max-width: 575px) {
    .features-swiper .swiper-slide-active { 
        opacity: 1; 
        transform: scale(1);
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .features-swiper .swiper-slide-active,
    .features-swiper .swiper-slide-next { 
        opacity: 1; 
        transform: scale(1);
    }
}