:root {
    /* Light Theme Variables */
    --primary-color: #0F172A;
    --brand-color: #ff9500; /* Teal color like Khidma */
    --brand-hover: #bd7625;
    --secondary-color: #D97706; /* Amber for accents */
    --accent-color: #f6be3b;
    --bg-body: rgba(255, 255, 255, 0.85); /* Semi-transparent for background visibility */
    --bg-surface: rgba(255, 255, 255, 0.75);
    --bg-surface-alt: rgba(248, 250, 252, 0.75);
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-text: #334155;
    --footer-bg: rgba(15, 23, 42, 0.95);
    --footer-text: #F8FAFC;
    --hero-overlay: rgba(15, 23, 42, 0.9);
    
    --global-bg-image: url('../images/image.png');

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Marquee Animation Direction default (LTR) */
    --marquee-end: -50%;
}

[dir="rtl"] {
    /* Marquee Animation Direction for RTL */
    --marquee-end: 50%;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-body);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: 80px;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(38, 198, 218, 0.2);
    border-top-color: var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

[data-theme="dark"] {
    /* Dark Theme Variables */
    --primary-color: #38bdf8;
    --brand-color: #26C6DA; 
    --brand-hover: #80DEEA;
    --secondary-color: #fbbf24;
    --accent-color: #60a5fa;
    --bg-body: #0F172A;
    --bg-surface: #1E293B;
    --bg-surface-alt: #334155;
    --text-main: #F8FAFC;
    --text-muted: #CBD5E1;
    --text-light: #94a3b8;
    --border-color: #334155;
    --nav-bg: #0F172A; /* Unified with body bg */
    --nav-text: #E2E8F0;
    --footer-bg: #020617;
    --footer-text: #F8FAFC;
    --hero-overlay: rgba(2, 6, 23, 0.95);
    
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--global-bg-image) no-repeat fixed center center / cover;
    background-color: #f0f2f5; /* Fallback */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* direction is handled by html[dir] */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--brand-color);
    color: #ffffff;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 24px;
    font-size: 0.95rem;
    border-radius: 50px;
}

.btn-login:hover {
    background-color: var(--bg-surface-alt);
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.btn-brand {
    background-color: transparent;
    color: var(--brand-color);
    padding: 0;
}

.btn-brand:hover {
    text-decoration: underline;
}

.btn-brand-outline {
    border: 1px solid var(--brand-color);
    color: var(--brand-color);
    padding: 10px 30px;
}

.btn-brand-outline:hover {
    background-color: var(--brand-color);
    color: #fff;
}

/* Header & Navbar - Logical Properties for Bi-Di Support */
header {
    background-color: var(--nav-bg);
    color: var(--nav-text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none; /* Removed for seamless integration */
}

.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    height: 3px;
    background-color: var(--brand-color);
    width: 0%;
    transition: width 0.1s linear;
    z-index: 1001;
}

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

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


/* Right Side: Logo + Links */
.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-color);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.logo i {
    font-size: 1.6rem;
}

.logo span {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--nav-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a i, .dropdown > button i {
    font-size: 0.75rem;
    margin-inline-start: 3px;
    transition: transform 0.3s;
}

.dropdown:hover > a i, .dropdown:hover > button i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0; /* Logical left/right */
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 1100;
}

/* Fix dropdown alignment based on direction if needed, but inset-inline-start usually works. 
   For nav-right, we might want it aligned to start. 
   For nav-left (lang), maybe end? Let's check. 
*/
.nav-left .dropdown-menu {
    inset-inline-start: auto;
    inset-inline-end: 0;
}

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

.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: 0.2s;
    text-align: start;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-surface-alt);
    color: var(--brand-color);
}

/* Left Side: Actions */
.nav-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Language Switcher Styling */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--nav-text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.lang-btn img {
    width: 20px;
    border-radius: 2px;
}

.lang-menu img {
    width: 20px;
    margin-inline-start: 8px;
}

/* Theme Toggle */
.theme-toggle {
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-color);
    width: 64px;
    height: 32px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    direction: ltr; /* Force LTR for the toggle switch itself */
}

.theme-toggle:hover {
    border-color: var(--brand-color);
}

.theme-toggle i {
    font-size: 14px;
    z-index: 3;
    transition: color 0.3s;
}

.theme-toggle .fa-sun {
    color: #F59E0B;
}

.theme-toggle .fa-moon {
    color: var(--text-muted);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    color: var(--text-muted);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    color: #F8FAFC;
}

.theme-toggle .ball {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

[data-theme="dark"] .theme-toggle .ball {
    transform: translateX(32px);
    background-color: var(--brand-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section - Modern */
.hero-modern {
    background: radial-gradient(circle at 50% 50%, rgba(38, 198, 218, 0.05) 0%, transparent 50%),
                linear-gradient(135deg, var(--bg-surface-alt) 0%, var(--bg-body) 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
    text-align: right;
}

[dir="ltr"] .hero-content {
    text-align: left;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 198, 218, 0.1);
    color: var(--brand-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(38, 198, 218, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-color) 0%, #899600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

/* Add an underline decoration to gradient text */
.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(218, 137, 38, 0.2);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-15deg);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
    background: rgba(38, 198, 218, 0.05);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-logo {
    height: 40px;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: 0.3s;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Hero Visual Modern */
.hero-visual-modern {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.visual-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(38, 198, 218, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    animation: blob-float 8s ease-in-out infinite alternate;
}

@keyframes blob-float {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) rotate(0deg); }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(-10px, -20px) rotate(10deg); }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 20px;
    height: 20px;
    background: var(--brand-color);
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.shape-2 {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    bottom: 30%;
    right: 15%;
    animation: float 6s ease-in-out infinite 1s;
}

.main-img {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: transform 0.3s;
    margin-top: -120px;
}

.main-img:hover {
    transform: scale(1.02) rotate(-1deg);
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: float 5s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.float-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.float-card i {
    font-size: 1.5rem;
    color: var(--brand-color);
    background: rgba(38, 198, 218, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.float-card div {
    display: flex;
    flex-direction: column;
}

.float-card span {
    font-weight: 700;
    color: var(--text-main);
}

.float-card small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: 0;
    animation-delay: 2.5s;
}

[dir="ltr"] .card-1 {
    right: auto;
    left: 0;
}

[dir="ltr"] .card-2 {
    left: auto;
    right: 0;
}

[dir="ltr"] .shape-1 {
    left: auto;
    right: 10%;
}

[dir="ltr"] .shape-2 {
    right: auto;
    left: 15%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Marquee Section */
.partners-marquee {
    padding: 40px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.marquee-content img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--marquee-end)); }
}

/* Services Modern */
.services-modern {
    padding: 100px 0;
    background: var(--bg-body);
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tag {
    color: var(--brand-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card-modern {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--brand-color);
}

.product-card-modern.featured {
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(38, 198, 218, 0.05) 100%);
    border-color: var(--brand-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-surface-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--brand-color);
    transition: 0.3s;
}

.product-card-modern:hover .icon-box {
    background: var(--brand-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.product-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card-modern p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.features-list i {
    color: var(--brand-color);
}

.btn-text {
    color: var(--text-main);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-text:hover {
    color: var(--brand-color);
    gap: 12px;
}

/* Calculator Section (New) */
.leadgen-section {
    padding: 90px 0;
    background: radial-gradient(circle at 25% 20%, rgba(255, 149, 0, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(38, 198, 218, 0.08) 0%, transparent 45%),
                linear-gradient(180deg, var(--bg-surface-alt) 0%, var(--bg-body) 100%);
}

.leadgen-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .leadgen-wrapper {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

.leadgen-content {
    text-align: start;
}

.leadgen-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 149, 0, 0.12);
    border: 1px solid rgba(255, 149, 0, 0.18);
    color: var(--brand-color);
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.leadgen-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.leadgen-content p {
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.leadgen-points {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
    padding: 0;
}

.leadgen-points li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-main);
    font-weight: 700;
}

.leadgen-points i {
    color: var(--brand-color);
}

.leadgen-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lead-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-weight: 800;
    color: var(--text-main);
}

[data-theme="dark"] .lead-pill {
    background: rgba(51, 65, 85, 0.35);
    border-color: rgba(51, 65, 85, 0.9);
}

.lead-pill i {
    color: var(--brand-color);
}

.leadgen-card {
    background: rgba(248, 250, 252, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .leadgen-card {
    background: rgba(15, 23, 42, 0.30);
    border-color: rgba(51, 65, 85, 0.9);
}

.leadgen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.leadgen-field.full {
    grid-column: 1 / -1;
}

.leadgen-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 900;
    font-size: 0.95rem;
}

.leadgen-input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.95rem 1rem;
    color: var(--text-main);
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

[data-theme="dark"] .leadgen-input {
    background: rgba(30, 41, 59, 0.35);
    border-color: rgba(51, 65, 85, 0.9);
}

.leadgen-input:focus {
    border-color: rgba(255, 149, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.14);
}

.leadgen-disclaimer {
    margin-top: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: start;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual-modern {
        height: auto;
        flex-direction: column;
        padding-bottom: 2rem;
    }

    .main-img {
        margin-top: 0;
        max-width: 80%;
        margin-bottom: 2rem;
    }

    .float-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 10px auto;
        width: 100%;
        max-width: 350px;
        justify-content: flex-start;
        animation: none;
        transform: none !important;
    }

    .leadgen-wrapper {
        grid-template-columns: 1fr;
        padding: 1.75rem;
    }

    .leadgen-grid {
        grid-template-columns: 1fr;
    }

    .visual-circle {
        animation: none;
        width: 300px;
        height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    .hero-shape {
        animation: none;
    }
}

.card-link i {
    background: var(--bg-surface);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    transition: 0.3s;
}

.product-card:hover .card-link {
    background-color: var(--brand-color);
    color: #fff;
}

.product-card:hover .card-link i {
    color: var(--brand-color);
    background: #fff;
    transform: translateX(-5px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-surface-alt);
}

.about-section .section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.subtitle {
    font-weight: 700;
    color: var(--brand-color) !important;
}

.description {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 198, 218, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-color);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.play-btn-large:hover {
    transform: scale(1.1);
}

.video-overlay h2 {
    font-size: 3rem;
    opacity: 0.3;
}

.watermark {
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    right: 20px;
    bottom: -20px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--bg-surface-alt);
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .why-item:hover {
    background: var(--bg-surface);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .icon-circle {
    background: var(--bg-surface);
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
}

.step-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 200px;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.step-card:hover .step-overlay {
    opacity: 1;
}

.step-overlay i {
    width: 50px;
    height: 50px;
    background: var(--brand-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: var(--bg-surface-alt);
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.partner-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    opacity: 0.6;
    transition: 0.3s;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.faq-modern {
    background: radial-gradient(circle at 15% 25%, rgba(255, 149, 0, 0.10) 0%, transparent 42%),
                radial-gradient(circle at 85% 70%, rgba(38, 198, 218, 0.08) 0%, transparent 45%),
                linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface-alt) 100%);
}

.faq-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.faq-modern .section-header {
    margin-bottom: 0;
    text-align: start;
}

.faq-subtitle {
    margin-top: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    max-width: 560px;
}

.faq-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-weight: 800;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .faq-badge {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

.faq-badge i {
    color: var(--brand-color);
}

.faq-grid-modern {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.faq-aside-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1.75rem;
}

[data-theme="dark"] .faq-aside-card {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

.faq-aside-card h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.faq-aside-card p {
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.faq-aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.faq-aside-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.faq-aside-mini .mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 0.95rem;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.85);
    font-weight: 800;
    color: var(--text-main);
}

[data-theme="dark"] .faq-aside-mini .mini-item {
    background: rgba(51, 65, 85, 0.35);
    border-color: rgba(51, 65, 85, 0.9);
}

.faq-aside-mini .mini-item i {
    color: var(--brand-color);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

details.faq-item {
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

[data-theme="dark"] details.faq-item {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

details.faq-item[open] {
    border-color: rgba(255, 149, 0, 0.35);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 900;
    color: var(--text-main);
    text-align: start;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 149, 0, 0.12);
    color: var(--brand-color);
    flex-shrink: 0;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

details[open] .faq-toggle {
    background: var(--brand-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.35rem 1.35rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.85;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 992px) {
    .faq-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-badges {
        justify-content: flex-start;
    }

    .faq-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .faq-aside-mini {
        grid-template-columns: 1fr;
    }

    .faq-aside-actions .btn {
        width: 100%;
    }
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.news-modern {
    background: radial-gradient(circle at 20% 10%, rgba(255, 149, 0, 0.10) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(38, 198, 218, 0.08) 0%, transparent 45%),
                linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
}

.news-modern .news-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.news-modern .section-header {
    margin-bottom: 0;
    text-align: start;
}

.news-subtitle {
    margin-top: 0.6rem;
    color: var(--text-muted);
    max-width: 560px;
    font-weight: 600;
}

.news-more-btn {
    white-space: nowrap;
}

.news-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.news-feature-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .news-feature-card {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

.news-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.news-feature-media {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.news-feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 35%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.news-feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.news-feature-card:hover .news-feature-media img {
    transform: scale(1.06);
}

.news-chip {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 149, 0, 0.92);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 1;
    box-shadow: 0 10px 18px rgba(255, 149, 0, 0.25);
}

.news-chip.subtle {
    background: rgba(255, 149, 0, 0.14);
    color: var(--brand-color);
    box-shadow: none;
    border: 1px solid rgba(255, 149, 0, 0.18);
}

.news-feature-body {
    padding: 1.75rem 1.75rem 2rem;
    text-align: start;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.news-meta i {
    color: var(--brand-color);
    margin-inline-end: 6px;
}

.news-feature-body h3 {
    color: var(--text-main);
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 0.9rem;
}

.news-feature-body p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.news-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-color);
    font-weight: 900;
}

.news-side {
    display: grid;
    gap: 1rem;
}

.news-mini-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .news-mini-card {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

.news-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.news-mini-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 92px;
}

.news-mini-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.news-mini-card:hover .news-mini-media img {
    transform: scale(1.07);
}

.news-mini-body {
    text-align: start;
}

.news-mini-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
}

.news-mini-body h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

.news-mini-body p {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-modern {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-surface-alt) 0%, var(--bg-body) 100%);
}

.contact-modern .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle {
    margin-top: 0.75rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-inline: auto;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.contact-card,
.contact-map-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .contact-card,
[data-theme="dark"] .contact-map-card {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(51, 65, 85, 0.9);
}

.contact-card {
    padding: 1.75rem;
}

.contact-card-head h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.contact-card-head p {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field.full {
    grid-column: 1 / -1;
}

.contact-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 800;
    font-size: 0.95rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.95rem 1rem;
    color: var(--text-main);
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

[data-theme="dark"] .contact-input,
[data-theme="dark"] .contact-textarea {
    background: rgba(15, 23, 42, 0.35);
    border-color: rgba(51, 65, 85, 0.9);
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: rgba(255, 149, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.14);
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.contact-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

[data-theme="dark"] .contact-info-item {
    background: rgba(51, 65, 85, 0.35);
    border-color: rgba(51, 65, 85, 0.9);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 149, 0, 0.12);
    color: var(--brand-color);
    flex-shrink: 0;
}

.contact-info-text .label {
    display: block;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.contact-info-text .value {
    display: block;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.5;
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-head {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.contact-map-head h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--text-main);
}

.contact-map-head p {
    color: var(--text-muted);
    font-weight: 600;
}

.contact-map-frame {
    height: 520px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="dark"] .contact-map-frame {
    border-top-color: rgba(51, 65, 85, 0.9);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(1.1) contrast(1.05);
}

@media (max-width: 992px) {
    .news-modern .news-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-feature-media {
        min-height: 260px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-frame {
        height: 380px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-mini-card {
        grid-template-columns: 96px 1fr;
    }

    .news-feature-body h3 {
        font-size: 1.35rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions .btn {
        width: 100%;
    }
}

/* Footer */
footer {
    background-color: var(--bg-surface-alt); /* Semi-transparent */
    color: #333;
    padding: 80px 0 30px;
    margin-top: 0;
    border-top: 1px solid #e2e8f0;
}

[data-theme="dark"] footer {
    background-color: #0f172a;
    color: #f8fafc;
    border-color: #334155;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: start;
}

.footer-col h4 {
    color: var(--brand-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--brand-color);
    padding-inline-start: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: 0.3s;
}

[data-theme="dark"] .social-links a {
    background-color: #334155;
    color: #cbd5e1;
}

.social-links a:hover {
    background-color: var(--brand-color);
    color: #fff;
    transform: translateY(-3px);
}

.copyright-section {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Hero Image Styles */
.hero-img-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    z-index: 5;
}

.hero-phone {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    transition: transform 0.5s ease;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
    transition: left 0.8s ease;
}

/* Hover Effects */
.hero-img-wrapper:hover {
    transform: translateY(-5px);
}

.hero-img-wrapper:hover .hero-phone {
    transform: scale(1.05);
}

.hero-img-wrapper:hover .glass-overlay {
    left: 150%;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

@keyframes shine-loop {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

@media (max-width: 992px) {
    .glass-overlay {
        animation: shine-loop 4s infinite;
    }
}

/* Invert colors on dark mode utility */
[data-theme="dark"] .invert-on-dark {
    filter: brightness(0) invert(1);
}

/* Reusable Shine Animation Utility */
.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
    transition: left 0.8s ease;
}

.hover-shine:hover::after {
    left: 150%;
}

@media (max-width: 992px) {
    .hover-shine::after {
        animation: shine-loop 4s infinite;
        transition: none;
    }
}

/* Mobile Only Utilities */
.mobile-only {
    display: none;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    align-items: center;
}

.mobile-actions .theme-toggle {
    width: 100%;
    justify-content: center;
    background-color: var(--bg-surface-alt);
    padding: 10px;
    border-radius: var(--radius);
}

/* Mobile Menu Button Improvement */
.mobile-menu-btn {
    font-size: 1.5rem;
    color: var(--text-main);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: none;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--brand-color);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-links {
        display: none; 
    }

    .nav-left > .btn-primary {
        display: none;
    }

    /* Show Theme Toggle & Lang Switcher on Mobile */
    .nav-left > .theme-toggle,
    .nav-left > .lang-dropdown {
        display: flex !important;
    }

    /* Adjust Lang Dropdown for Mobile */
    .lang-dropdown .lang-switch {
        font-size: 0; /* Hide text "English" */
        padding: 8px;
        background: var(--bg-surface-alt);
        border-radius: 8px;
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lang-dropdown .lang-switch img {
        margin: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
    }

    .lang-dropdown .lang-switch i {
        display: none; /* Hide Arrow on Mobile */
    }

    .mobile-only {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
        padding: 8px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        background: var(--bg-surface-alt);
    }

    .nav-left {
        gap: 0.8rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-desc {
        margin-inline: auto;
    }
    
    .hero-cta-box {
        margin: 0 auto;
    }

    .cta-actions {
        justify-content: center;
    }

    /* Enhanced Mobile Menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed; /* Fixed to cover screen or stick better */
        top: 80px; /* Below navbar */
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-surface);
        padding: 2rem 1.5rem;
        box-shadow: none;
        overflow-y: auto;
        z-index: 999;
        gap: 0;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links.active > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active > li:last-child {
        border-bottom: none;
    }

    .nav-links.active > li > a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        font-weight: 700;
        width: 100%;
    }

    .nav-links.active .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg-surface-alt);
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 1rem;
        margin-bottom: 1rem;
        display: none; /* JS can toggle this, or we can just show it */
    }
    
    .nav-links.active .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Mobile Login Button */
    .mobile-actions {
        margin-top: 2rem;
        padding-top: 0;
        border-top: none;
    }

    .mobile-actions .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 1.1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        justify-content: center;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid, .why-grid, .steps-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .video-overlay h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Video Modal */
body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    background: #000;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--brand-color);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   IMPORTED STYLES (Merged)
   ========================================= */

/* Steps Section Modern */
.steps-modern-section {
    padding: 100px 0;
    background: var(--bg-surface);
    overflow: hidden;
}

.steps-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-header-left {
    margin-bottom: 3rem;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 1rem;
}

/* Timeline Styles */
.steps-timeline {
    position: relative;
    padding-right: 1rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: #ff9500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 149, 0, 0.3);
}

/* Connecting Line */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 24px; /* Centered with the number */
    width: 2px;
    height: calc(100% - 20px); /* Adjust based on gap */
    background: #e0e0e0;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #ff9500;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Visual Illustration (Rocket) */
.steps-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #f0fdf4; /* Light green blob */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-pulse 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes blob-pulse {
    0% { transform: scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { transform: scale(1.1); border-radius: 60% 40% 30% 70% / 50% 60% 30% 60%; }
}

.rocket-container {
    position: relative;
    z-index: 1;
    animation: rocket-float 3s ease-in-out infinite;
}

.rocket-icon {
    font-size: 10rem;
    color: #ff9500;
    filter: drop-shadow(0 20px 30px rgba(255, 149, 0, 0.2));
    transform: rotate(-45deg);
}

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

/* Responsive Steps */
@media (max-width: 992px) {
    .steps-wrapper-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .section-header-left {
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .timeline-item:not(:last-child)::after {
        display: none; /* Hide connecting line on mobile for cleaner look */
    }

    .steps-visual {
        height: 300px;
        order: -1; /* Show image first on mobile */
    }

    .visual-blob {
        width: 280px;
        height: 280px;
    }

    .rocket-icon {
        font-size: 6rem;
    }
}

/* Features Section Modern - Sulfah Style */
.why-us-modern {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.why-us-modern .section-header {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon-wrapper i {
    font-size: 3.5rem;
    color: var(--brand-color); /* Orange */
    transition: all 0.4s ease;
}

/* Specific Hover Animation requested */
.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-15px) scale(1.1);
}

.feature-card:hover .feature-icon-wrapper i {
    filter: drop-shadow(0 10px 15px rgba(255, 149, 0, 0.3));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 0;
    }
}

/* About Section Modern */
.about-modern {
    padding: 100px 0;
    background-color: var(--bg-surface-alt);
    overflow: hidden;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    text-align: right;
}

[dir="ltr"] .about-content {
    text-align: left;
}

.about-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 149, 0, 0.1);
    color: var(--brand-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-features li i {
    color: var(--brand-color);
    font-size: 1.2rem;
}

.about-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px; /* Default for RTL */
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

[dir="ltr"] .experience-badge {
    left: auto;
    right: 30px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-content {
        text-align: center;
        order: 1;
    }

    .about-features {
        display: inline-block;
        text-align: start;
    }
    
    .about-visual {
        order: 2;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: max-content;
    }
}

/* Utility Classes (Bootstrap Compatibility) - ADDED FOR ALERTS */
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.text-center { text-align: center !important; }
.m-3 { margin: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.ms-2 { margin-inline-start: 0.5rem !important; }
.me-2 { margin-inline-end: 0.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.text-danger { color: #dc3545 !important; }
.text-muted { color: #6c757d !important; }
.text-white { color: #fff !important; }

/* Alerts Styles - ADDED FOR ALERTS */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: 10;
}

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}
