/**
 * Togoru Custom Theme
 * Primary Brand Color: #1ECE7C
 */

/* Arabic Font - PingAR LT */
@font-face {
    font-family: 'PingAR LT';
    src: url('../fonts/PingAR+LT-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR LT';
    src: url('../fonts/PingAR+LT-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR LT';
    src: url('../fonts/PingAR+LT-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR LT';
    src: url('../fonts/PingAR+LT-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* English Font - Poppins from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply fonts based on language */
html[lang="ar"],
html[lang="ar"] body {
    font-family: 'PingAR LT', 'Cairo', sans-serif !important;
}

html[lang="en"],
html[lang="en"] body {
    font-family: 'Poppins', sans-serif !important;
}

/* Apply to all text elements */
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] a,
html[lang="ar"] span,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] li,
html[lang="ar"] div {
    font-family: 'PingAR LT', 'Cairo', sans-serif !important;
}

/* Exclude Font Awesome icons from font override */
html[lang="ar"] .fa,
html[lang="ar"] .fas,
html[lang="ar"] .far,
html[lang="ar"] .fal,
html[lang="ar"] .fad,
html[lang="ar"] .fab,
html[lang="en"] .fa,
html[lang="en"] .fas,
html[lang="en"] .far,
html[lang="en"] .fal,
html[lang="en"] .fad,
html[lang="en"] .fab {
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands' !important;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6,
html[lang="en"] p,
html[lang="en"] a,
html[lang="en"] span,
html[lang="en"] button,
html[lang="en"] input,
html[lang="en"] textarea,
html[lang="en"] li,
html[lang="en"] div {
    font-family: 'Poppins', sans-serif !important;
}

/* ================================
   ENHANCED TYPOGRAPHY SYSTEM
   ================================ */

/* Heading Typography Enhancements */
h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 {
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h3 {
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.4;
}

h4, h5, h6 {
    font-weight: 600;
    line-height: 1.5;
}

/* Body Text Enhancements */
p {
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

/* Display Typography for Hero Sections */
.display-1, .display-2, .display-3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Subtitle/Secondary Text */
.text-muted {
    opacity: 0.8;
}

/* ================================
   MODERN HEADER - CLEAN & MINIMAL
   ================================ */

.togoru-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.togoru-nav {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
}

.brand-logo {
    height: 35px;
    width: auto;
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* CTA Button in Navigation */
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 50px;
    background: #000;
    margin-left: 12px;
}

.nav-cta-btn i {
    font-size: 16px;
}

.nav-cta-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

html[lang="ar"] .nav-cta-btn {
    margin-left: 0;
    margin-right: 12px;
}

/* Language Toggle - Modern Minimal */
.lang-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px;
    border-radius: 8px;
    margin-left: 12px;
}

.lang-option {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.lang-option:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
    color: #fff;
    background: #1ECE7C;
    box-shadow: 0 2px 8px rgba(30, 206, 124, 0.3);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff;
}

.dropdown-toggle.simple-arrow {
    padding: 8px 12px;
    min-width: auto;
}

.dropdown-toggle.simple-arrow i {
    font-size: 14px;
    margin: 0;
}

.dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.dropdown-toggle i.rotated {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #1ECE7C;
    padding-left: 20px;
}

/* RTL Support for Dropdown */
html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

html[dir="rtl"] .dropdown-item:hover {
    padding-left: 16px;
    padding-right: 20px;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* RTL Support */
html[lang="ar"] .nav-menu {
    direction: rtl;
}

html[lang="ar"] .lang-toggle {
    margin-left: 0;
    margin-right: 12px;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
    }

    html[lang="ar"] .nav-menu {
        right: auto;
        left: -100%;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    html[lang="ar"] .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        border-radius: 0;
    }

    .nav-link:hover {
        background: transparent;
        color: #1ECE7C;
    }

    .nav-cta-btn {
        width: 100%;
        margin: 10px 0;
        justify-content: center;
        padding: 14px 24px;
    }

    html[lang="ar"] .nav-cta-btn {
        margin-right: 0;
    }

    .lang-toggle {
        margin: 20px 0 0 0;
        width: 100%;
        justify-content: center;
    }

    html[lang="ar"] .lang-toggle {
        margin-right: 0;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 14px 0;
        justify-content: space-between;
    }

    .dropdown-toggle.simple-arrow {
        padding: 14px 0;
        width: 100%;
    }

    .dropdown-toggle.simple-arrow::before {
        content: attr(aria-label);
        margin-right: 8px;
    }

    html[dir="rtl"] .dropdown-toggle.simple-arrow::before {
        margin-right: 0;
        margin-left: 8px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.show {
        max-height: 400px;
        padding: 8px 0;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.7);
        padding: 12px 16px;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #1ECE7C;
        padding-left: 24px;
    }

    html[dir="rtl"] .dropdown-item:hover {
        padding-right: 24px;
        padding-left: 16px;
    }
}


/* Primary Color Overrides */
.color-primary,
.text-primary,
a.text-primary:hover,
a.text-primary:focus {
    color: #1ECE7C !important;
}

.primary-bg,
.bg-primary {
    background-color: #1ECE7C !important;
}

/* Gradient backgrounds with new brand color */
.gradient-bg {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%) !important;
}

/* Buttons */
.btn-primary,
.btn-brand-01,
.btn-brand-02,
.btn-brand-03 {
    background-color: #1ECE7C !important;
    border-color: #1ECE7C !important;
}

.btn-primary:hover,
.btn-brand-01:hover,
.btn-brand-02:hover,
.btn-brand-03:hover {
    background-color: #17b56d !important;
    border-color: #17b56d !important;
}

.btn-outline-primary,
.btn-outline-brand-01,
.btn-outline-brand-02 {
    color: #1ECE7C !important;
    border-color: #1ECE7C !important;
}

.btn-outline-primary:hover,
.btn-outline-brand-01:hover,
.btn-outline-brand-02:hover {
    background-color: #1ECE7C !important;
    border-color: #1ECE7C !important;
    color: #fff !important;
}

/* Links */
a {
    color: #1ECE7C;
}

a:hover,
a:focus {
    color: #17b56d;
}

/* Badges */
.badge-primary,
.accent-bg {
    background-color: #1ECE7C !important;
}

/* Icons and highlights */
.color-secondary,
.icon-color {
    color: #1ECE7C !important;
}

/* Borders */
.border-primary {
    border-color: #1ECE7C !important;
}

/* Scroll to top button */
.scroll-top.primary-bg {
    background-color: #1ECE7C !important;
}

/* Counter sections */
.counter-section.gradient-bg {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%) !important;
}

/* Pricing switch */
.pricing-switch-wrap .year-switch.text-success {
    color: #1ECE7C !important;
}

/* Newsletter section */
.newsletter-wrap.primary-bg {
    background-color: #1ECE7C !important;
}

/* Social icons hover */
.social-list-default .list-inline-item a:hover {
    background-color: #1ECE7C !important;
    border-color: #1ECE7C !important;
}

/* Form focus states */
.form-control:focus {
    border-color: #1ECE7C !important;
    box-shadow: 0 0 0 0.2rem rgba(30, 206, 124, 0.25) !important;
}

/* Navigation active states */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #1ECE7C !important;
}

/* Language switcher active */
.lang-switcher a.active {
    background-color: rgba(30, 206, 124, 0.3) !important;
}

.lang-switcher a:hover {
    background-color: rgba(30, 206, 124, 0.2) !important;
}

/* Testimonial gradient background */
.testimonial-section.gradient-bg {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%) !important;
}

/* Pricing popular highlight */
.popular-price {
    border: 2px solid #1ECE7C !important;
}

/* Owl carousel dots */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #1ECE7C !important;
}

/* Progress bars */
.progress-bar {
    background-color: #1ECE7C !important;
}

/* List markers */
.dot-circle li:before {
    color: #1ECE7C !important;
}

/* Footer links hover */
footer a:hover {
    color: #1ECE7C !important;
}

/* Single promo card hover effect */
.single-promo-card:hover {
    border-top: 3px solid #1ECE7C !important;
}

/* Featured price color */
.price.color-secondary {
    color: #1ECE7C !important;
}

/* Meta date badge */
.meta-date {
    background-color: #1ECE7C !important;
}

/* Count numbers */
.count-number.color-primary {
    color: #1ECE7C !important;
}

/* Override CSS Variables */
:root {
    --primary: #1ECE7C !important;
    --indigo: #1ECE7C !important;
    --purple: #1ECE7C !important;
    --success: #1ECE7C !important;
}

/* Bootstrap indigo/purple overrides */
.bg-indigo,
.bg-purple,
.text-indigo,
.text-purple {
    background-color: #1ECE7C !important;
    color: #1ECE7C !important;
}

/* Secondary color override */
.bg-secondary,
.btn-secondary {
    background-color: #1ECE7C !important;
    border-color: #1ECE7C !important;
}

.btn-secondary:hover {
    background-color: #17b56d !important;
    border-color: #17b56d !important;
}

.text-secondary {
    color: #1ECE7C !important;
}

/* Override purple gradients - SPECIFIC ONLY */
.gradient-bg {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%) !important;
}

/* Keep header transparent */
header.header,
.header {
    background: transparent !important;
}

/* Hero section should have gradient */
.bg-image {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%) !important;
}

/* Promo section white background */
.promo-section {
    background: #fff !important;
}

/* Testimonial section overrides */
.testimonial-content-wrap .testimonial-shape:before {
    background: #17b56d !important;
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap {
    background: #1ECE7C !important;
}

.testimonial-quote-wrap {
    position: relative !important;
}

/* Minimal testimonial fixes - don't break the carousel! */

/* Responsive testimonial spacing fixes */
@media (max-width: 768px) {
    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap {
        padding: 20px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info {
        margin-bottom: 15px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .author-img {
        width: 70px !important;
        border: 3px solid #fff !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .media-body {
        left: 85px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .client-say {
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap {
        padding: 15px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .author-img {
        width: 60px !important;
        border: 2px solid #fff !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .media-body {
        left: 75px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .media-body h5 {
        font-size: 14px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .media-body span {
        font-size: 12px !important;
    }

    .testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .client-say p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

/* Fix for hero background shapes blocking interactions */
.hero-bottom-shape,
.hero-bottom-shape-two {
    pointer-events: none;
}

/* ============================================
   MICRO-INTERACTIONS & ANIMATIONS
   ============================================ */

/* 1. Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* 2. Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 206, 124, 0.3);
}

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

/* Download buttons with scale effect */
.app-download-btn {
    transition: all 0.3s ease;
}

.app-download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 206, 124, 0.25);
}

.app-download-btn:hover .fab {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

/* CTA buttons pulse effect */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 206, 124, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(30, 206, 124, 0);
    }
}

.btn-brand-03:hover {
    animation: pulse 2s infinite;
}

/* Icon animations on hover */
.btn:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

html[dir="rtl"] .btn:hover i {
    transform: translateX(-3px);
}

/* Video play button hover */
.btn-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-circle:hover i {
    transform: scale(1.2);
}

/* 3. Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(30, 206, 124, 0.4);
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #17b56d 0%, #15a563 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 206, 124, 0.5);
}

.back-to-top-btn:active {
    transform: translateY(-2px);
}

html[dir="rtl"] .back-to-top-btn {
    right: auto;
    left: 30px;
}

/* 4. Card Hover Effects */
.single-promo-2:hover,
.single-faq:hover,
.single-blog-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 5. Image Hover Effects */
.img-fluid {
    transition: transform 0.3s ease;
}

.screenshot-wrap .img-fluid:hover {
    transform: scale(1.02);
}

/* Client logo hover */
.owl-carousel .item img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ============================================
   PAGE LOADER & SCROLL PROGRESS
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1ECE7C 0%, #17b56d 50%, #1ECE7C 100%);
    transform-origin: 0%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(30, 206, 124, 0.5);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(30, 206, 124, 0.1);
    border-top-color: #1ECE7C;
    border-radius: 50%;
}

.loader-text {
    font-size: 16px;
    font-weight: 500;
    color: #1ECE7C;
    margin: 0;
}

/* RTL support for loader */
html[dir="rtl"] .scroll-progress-bar {
    transform-origin: 100%;
    left: auto;
    right: 0;
}

/* ============================================
   INTERACTIVE FEATURES CSS
   ============================================ */

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 15px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.cookie-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1ECE7C;
    color: #1ECE7C;
}

.btn-outline:hover {
    background: #1ECE7C;
    color: white;
}

/* Download Prompt Modal */
.download-prompt-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content {
    text-align: center;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon img {
    width: 120px;
    height: auto;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-content {
    text-align: center;
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-subtitle {
    color: #1ECE7C;
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}

.popup-description {
    color: #666;
    margin-bottom: 25px;
}

.exit-intent-form .form-control {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
}

.popup-footer {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

/* Bottom Sheet */
.bottom-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.bottom-sheet-handle {
    padding: 12px;
    display: flex;
    justify-content: center;
}

.handle-bar {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 15px;
    border-bottom: 1px solid #eee;
}

.bottom-sheet-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-button {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-button:hover {
    background: #e0e0e0;
}

.bottom-sheet-content {
    padding: 20px;
}

/* Forms */
.form-description {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1ECE7C;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* PWA Install Banner */
.pwa-install-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    z-index: 9999;
    max-width: 600px;
    margin: 0 auto;
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.pwa-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pwa-text {
    flex: 1;
}

.pwa-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.pwa-text p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.pwa-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Get App Link Section - Material Design */
.get-app-link-section {
    background: #fff;
    padding: 80px 0;
}

.get-app-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.app-link-header {
    text-align: center;
    margin-bottom: 48px;
}

.app-link-header h2,
.app-link-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.app-link-header p {
    font-size: 16px;
    color: #5f6368;
    margin: 0;
    font-weight: 400;
}

/* Main Card */
.app-link-card {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 32px;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-link-card:hover {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Platform Pills */
.platform-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.platform-pill {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 100px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-pill:hover {
    border-color: #1ECE7C;
    background: rgba(30, 206, 124, 0.04);
}

.platform-pill.active {
    border-color: #1ECE7C;
    background: rgba(30, 206, 124, 0.08);
    color: #1ECE7C;
}

.platform-pill i {
    font-size: 18px;
}

/* Contact Tabs */
.contact-tabs {
    position: relative;
    display: flex;
    background: #f1f3f4;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 24px;
}

.contact-tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    z-index: 1;
    transition: color 0.15s ease;
}

.contact-tabs button.active {
    color: #1a1a1a;
}

.tab-indicator {
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-indicator.right {
    transform: translateX(calc(0% + 4px));
}

html[dir="rtl"] .tab-indicator {
    left: auto;
    right: 4px;
}

html[dir="rtl"] .tab-indicator.right {
    transform: translateX(calc(-100% - 4px));
}

/* Input Wrapper */
.input-wrapper {
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: #fff;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
}

.input-wrapper.focused {
    border-color: #1ECE7C;
    box-shadow: 0 0 0 1px #1ECE7C;
}

.input-wrapper.error {
    border-color: #d93025;
}

/* Phone Input */
.phone-input {
    display: flex;
    align-items: center;
    height: 56px;
}

.country-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-right: 1px solid #dadce0;
    cursor: pointer;
    user-select: none;
}

html[dir="rtl"] .country-select {
    border-right: none;
    border-left: 1px solid #dadce0;
}

.country-select .flag {
    font-size: 20px;
}

.country-select .code {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.country-select i {
    font-size: 10px;
    color: #5f6368;
    transition: transform 0.15s ease;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

.country-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    min-width: 240px;
}

.country-dropdown-list::-webkit-scrollbar {
    width: 8px;
}

.country-dropdown-list::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 8px;
}

.country-dropdown-list::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 8px;
}

.country-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.1s ease;
}

.country-item:hover {
    background: #252525;
}

.country-item.selected {
    background: #2a2a2a;
}

.country-item .flag {
    font-size: 20px;
}

.country-item .name {
    flex: 1;
    font-size: 14px;
    color: #fff;
}

.country-item .code {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 8px;
}

.country-item i.fa-check {
    color: #fff;
    font-size: 16px;
}

html[dir="rtl"] .country-item .code {
    margin-right: 0;
    margin-left: 8px;
}

.phone-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 16px;
    color: #1a1a1a;
    background: transparent;
    direction: ltr;
    text-align: left;
}

/* Email Input */
.email-input {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 16px;
    gap: 12px;
}

.email-input i {
    color: #5f6368;
    font-size: 18px;
}

.email-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1a1a1a;
    background: transparent;
    direction: ltr;
    text-align: left;
}

input::placeholder {
    color: #80868b;
}

/* Error Text */
.error-text {
    color: #d93025;
    font-size: 13px;
    margin-bottom: 16px;
    padding-left: 16px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 24px;
    background: #1ECE7C;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.submit-btn:hover {
    background: #17b56d;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.submit-btn:active {
    background: #15a563;
}

.submit-btn i {
    font-size: 14px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5f6368;
    font-size: 13px;
}

.indicator i {
    color: #1ECE7C;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner,
    .pwa-install-banner {
        left: 10px;
        right: 10px;
    }

    .cookie-actions,
    .pwa-actions {
        flex-direction: column;
    }

    .download-prompt-modal,
    .exit-intent-popup {
        padding: 30px 20px;
    }

    .floating-action-button {
        bottom: 80px;
        right: 20px;
    }

    html[dir="rtl"] .floating-action-button {
        right: auto;
        left: 20px;
    }

    /* Get App Link Section Mobile */
    .get-app-link-section {
        padding: 60px 0;
    }

    .app-link-header h2 {
        font-size: 28px;
    }

    .app-link-card {
        padding: 24px;
    }

    .platform-pills {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* ========================================
   FLOATING PET IMAGES & ANIMATIONS
   ======================================== */

/* Hero Section Floating Pets */
.hero-with-pets {
    position: relative;
    overflow: hidden;
}

/* Hero Brand Section - Logo + Slogan */
.hero-brand-section {
    margin-bottom: 2rem;
}

.hero-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-brand-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(30, 206, 124, 0.3));
}

.hero-brand-dash {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    font-weight: 300;
}

.hero-slogan {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .hero-brand-logo {
        height: 40px;
    }

    .hero-brand-dash {
        font-size: 24px;
    }

    .hero-slogan {
        font-size: 16px;
    }
}

/* Hero App Image - Make it Bigger */
.hero-app-image {
    transform: scale(1.35);
    transform-origin: center center;
}

.hero-app-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

@media (max-width: 991px) {
    .hero-app-image {
        transform: scale(1.2);
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-app-image {
        transform: scale(1.15);
        margin-top: 30px;
    }
}

.floating-pet {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-pet img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-pet:hover img {
    filter: drop-shadow(0 20px 45px rgba(30, 206, 124, 0.3));
    transform: scale(1.05);
}

/* Dog in Hero */
.floating-dog {
    top: 15%;
    right: 5%;
    width: 280px;
    height: 280px;
    opacity: 0.9;
}

html[dir="rtl"] .floating-dog {
    right: auto;
    left: 5%;
}

/* Cat in Hero */
.floating-cat {
    bottom: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    opacity: 0.85;
}

html[dir="rtl"] .floating-cat {
    left: auto;
    right: 8%;
}

/* Pet Scene in Hero */
.floating-pet-scene {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    opacity: 0.2;
    z-index: 0;
}

html[dir="rtl"] .floating-pet-scene {
    right: auto;
    left: -80px;
}

/* Promo Section Doctor Image */
.promo-section {
    position: relative;
    overflow: hidden;
}

.promo-section .container {
    position: relative;
    z-index: 10;
}

.promo-section .single-promo-card {
    position: relative;
    z-index: 10;
    background: white;
}

.promo-doctor-image {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

html[dir="rtl"] .promo-doctor-image {
    right: auto;
    left: -100px;
}

.promo-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Promo Section Pet Scenes */
.promo-pet-scene {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.promo-pet-scene img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.promo-pet-scene:hover img {
    transform: scale(1.05);
}

.promo-pet-left {
    bottom: 5%;
    left: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.25;
}

html[dir="rtl"] .promo-pet-left {
    left: auto;
    right: -50px;
}

.promo-pet-right {
    top: 8%;
    right: 2%;
    width: 180px;
    height: 180px;
    opacity: 0.3;
}

html[dir="rtl"] .promo-pet-right {
    right: auto;
    left: 2%;
}

/* Download Section Pets */
.download-with-pets {
    position: relative;
    overflow: hidden;
}

/* Download Section with Gradient Background */
.download-gradient-section {
    position: relative;
    overflow: hidden;
}

.download-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00A88E 0%, #00CCA8 100%) !important;
    z-index: 0;
}

.download-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.download-gradient-section .container {
    position: relative;
    z-index: 2;
}

/* Download Section Heading */
.download-gradient-section .section-heading {
    margin-bottom: 30px;
}

.download-gradient-section .section-heading h2 {
    margin-bottom: 15px;
}

/* Dashed Border Container - Pure Black Design */
.download-dashed-container {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    background: #000000;
}

/* Download Store Content */
.download-store-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-store-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.download-store-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.download-store-content p.text-white-50 {
    font-size: 14px;
    opacity: 0.7;
}

.download-store-content p.text-white {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Store Buttons - Black with Dashed Border */
.download-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-store-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: transparent;
    border: 1.5px dashed rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.download-store-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    border-style: solid;
    color: #fff;
    transform: translateX(5px);
}

html[dir="rtl"] .download-store-btn:hover {
    transform: translateX(-5px);
}

.download-store-btn span.fab {
    font-size: 28px;
    color: #fff;
}

.download-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

html[dir="rtl"] .download-store-text {
    align-items: flex-end;
    text-align: right;
}

.download-store-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.download-store-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-top: 1px;
}

/* Form Card - Pure Black */
.app-link-card {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #1a1a1a;
}

.app-link-header {
    margin-bottom: 24px;
}

.app-link-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.app-link-header p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Platform Pills - Black */
.platform-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.platform-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.platform-pill:hover {
    background: #252525;
    border-color: #3a3a3a;
}

.platform-pill.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #000;
}

.platform-pill i {
    font-size: 16px;
}

/* Contact Tabs - Black */
.contact-tabs {
    display: flex;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 16px;
    position: relative;
}

.contact-tabs button {
    flex: 1;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    z-index: 2;
}

.contact-tabs button.active {
    color: #000;
}

.tab-indicator {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: #ffffff;
    border-radius: 6px;
    transition: left 0.2s ease;
}

.tab-indicator.right {
    left: calc(50%);
}

/* Input Wrapper - Black */
.input-wrapper {
    margin-bottom: 12px;
}

.phone-input,
.email-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.input-wrapper.focused .phone-input,
.input-wrapper.focused .email-input {
    background: #252525;
    border-color: #3a3a3a;
}

.input-wrapper.error .phone-input,
.input-wrapper.error .email-input {
    border-color: #ff4444;
}

.phone-input input,
.email-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #fff;
    outline: none;
    font-weight: 500;
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] .phone-input input,
html[dir="rtl"] .email-input input {
    direction: ltr;
    text-align: left;
}

.phone-input input::placeholder,
.email-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.email-input i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

/* Country Select - Black */
.country-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #252525;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #2a2a2a;
    position: relative;
}

.country-select .flag {
    font-size: 16px;
}

.country-select .code {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.country-select .fa-chevron-down {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Submit Button - White on Black */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #f5f5f5;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Trust Indicators - Black */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
}

.trust-indicators .indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
}

.trust-indicators .indicator i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Error Text */
.error-text {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .download-dashed-container {
        padding: 35px 30px;
    }

    .download-store-content h3 {
        font-size: 22px;
    }

    .app-link-header h3 {
        font-size: 18px;
    }

    .app-link-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .download-dashed-container {
        padding: 28px 20px;
    }

    .download-store-content {
        margin-bottom: 30px;
        text-align: center;
    }

    .download-store-content h3 {
        font-size: 20px;
    }

    .download-store-content p {
        font-size: 14px;
    }

    .download-store-buttons {
        align-items: stretch;
    }

    .download-store-btn {
        justify-content: center;
    }

    .app-link-card {
        padding: 20px;
    }

    .app-link-header h3 {
        font-size: 18px;
    }

    .platform-pills {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* Screenshots Section - Vertical Column Layout */
.screenshots-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Left Side Content */
.screenshots-content {
    padding: 40px 20px;
    width: 100%;
}

.screenshots-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1a1a1a;
}

.screenshots-content .lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #5f6368;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.screenshots-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.01em;
}

.screenshots-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1a1a1a;
}

.feature-item i {
    color: #00A88E;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
}

.screenshots-showcase {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    perspective: 2000px;
    perspective-origin: left center;
    padding: 40px 0;
    overflow: visible;
}

.screenshots-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform-style: preserve-3d;
}

.screenshot-phone {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -303px;
    width: 280px;
    height: 606px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-phone.center {
    z-index: 10 !important;
}

.phone-device {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 42px;
    padding: 10px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transform: translateZ(0);
}

.phone-device::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 42px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
    display: block;
}

/* Center phone emphasis */
.screenshot-phone.center .phone-device {
    box-shadow:
        0 60px 120px -20px rgba(0, 168, 142, 0.4),
        0 40px 80px -30px rgba(0, 168, 142, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 1);
}

.screenshot-phone.center {
    transform: scale(1.15) !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .screenshots-showcase {
        min-height: 600px;
    }

    .screenshots-carousel {
        height: 500px;
    }

    .screenshot-phone {
        width: 240px;
        height: 520px;
    }

    .phone-device {
        border-radius: 36px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 30px;
    }

    .screenshot-phone.center {
        transform: scale(1.1) !important;
    }
}

@media (max-width: 991px) {
    .screenshots-section .col-lg-5,
    .screenshots-section .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .screenshots-content h2 {
        font-size: 36px;
    }

    .screenshots-content .lead {
        font-size: 18px;
    }

    .screenshots-content p {
        font-size: 16px;
    }

    .screenshots-content {
        padding: 20px;
        text-align: center;
    }

    .screenshots-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .screenshots-content h2 {
        font-size: 32px;
    }

    .screenshots-showcase {
        min-height: 500px;
        perspective: 1500px;
    }

    .screenshots-carousel {
        height: 450px;
    }

    .screenshot-phone {
        width: 200px;
        height: 433px;
    }

    .phone-device {
        border-radius: 32px;
        padding: 7px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .screenshot-phone.center {
        transform: scale(1.05) !important;
    }
}

.download-pet {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.download-pet img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35))
            drop-shadow(0 0 30px rgba(30, 206, 124, 0.2));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-pet:hover img {
    filter: drop-shadow(0 25px 60px rgba(30, 206, 124, 0.5))
            drop-shadow(0 0 40px rgba(30, 206, 124, 0.4));
    transform: scale(1.12) rotate(5deg);
}

.download-dog img {
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 35px rgba(30, 206, 124, 0.3));
}

.download-dog-bg img {
    filter: drop-shadow(0 25px 60px rgba(30, 206, 124, 0.4))
            drop-shadow(0 0 40px rgba(30, 206, 124, 0.25));
}

.download-pet-center img {
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 50px rgba(30, 206, 124, 0.5));
}

.download-dog {
    bottom: 5%;
    left: -5%;
    width: 350px;
    height: 350px;
    opacity: 0.95;
    transform: rotate(-8deg);
}

html[dir="rtl"] .download-dog {
    left: auto;
    right: -5%;
    transform: rotate(8deg);
}

.download-dog-bg {
    top: 8%;
    right: -3%;
    width: 320px;
    height: 320px;
    opacity: 1;
    transform: rotate(12deg);
}

html[dir="rtl"] .download-dog-bg {
    right: auto;
    left: -3%;
    transform: rotate(-12deg);
}

.download-pet-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    opacity: 0.3;
    z-index: 0;
}

/* Floating Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-2deg);
    }
}

@keyframes petGlow {
    0%, 100% {
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 20px 45px rgba(30, 206, 124, 0.4));
    }
}

@keyframes petBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Add subtle floating animation to pets */
.floating-dog {
    animation: float 6s ease-in-out infinite, petGlow 4s ease-in-out infinite;
}

.download-dog {
    animation: float 5s ease-in-out infinite, petGlow 3s ease-in-out infinite;
}

.floating-cat {
    animation: floatReverse 7s ease-in-out infinite, petGlow 5s ease-in-out infinite;
}

.download-dog-bg {
    animation: floatReverse 6s ease-in-out infinite, petGlow 4s ease-in-out infinite;
}

.download-pet-center {
    animation: petBounce 7s ease-in-out infinite, petGlow 5s ease-in-out infinite;
}

.floating-pet-scene {
    animation: petBounce 8s ease-in-out infinite;
}

.promo-pet-scene {
    animation: petBounce 9s ease-in-out infinite;
}

/* Responsive - Pet Images */
@media (max-width: 1200px) {
    .floating-dog {
        width: 220px;
        height: 220px;
        right: 2%;
    }

    html[dir="rtl"] .floating-dog {
        right: auto;
        left: 2%;
    }

    .floating-cat {
        width: 160px;
        height: 160px;
        left: 3%;
    }

    html[dir="rtl"] .floating-cat {
        left: auto;
        right: 3%;
    }

    .promo-doctor-image {
        width: 350px;
        height: 350px;
        right: -80px;
    }

    html[dir="rtl"] .promo-doctor-image {
        right: auto;
        left: -80px;
    }
}

@media (max-width: 992px) {
    .floating-dog {
        width: 180px;
        height: 180px;
        top: 10%;
        opacity: 0.6;
    }

    .floating-cat {
        width: 130px;
        height: 130px;
        bottom: 10%;
        opacity: 0.5;
    }

    .promo-doctor-image {
        width: 280px;
        height: 280px;
        opacity: 0.1;
    }

    /* Reduce pet scene sizes on tablets */
    .promo-pet-left {
        width: 150px;
        height: 150px;
        opacity: 0.2;
        bottom: 2%;
    }

    .promo-pet-right {
        width: 140px;
        height: 140px;
        opacity: 0.2;
        top: 5%;
    }

    .download-dog {
        width: 250px;
        height: 250px;
        bottom: 8%;
    }

    .download-dog-bg {
        width: 220px;
        height: 220px;
        top: 10%;
    }

    .download-pet-center {
        width: 200px;
        height: 200px;
        opacity: 0.25;
    }
}

@media (max-width: 768px) {
    /* Hide floating pets on mobile for cleaner look */
    .floating-dog,
    .floating-cat {
        display: none;
    }

    .promo-doctor-image {
        display: none;
    }

    /* Hide promo pet scenes on mobile to prevent overlap */
    .promo-pet-scene,
    .promo-pet-left,
    .promo-pet-right {
        display: none !important;
    }

    .download-dog {
        width: 180px;
        height: 180px;
        bottom: 3%;
        left: -3%;
        opacity: 0.7;
    }

    html[dir="rtl"] .download-dog {
        left: auto;
        right: -3%;
    }

    .download-dog-bg {
        width: 160px;
        height: 160px;
        top: 5%;
        right: -2%;
        opacity: 0.75;
    }

    html[dir="rtl"] .download-dog-bg {
        right: auto;
        left: -2%;
    }

    .download-pet-center {
        width: 150px;
        height: 150px;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    /* Hide all decorative pets on very small screens */
    .download-pet {
        display: none;
    }
}

/* ============================================
   iOS Safari & WebKit Specific Fixes
   ============================================ */

/* Safari-specific fixes for backdrop-filter */
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .togoru-header {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* iOS Safari button appearance fixes */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
}

/* iOS Safari input appearance fixes */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
}

/* Fix iOS Safari date/time inputs */
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Safari flexbox fix */
.hero-with-pets,
.promo-section,
.download-with-pets {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* iOS Safari transform fix */
.floating-pet,
.download-pet,
.promo-pet-scene {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Safari animation performance */
.floating-pet img,
.download-pet img,
.promo-pet-scene img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* iOS Safari scrolling optimization */
.container,
section {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix iOS Safari position fixed */
.togoru-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS Safe Area Support for Header */
.togoru-header {
    padding-top: max(env(safe-area-inset-top), 0px);
}

/* iOS Safe Area Support for Footer */
footer {
    padding-bottom: max(env(safe-area-inset-bottom), 0px);
}

/* iOS Safari video/media fixes */
video,
iframe {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

/* Safari smooth scroll behavior */
html {
    -webkit-overflow-scrolling: touch;
}

/* iOS Safari link tap highlight */
a,
button,
.btn {
    -webkit-tap-highlight-color: rgba(30, 206, 124, 0.2);
}

/* Safari gradient fixes */
.bg-gradient,
[class*="gradient"] {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/* iOS Safari z-index stacking context fix */
.hero-with-pets,
.promo-section,
.download-with-pets {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Safari box-shadow optimization */
.shadow,
[class*="shadow"] {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* iOS Safari orientationchange fix */
@media screen and (orientation: portrait) {
    body {
        -webkit-text-size-adjust: 100%;
    }
}

@media screen and (orientation: landscape) {
    body {
        -webkit-text-size-adjust: 100%;
    }
}

/* Safari filter fixes for images */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* iOS Safari prevent copy/paste on images */
.floating-pet img,
.download-pet img,
.promo-pet-scene img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* Safari flexbox gap fallback */
@supports not (gap: 1rem) {
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* iOS Safari notch/Dynamic Island support */
@supports (padding: max(0px)) {
    body {
        padding-left: max(env(safe-area-inset-left), 0px);
        padding-right: max(env(safe-area-inset-right), 0px);
    }
    
    .container {
        padding-left: max(env(safe-area-inset-left), 15px);
        padding-right: max(env(safe-area-inset-right), 15px);
    }
}

/* Safari 15+ bottom bar fix */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .download-section,
    .footer {
        padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
    }
}

/* iOS Safari momentum scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

/* Safari subpixel rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS Safari prevent text inflation */
body,
p,
h1, h2, h3, h4, h5, h6 {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ============================================
   Partner CTA Section
   ============================================ */

.partner-cta-section {
    background: linear-gradient(135deg, #1a4d3a 0%, #1ECE7C 100%);
    position: relative;
    overflow: hidden;
}

.partner-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.partner-cta-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.partner-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.btn-partner-cta {
    background: white;
    color: #1ECE7C;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-partner-cta:hover {
    background: #f8f9fa;
    color: #1ECE7C;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   Salla-Style Partner CTA Section (Exact Match)
   ============================================ */

.salla-partner-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.salla-partner-card {
    background: linear-gradient(135deg, #00A88E 0%, #00CCA8 100%);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 15px 50px rgba(0, 168, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.salla-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.salla-cta-button {
    display: inline-block;
    background: white;
    color: #00A88E;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.salla-cta-button:hover {
    background: #f8f9fa;
    color: #00A88E;
    border-color: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.salla-partner-title {
    color: white;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.salla-partner-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.005em;
}

/* RTL/LTR Support for Salla Partner CTA */
html[dir="rtl"] .partner-cta-row {
    flex-direction: row;
}

html[dir="rtl"] .partner-text-col {
    order: 1;
}

html[dir="rtl"] .partner-button-col {
    order: 2;
}

html[dir="rtl"] .salla-partner-title,
html[dir="rtl"] .salla-partner-subtitle {
    text-align: right;
}

html[dir="ltr"] .partner-cta-row {
    flex-direction: row;
}

html[dir="ltr"] .partner-text-col {
    order: 1;
    text-align: left;
}

html[dir="ltr"] .partner-button-col {
    order: 2;
    text-align: right;
}

html[dir="ltr"] .salla-partner-title,
html[dir="ltr"] .salla-partner-subtitle {
    text-align: left;
}

/* Mobile: Reset order and center everything */
@media (max-width: 767px) {
    .partner-text-col,
    .partner-button-col {
        order: unset !important;
        text-align: center !important;
    }
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits-section {
    background: #f8f9fa;
}

.benefits-image-wrapper {
    position: relative;
    z-index: 2;
}

.phone-mockup {
    max-width: 400px;
    margin: 0 auto;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.benefits-content {
    padding-left: 40px;
}

html[dir="rtl"] .benefits-content {
    padding-left: 0;
    padding-right: 40px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.4;
}

.benefits-subtitle {
    font-size: 16px;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-features-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(30, 206, 124, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ECE7C;
    font-size: 20px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

.benefits-cta .store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 30px;
    border-radius: 12px;
    border: 2px solid #dfe6e9;
    background: white;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.benefits-cta .store-btn:hover {
    border-color: #1ECE7C;
    background: rgba(30, 206, 124, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-cta .store-btn i {
    font-size: 32px;
}

.benefits-cta .store-btn-apple {
    color: #000;
}

.benefits-cta .store-btn-google i {
    color: #34A853;
}

.benefits-cta .store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

html[dir="rtl"] .benefits-cta .store-btn-text {
    align-items: flex-end;
    text-align: right;
}

.benefits-cta .small-text {
    font-size: 12px;
    color: #636e72;
}

.benefits-cta .large-text {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
}

/* ============================================
   Salla-Style Benefits Section (Exact Match)
   ============================================ */

.salla-benefits-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 50%, #1a2332 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.salla-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 142, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 206, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Title */
.salla-benefits-header {
    position: relative;
    z-index: 2;
}

.salla-benefits-main-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.salla-benefits-main-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.005em;
}

/* Desktop Mockup */
.salla-desktop-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.salla-desktop-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.salla-features-wrapper {
    position: relative;
    z-index: 2;
}

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

.salla-feature-box {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.salla-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.salla-feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #00A88E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.salla-feature-text {
    flex: 1;
}

.salla-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.salla-feature-description {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
}

.salla-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.salla-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.salla-store-btn:hover {
    background: #f8f9fa;
    border-color: #00A88E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.salla-store-btn i {
    font-size: 32px;
}

.salla-store-apple {
    color: #000;
}

.salla-store-apple i {
    color: #000;
}

.salla-store-google {
    color: #34A853;
}

.salla-store-google i {
    color: #34A853;
}

.salla-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

html[dir="rtl"] .salla-store-text {
    align-items: flex-end;
    text-align: right;
}

.salla-store-small {
    font-size: 11px;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salla-store-large {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
}

/* Responsive for Salla Benefits */
@media (max-width: 992px) {
    .salla-benefits-section {
        padding: 60px 0;
    }

    .salla-benefits-main-title {
        font-size: 32px;
    }

    .salla-benefits-main-subtitle {
        font-size: 16px;
    }

    .salla-desktop-wrapper {
        margin-bottom: 50px;
    }

}

@media (max-width: 768px) {
    .salla-benefits-main-title {
        font-size: 28px;
    }

    .salla-benefits-main-subtitle {
        font-size: 15px;
    }


    .salla-feature-box {
        padding: 20px;
        gap: 15px;
    }

    .salla-feature-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .salla-feature-title {
        font-size: 16px;
    }

    .salla-feature-description {
        font-size: 14px;
    }

    .salla-download-buttons {
        flex-direction: column;
    }

    .salla-store-btn {
        width: 100%;
        justify-content: center;
    }
}

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

.enhanced-footer {
    background: #1a1a1a;
    color: white;
}

.footer-main {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #1ECE7C;
    color: white;
    transform: translateY(-3px);
}

.footer-column {
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1ECE7C;
    padding-left: 5px;
}

html[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-download-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-download-title {
    font-size: 20px;
    font-weight: 600;
}

.footer-store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.footer-store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #1ECE7C;
    transform: translateY(-2px);
}

.footer-store-btn i {
    font-size: 28px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #1ECE7C;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   Salla-Style Footer (Exact Match)
   ============================================ */

.salla-footer {
    background: linear-gradient(180deg, #2D2D2D 0%, #1a1a1a 100%);
    color: white;
    padding: 0;
}

/* App Buttons at TOP */
.salla-footer-top {
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.salla-footer-apps-content {
    text-align: center;
}

.salla-apps-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.salla-apps-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.salla-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.salla-app-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00A88E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 142, 0.3);
}

.salla-app-btn i {
    font-size: 36px;
}

.salla-app-apple i {
    color: white;
}

.salla-app-google i {
    color: #34A853;
}

.salla-app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

html[dir="rtl"] .salla-app-text {
    align-items: flex-end;
    text-align: right;
}

.salla-app-small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salla-app-large {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

/* Main Footer Area with 5 Columns */
.salla-footer-main {
    padding: 60px 0 40px;
}

.salla-footer-col {
    margin-bottom: 30px;
}

.salla-footer-heading {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.salla-footer-links li {
    margin-bottom: 12px;
}

.salla-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.salla-footer-links a:hover {
    color: #00A88E;
    padding-left: 5px;
}

html[dir="rtl"] .salla-footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* Logo and Social Column */
.salla-footer-logo img {
    height: 45px;
    width: auto;
}

.salla-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.salla-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.salla-social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.salla-social-icons a:hover {
    background: #00A88E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 142, 0.4);
}

/* Footer Bottom */
.salla-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.salla-footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.salla-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.salla-footer-legal a:hover {
    color: #00A88E;
}

.salla-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.salla-footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Responsive for Salla Footer */
@media (max-width: 992px) {
    .salla-footer-top {
        padding: 30px 0;
    }

    .salla-apps-title {
        font-size: 20px;
    }

    .salla-footer-main {
        padding: 40px 0 30px;
    }

    .salla-footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .salla-apps-buttons {
        flex-direction: column;
        align-items: center;
    }

    .salla-app-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .salla-footer-heading {
        font-size: 15px;
    }

    .salla-footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .salla-separator {
        display: none;
    }

    .salla-social-icons {
        justify-content: center;
    }
}

/* Force Footer Column Responsive Behavior */
.salla-footer-main .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.salla-footer-main .row > div[class*='col-'] {
    display: block !important;
}

/* Mobile First - 2 columns on all mobile devices for better space usage */
.salla-footer-main .row > div[class*='col-'] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* Last column (Contact & Social) full width on mobile for better display */
.salla-footer-main .row > div[class*='col-']:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* Small devices and up (≥576px) - Keep 2 columns */
@media (min-width: 576px) {
    .salla-footer-main .row > div.col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .salla-footer-main .row > div.col-sm-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Medium devices and up (≥768px) - 3 columns for col-md-4, 2 for col-md-6 */
@media (min-width: 768px) {
    .salla-footer-main .row > div.col-md-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }

    .salla-footer-main .row > div.col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Large devices and up (≥992px) - 5 equal columns */
@media (min-width: 992px) {
    .salla-footer-main .row > div.col-lg {
        flex: 1 0 0% !important;
        max-width: none !important;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .partner-cta-card {
        padding: 40px 30px;
    }

    .partner-cta-title {
        font-size: 32px;
    }

    .benefits-content {
        padding-left: 0;
        margin-top: 40px;
    }

    html[dir="rtl"] .benefits-content {
        padding-right: 0;
    }

    .benefits-title {
        font-size: 28px;
    }

    .footer-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .partner-cta-title {
        font-size: 26px;
    }

    .partner-cta-subtitle {
        font-size: 16px;
    }

    .benefit-item {
        gap: 15px;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal-links .separator {
        display: none;
    }

    .footer-store-buttons {
        flex-direction: column;
    }

    .footer-store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* New Vertical Screenshots Column Layout */
.screenshots-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.screenshot-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.screenshot-phone-wrapper {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 42px;
    padding: 12px;
    box-shadow:
        0 20px 60px -10px rgba(0, 0, 0, 0.15),
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-phone-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 80px -10px rgba(0, 168, 142, 0.2),
        0 20px 40px -5px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 1);
}

.screenshot-phone-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    z-index: 1;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    object-fit: cover;
}

/* Responsive for vertical column */
@media (max-width: 991px) {
    .screenshots-column {
        gap: 30px;
    }
    
    .screenshot-phone-wrapper {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .screenshots-column {
        gap: 20px;
    }
    
    .screenshot-phone-wrapper {
        width: 220px;
    }
}

/* Horizontal Scrolling Carousel - Coming from outside like from your office! */
.screenshots-horizontal-scroll {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 168, 142, 0.5) transparent;
}

.screenshots-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.screenshots-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.screenshots-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 168, 142, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.screenshots-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 168, 142, 0.8);
}

.screenshots-track {
    display: flex;
    gap: 30px;
    padding: 20px;
    width: max-content;
}

.screenshot-card {
    flex-shrink: 0;
    width: 280px;
}

.screenshot-phone-frame {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 42px;
    padding: 12px;
    box-shadow:
        0 20px 60px -10px rgba(0, 0, 0, 0.15),
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-phone-frame:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 30px 80px -10px rgba(0, 168, 142, 0.3),
        0 20px 40px -5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 1);
}

.screenshot-phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    z-index: 1;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    object-fit: cover;
}

/* Responsive horizontal carousel */
@media (max-width: 991px) {
    .screenshots-horizontal-scroll {
        padding: 30px 0;
    }

    .screenshots-track {
        gap: 20px;
        padding: 15px;
    }

    .screenshot-card {
        width: 240px;
    }

    .screenshot-phone-frame {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .screenshots-horizontal-scroll {
        padding: 20px 0;
    }

    .screenshots-track {
        gap: 15px;
        padding: 10px;
    }

    .screenshot-card {
        width: 220px;
    }

    .screenshot-phone-frame {
        width: 220px;
    }
}

/* ============================================
   DASHBOARD SHOWCASE - HORIZONTAL SCROLL
   ============================================ */

.app-showcase-section {
    overflow: hidden;
}

/* Dashboard Showcase Text */
.dashboard-showcase-text {
    max-width: 90%;
}

.dashboard-showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    word-wrap: break-word;
}

.dashboard-showcase-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    margin-top: 1rem;
    border-radius: 3px;
}

/* Horizontal Dashboard Scroll */
.dashboard-horizontal-scroll {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 168, 142, 0.5) transparent;
}

.dashboard-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.dashboard-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 168, 142, 0.5);
    border-radius: 10px;
}

.dashboard-track {
    display: flex;
    gap: 40px;
    padding: 20px;
    width: max-content;
}

.dashboard-card {
    flex-shrink: 0;
    width: 600px;
}

/* Browser Mockup */
.browser-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.browser-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Browser Header */
.browser-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.browser-dots .dot.red {
    background: #ff5f57;
}

.browser-dots .dot.yellow {
    background: #ffbd2e;
}

.browser-dots .dot.green {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    background: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.browser-url i {
    color: #1ECE7C;
    font-size: 12px;
}

.browser-url span {
    color: #333;
}

.browser-actions {
    width: 80px;
    flex-shrink: 0;
}

/* Browser Content */
.browser-content {
    position: relative;
    background: #fafafa;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Theme Badge */
.theme-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.theme-badge.light {
    background: rgba(255, 255, 255, 0.95);
    color: #f59e0b;
}

.theme-badge.dark {
    background: rgba(30, 41, 59, 0.95);
    color: #fbbf24;
}

.theme-badge i {
    font-size: 14px;
}

/* Responsive Dashboard Horizontal */
@media (max-width: 991px) {
    .dashboard-showcase-title {
        font-size: 2.8rem;
    }

    .dashboard-card {
        width: 500px;
    }

    .dashboard-track {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dashboard-showcase-text {
        max-width: 100%;
    }

    .dashboard-showcase-title {
        font-size: 2rem;
    }

    .dashboard-showcase-title::after {
        width: 60px;
        height: 4px;
    }

    .dashboard-horizontal-scroll {
        padding: 30px 0;
    }

    .dashboard-card {
        width: 400px;
    }

    .dashboard-track {
        gap: 20px;
        padding: 15px;
    }

    .browser-header {
        padding: 8px 10px;
    }

    .browser-dots .dot {
        width: 8px;
        height: 8px;
    }

    .browser-url {
        font-size: 11px;
        padding: 4px 10px;
    }

    .theme-badge {
        top: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* ========================================
   NEW PAGES STYLES
   ======================================== */

/* Page Content Layout */
.page-content {
    min-height: 100vh;
    background: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
}

/* Page Section */
.page-section {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #1ECE7C;
    display: inline-block;
}

.page-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.page-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.page-section ul,
.page-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

/* Page Image */
.page-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Us Page - Value Cards */
.value-card {
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1ECE7C;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 206, 124, 0.15);
}

.value-card h4 {
    color: #1ECE7C;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Our Story Page - Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1ECE7C 0%, #17b56d 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(30, 206, 124, 0.3);
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    color: #1ECE7C;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.timeline-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #555;
    margin: 0;
}

/* Stats Card */
.stat-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 206, 124, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1ECE7C;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* Payment Privacy Section */
.payment-privacy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.payment-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1ECE7C;
}

.payment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.payment-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.payment-card .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-card .btn-outline-primary {
    border-color: #1ECE7C;
    color: #1ECE7C;
}

.payment-card .btn-outline-primary:hover {
    background: #1ECE7C;
    border-color: #1ECE7C;
    color: #fff;
}

/* ===================================
   Contact Page Styles
   =================================== */

/* FontAwesome Icon Fixes for Contact Page */
.page-content i.fa,
.page-content i.fas,
.page-content i.far,
.page-content i.fab,
i.fa-map-marker-alt,
i.fa-envelope,
i.fa-phone,
i.fa-file-contract,
i.fa-hashtag,
i.fa-check-circle,
i.fa-instagram,
i.fa-tiktok,
i.fa-facebook,
i.fa-twitter {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome' !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    display: inline-block !important;
}

.page-content i.fab,
i.fa-instagram,
i.fa-tiktok,
i.fa-facebook,
i.fa-twitter {
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands' !important;
    font-weight: 400 !important;
}

.page-content i.fas,
i.fa-map-marker-alt,
i.fa-envelope,
i.fa-phone,
i.fa-file-contract,
i.fa-hashtag,
i.fa-check-circle {
    font-weight: 900 !important;
}

.page-content i.far {
    font-weight: 400 !important;
}

/* Contact Page - Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: none;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: #1ECE7C;
    box-shadow: 0 0 0 0.2rem rgba(30, 206, 124, 0.15);
}

.contact-form-card .btn-primary {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 206, 124, 0.3);
}

/* Enhanced Form Micro-Interactions */
.form-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.form-header p {
    font-size: 0.95rem;
}

.form-group-enhanced {
    position: relative;
    transition: all 0.3s ease;
}

.form-group-enhanced .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group-enhanced.focused .form-label {
    color: #1ECE7C;
}

.form-control-enhanced {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-enhanced:focus {
    border-color: #1ECE7C;
    box-shadow: 0 0 0 4px rgba(30, 206, 124, 0.1);
    background: #fff;
    outline: none;
}

.form-control-enhanced::placeholder {
    color: #adb5bd;
    transition: all 0.3s ease;
}

.form-control-enhanced:focus::placeholder {
    opacity: 0.5;
}

textarea.form-control-enhanced {
    padding: 1rem;
    resize: vertical;
    min-height: 150px;
}

/* Character Counter */
.character-counter {
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.character-counter.text-warning {
    color: #ff9800 !important;
    font-weight: 600;
}

/* Form Text Hints */
.form-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-hint-wrapper {
    margin-top: 0.5rem;
}

.form-hint-wrapper .form-text {
    padding: 0.5rem 0.75rem;
    background: rgba(30, 206, 124, 0.05);
    border-left: 3px solid #1ECE7C;
    border-radius: 4px;
}

html[dir="rtl"] .form-hint-wrapper .form-text {
    border-left: none;
    border-right: 3px solid #1ECE7C;
}

/* Submit Section */
.submit-section {
    margin-top: 1.5rem;
}

.privacy-note-wrapper {
    text-align: center;
}

.privacy-note-wrapper small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6c757d;
}

.privacy-note-wrapper i {
    color: #1ECE7C;
}

/* Enhanced Submit Button */
.btn-submit-enhanced {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 206, 124, 0.4);
}

.btn-submit-enhanced:active {
    transform: translateY(-1px);
}

.btn-submit-enhanced:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Alert Animations */
.alert-animated {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Form Enhancements */
@media (max-width: 768px) {
    .form-control-enhanced {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }

    textarea.form-control-enhanced {
        padding: 0.875rem;
    }

    .btn-submit-enhanced {
        width: 100%;
        padding: 0.875rem 2rem;
    }

    .form-hint-wrapper .form-text {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .privacy-note-wrapper small {
        font-size: 0.8rem;
    }
}

/* Contact Info Card */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-card h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-item {
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item a {
    color: #1ECE7C;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-info-item a:hover {
    color: #17b56d;
}

/* Contact Icon Wrapper */
.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 206, 124, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-icon-wrapper i {
    font-size: 18px;
}

.contact-info-item .flex-grow-1 h5 {
    margin-bottom: 0.5rem;
}

.contact-info-item .flex-grow-1 p,
.contact-info-item .flex-grow-1 a {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Info Icons */
.contact-info-item i.fa,
.contact-info-item i.fas,
.contact-info-item i.fab {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    min-width: 20px;
    flex-shrink: 0;
}

.contact-info-item i.fab {
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands';
    font-weight: 400;
}

.contact-info-item i.fas {
    font-weight: 900;
}

.business-info i.fa,
.business-info i.fas {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    color: #fff !important;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands';
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 206, 124, 0.4);
    color: #fff !important;
}

/* Working Hours */
.working-hours {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.working-hours > div {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.working-hours > div:last-child {
    border-bottom: none;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: rgba(30, 206, 124, 0.1);
    color: #17b56d;
    border-left: 4px solid #1ECE7C;
}

.alert i {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
}

/* Buttons */
.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 206, 124, 0.3);
}

.btn-outline-primary {
    border: 2px solid #1ECE7C;
    color: #1ECE7C;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #1ECE7C;
    border-color: #1ECE7C;
    color: #fff;
}

/* RTL Support for New Pages */
html[dir="rtl"] .timeline::before {
    left: auto;
    right: 30px;
}

html[dir="rtl"] .timeline-item {
    padding-left: 0;
    padding-right: 80px;
}

html[dir="rtl"] .timeline-badge {
    left: auto;
    right: 0;
}

html[dir="rtl"] .payment-card {
    border-left: none;
    border-right: 4px solid #1ECE7C;
}

html[dir="rtl"] .value-card {
    border-left: none;
    border-right: 4px solid #1ECE7C;
}

html[dir="rtl"] .page-section ul,
html[dir="rtl"] .page-section ol {
    padding-left: 0;
    padding-right: 1.5rem;
}

/* Responsive Styles for New Pages */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-section {
        padding: 1.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .page-section {
        padding: 1.25rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    html[dir="rtl"] .timeline::before {
        left: auto;
        right: 20px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    html[dir="rtl"] .timeline-item {
        padding-left: 0;
        padding-right: 70px;
    }
    
    .timeline-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .page-content {
        padding-top: 70px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-section {
        padding: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Business Information Styles */
.business-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.business-info > div {
    padding: 0.75rem 0;
}

.business-info > div:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

.business-info strong {
    color: #333;
    font-size: 0.95rem;
}

.business-info p {
    color: #1ECE7C;
    font-weight: 600;
    font-size: 1.05rem;
}

.business-info i {
    font-size: 16px;
}

/* FAQ Page - Accordion Styles */
.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

html[dir="rtl"] .faq-question {
    text-align: right;
}

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

.faq-question.active {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    color: #fff;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

html[dir="rtl"] .faq-question-text {
    padding-right: 0;
    padding-left: 1rem;
}

.faq-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-answer.show {
    max-height: 500px;
    padding: 1.5rem;
    padding-top: 0;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Contact CTA */
.faq-contact-cta {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    border-radius: 12px;
    color: #fff;
}

.faq-contact-cta h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-contact-cta .lead {
    color: rgba(255, 255, 255, 0.95);
}

.faq-contact-cta .btn {
    background: #fff !important;
    color: #2D2D2D !important;
    border: 2px solid #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.faq-contact-cta .btn:hover {
    background: #2D2D2D !important;
    color: #fff !important;
    border: 2px solid #2D2D2D !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
    }

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

    .faq-answer.show {
        padding: 1.25rem;
        padding-top: 0;
    }

    .faq-contact-cta {
        padding: 2rem 1.5rem !important;
    }
}

/* Homepage FAQ Accordion Styles */
.faq-wrap .card {
    border: 1px solid rgba(30, 206, 124, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1rem;
}

.faq-wrap .card:last-child {
    margin-bottom: 0;
}

.faq-wrap .card-header {
    background: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.faq-wrap .card-header:hover {
    background: rgba(30, 206, 124, 0.05);
}

.faq-wrap .card-header:not(.collapsed) {
    background: linear-gradient(135deg, #1ECE7C 0%, #17b56d 100%);
    color: #fff;
}

.faq-wrap .card-header:not(.collapsed) h6 {
    color: #fff;
}

.faq-wrap .card-header h6 {
    color: #333;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-wrap .collapse {
    display: none;
}

.faq-wrap .collapse.show {
    display: block;
}

.faq-wrap .card-body {
    padding: 1.5rem;
    padding-top: 0.5rem;
    display: block;
    visibility: visible;
    opacity: 1;
}

.faq-wrap .card-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    display: block;
    visibility: visible;
}

/* Cookie Policy Page - Cookie Type Cards */
.cookie-type-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1ECE7C;
    transition: all 0.3s ease;
}

html[dir="rtl"] .cookie-type-card {
    border-left: none;
    border-right: 4px solid #1ECE7C;
}

.cookie-type-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

html[dir="rtl"] .cookie-type-card:hover {
    transform: translateX(-5px);
}

.cookie-type-card h4 {
    color: #333;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.cookie-type-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.cookie-type-card i {
    font-size: 1.25rem;
}

/* Cookie Policy Alert */
.alert-info {
    background-color: rgba(30, 206, 124, 0.1);
    border-color: rgba(30, 206, 124, 0.3);
    color: #333;
}

.alert-info i {
    color: #1ECE7C;
}

/* Cookie Policy Links */
.page-section ul li a {
    color: #1ECE7C;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-section ul li a:hover {
    color: #17b56d;
    text-decoration: underline;
}

/* Cookie Policy Responsive */
@media (max-width: 768px) {
    .cookie-type-card {
        padding: 1.25rem;
    }

    .cookie-type-card h4 {
        font-size: 1rem;
    }
}
