/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00d4ff;
    --accent-color: #6366f1;
    --dark-color: #0f172a;
    --dark-gray: #1e293b;
    --medium-gray: #475569;
    --light-gray: #f8fafc;
    --lighter-gray: #f1f5f9;
    --gray: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --hot-badge: #ef4444;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

html#htmlRoot {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Enhanced smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-margin-top: 100px;
    }
}

html, body {
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Arabic Font Support */
html[dir="rtl"] body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif !important;
}

/* Exclude Font Awesome icons and images from font-family override */
html[dir="rtl"] i[class*="fa-"],
html[dir="rtl"] i[class*="fas"],
html[dir="rtl"] i[class*="far"],
html[dir="rtl"] i[class*="fab"],
html[dir="rtl"] i[class*="fal"],
html[dir="rtl"] i[class*="fad"],
html[dir="rtl"] .fa,
html[dir="rtl"] .fas,
html[dir="rtl"] .far,
html[dir="rtl"] .fab,
html[dir="rtl"] .fal,
html[dir="rtl"] .fad,
html[dir="rtl"] img {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
}

/* Apply font-family to text elements only */
html[dir="rtl"] p:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] span:not([class*="fa"]):not([class*="icon"]):not(.lang-text),
html[dir="rtl"] div:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] a:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] li:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] h1:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] h2:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] h3:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] h4:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] h5:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] h6:not([class*="fa"]):not([class*="icon"]) {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif !important;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif !important;
    font-weight: 700;
    letter-spacing: 0;
}

html[dir="rtl"] body {
    line-height: 1.8;
}

/* Removed duplicate rule - handled above with exclusions */

html[dir="rtl"] button:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] input:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] textarea:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] select:not([class*="fa"]):not([class*="icon"]),
html[dir="rtl"] label:not([class*="fa"]):not([class*="icon"]) {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif !important;
}

/* Ensure images are always visible in RTL */
html[dir="rtl"] img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 20px rgba(0, 102, 255, 0.08), 0 0 0 1px rgba(0, 102, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%),
                      linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.header.scrolled {
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15), 0 0 0 1px rgba(0, 102, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 248, 255, 0.98) 100%);
    border-bottom-color: rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 248, 255, 0.98) 100%),
                      linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo a::before {
    content: none;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo a img {
    height: 120px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 102, 255, 0.45));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.logo a:hover img {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 6px 20px rgba(0, 212, 255, 0.6));
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    display: block;
}

/* Colorful gradients for each nav item */
.main-nav li:nth-child(1) a::before {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.main-nav li:nth-child(2) a::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.main-nav li:nth-child(3) a::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.main-nav li:nth-child(4) a::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.main-nav li:nth-child(5) a::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.main-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    opacity: 1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colorful underlines for each nav item */
.main-nav li:nth-child(1) a::after {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

.main-nav li:nth-child(2) a::after {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.main-nav li:nth-child(3) a::after {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.main-nav li:nth-child(4) a::after {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.main-nav li:nth-child(5) a::after {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Colorful hover colors for each nav item */
.main-nav li:nth-child(1) a:hover,
.main-nav li:nth-child(1) a.active {
    color: #0066ff;
}

.main-nav li:nth-child(2) a:hover,
.main-nav li:nth-child(2) a.active {
    color: #6366f1;
}

.main-nav li:nth-child(3) a:hover,
.main-nav li:nth-child(3) a.active {
    color: #10b981;
}

.main-nav li:nth-child(4) a:hover,
.main-nav li:nth-child(4) a.active {
    color: #f59e0b;
}

.main-nav li:nth-child(5) a:hover,
.main-nav li:nth-child(5) a.active {
    color: #ef4444;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: calc(100% - 40px);
}

.main-nav a.active {
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-contact,
.btn-demo {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn-contact {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #6366f1 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-contact::after {
    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;
    z-index: -1;
}

.btn-contact:hover::after {
    width: 300px;
    height: 300px;
}

.btn-contact:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4), 0 0 0 4px rgba(0, 102, 255, 0.1);
    border-color: transparent;
}

.btn-contact:hover::before {
    opacity: 1;
}

.btn-demo {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #6366f1 100%);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0052cc 0%, #00b8e6 50%, #4f46e5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-demo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-demo:hover::after {
    width: 300px;
    height: 300px;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 102, 255, 0.5), 0 0 0 4px rgba(0, 212, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-demo:hover::before {
    opacity: 1;
}

.language-switcher-wrapper {
    position: relative;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                      linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 12px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    min-width: 80px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.language-switcher::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.language-switcher:hover::before {
    opacity: 1;
}

.language-switcher:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.98) 100%);
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25), 0 0 0 2px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.language-switcher.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.98) 100%);
    border-color: rgba(0, 102, 255, 0.4);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2), 0 0 0 2px rgba(0, 212, 255, 0.15);
}

.language-switcher i:first-child {
    font-size: 16px;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-switcher .lang-text {
    font-weight: 700;
    min-width: 28px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.language-switcher i:last-child {
    font-size: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
}

.language-switcher.active i:last-child {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%),
                      linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2), 0 0 0 1px rgba(0, 102, 255, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-switcher-wrapper.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    color: var(--primary-color);
    transform: translateX(4px);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.12) 100%);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

.lang-option.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

.lang-option .lang-flag {
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.lang-option .lang-name {
    flex: 1;
    font-weight: inherit;
}

.lang-option .fa-check {
    color: var(--primary-color);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-option.active .fa-check {
    opacity: 1;
}

.lang-option:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

/* RTL adjustments for language switcher */
html[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .lang-option {
    text-align: right;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .header-top {
    flex-direction: row-reverse;
}

html[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-wrapper {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .section-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .contact-info h2::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .contact-wrapper {
    direction: rtl;
}

html[dir="rtl"] .featured-card::after,
html[dir="rtl"] .benefit-item::after,
html[dir="rtl"] .area-card::before,
html[dir="rtl"] .pricing-card::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .testimonial-card::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .contact-feature::before,
html[dir="rtl"] .contact-detail::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .service-list li {
    padding-left: 0;
    padding-right: 8px;
}

html[dir="rtl"] .service-list li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .service-list li:hover {
    padding-left: 0;
    padding-right: 16px;
}

html[dir="rtl"] .btn-hero i {
    order: -1;
}

html[dir="rtl"] .link-arrow i,
html[dir="rtl"] .product-link i {
    transform: scaleX(-1);
}

html[dir="rtl"] .link-arrow:hover i,
html[dir="rtl"] .product-link:hover i {
    transform: scaleX(-1) translateX(-6px);
}

html[dir="rtl"] .contact-feature,
html[dir="rtl"] .contact-detail {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-feature:hover,
html[dir="rtl"] .contact-detail:hover {
    transform: translateX(-8px) scale(1.02);
}

html[dir="rtl"] .emergency-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-content,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .footer-copyright {
    direction: rtl;
}

html[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .header-top {
    flex-direction: row-reverse;
}

html[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-wrapper {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .section-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .contact-info h2::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .contact-wrapper {
    direction: rtl;
}

html[dir="rtl"] .featured-card::after,
html[dir="rtl"] .benefit-item::after,
html[dir="rtl"] .area-card::before,
html[dir="rtl"] .pricing-card::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .testimonial-card::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .contact-feature::before,
html[dir="rtl"] .contact-detail::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

html[dir="rtl"] .service-list li {
    padding-left: 0;
    padding-right: 8px;
}

html[dir="rtl"] .service-list li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .service-list li:hover {
    padding-left: 0;
    padding-right: 16px;
}

html[dir="rtl"] .btn-hero i {
    order: -1;
}

html[dir="rtl"] .link-arrow i,
html[dir="rtl"] .product-link i {
    transform: scaleX(-1);
}

html[dir="rtl"] .link-arrow:hover i,
html[dir="rtl"] .product-link:hover i {
    transform: scaleX(-1) translateX(-6px);
}

html[dir="rtl"] .contact-feature,
html[dir="rtl"] .contact-detail {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-feature:hover,
html[dir="rtl"] .contact-detail:hover {
    transform: translateX(-8px) scale(1.02);
}

html[dir="rtl"] .emergency-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-content,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .footer-copyright {
    direction: rtl;
}

html[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%);
    border: 2px solid transparent;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                      linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-toggle:hover::before {
    opacity: 1;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.98) 100%);
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25), 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.98) 100%);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2), 0 0 0 2px rgba(0, 212, 255, 0.15);
}

.mobile-menu-toggle i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active i.fa-bars {
    transform: rotate(90deg);
    opacity: 0;
}

.mobile-menu-toggle.active i.fa-times {
    transform: rotate(0deg);
    opacity: 1;
}

/* Hero Section - Enhanced Professional Design */
.hero {
    background: linear-gradient(135deg, #0a1929 0%, #0066ff 25%, #00d4ff 50%, #0066ff 75%, #0a1929 100%);
    background-size: 400% 400%;
    animation: animated-hero-bg 25s ease-in-out infinite;
    color: var(--white);
    padding: 140px 0 120px;
    position: relative;
    overflow: visible;
    min-height: 70vh;
    display: flex;
    align-items: center;
    isolation: isolate;
    box-shadow: inset 0 -100px 200px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, rgba(4, 3, 69, 0.4) 0%, rgba(23, 162, 184, 0.2) 50%, rgba(4, 3, 69, 0.4) 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: animated-hero-bg 25s ease-in-out infinite, heroShimmer 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    z-index: 1;
    pointer-events: none;
    animation: scanLine 15s linear infinite;
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes animated-hero-bg {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    animation: orbFloat 15s infinite ease-in-out, orbPulse 8s infinite ease-in-out;
    will-change: transform, opacity;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0066ff 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: 5s;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-logo-mark {
    position: absolute;
    top: -80px;
    right: -230px;
    left: auto;
    z-index: 3;
}

.hero-logo-mark img {
    height: 840px;
    width: auto;
    display: block;
    filter: drop-shadow(0 16px 40px rgba(0, 102, 255, 0.55));
}

html[dir="rtl"] .hero-logo-mark {
    right: auto;
    left: -230px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.8s ease;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-badge:hover::before {
    left: 100%;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
    box-shadow: 0 0 10px #10b981;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-badge i {
    color: #fbbf24;
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 88px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.05;
    letter-spacing: -4px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-title .title-line {
    display: block;
    position: relative;
    margin-bottom: 8px;
}

.hero-title .title-line:first-child {
    font-size: 0.95em;
    opacity: 0.95;
    font-weight: 800;
}

.hero-title .title-line.highlight {
    position: relative;
    display: inline-block;
    font-size: 1.1em;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 30%, #0066ff 60%, #ffffff 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    position: relative;
    filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.3));
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), rgba(0, 102, 255, 0.6), transparent);
    border-radius: 3px;
    animation: underlineGlow 3s ease infinite;
    filter: blur(4px);
    opacity: 0.8;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(0.85);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.75;
    max-width: 640px;
    animation: fadeInUp 0.8s ease 0.4s both;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.98);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    color: var(--primary-color);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f9ff 100%);
}

.btn-hero.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-hero.btn-primary:hover::before {
    left: 100%;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.btn-hero.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-hero.btn-primary i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-hero.btn-primary:hover i {
    transform: translateX(6px);
}

.btn-hero.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--white);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-content strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.feature-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 1s both;
}

.trust-item {
    text-align: left;
}

.trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

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

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
}

.hero-van {
    position: absolute;
    bottom: -210px;
    right: 0;
    width: 450px;
    height: auto;
    z-index: 1000;
    animation: vanMove 20s linear infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    will-change: transform;
}

.van-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform-origin: center;
}

@keyframes vanMove {
    0% {
        transform: translateX(100vw);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(-100vw - 450px));
        opacity: 1;
    }
}

/* Van bounce effect removed for smooth movement */
.hero-van .van-image {
    transform-origin: center bottom;
}

/* Van text on back */
.van-text {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 20px;
    transform: translateY(-50%);
    background: rgba(0, 102, 255, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1001;
    animation: fadeInOut 3s ease-in-out infinite;
    pointer-events: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
}

/* Arabic font for van text */
html[dir="rtl"] .van-text {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 20px;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-ac-unit {
    position: relative;
    width: 280px;
    height: 280px;
    z-index: 3;
    animation: floatUpDown 6s ease-in-out infinite;
}

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

.ac-unit-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ac-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: ringRotate 20s linear infinite;
}

.ac-ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.3);
    animation-duration: 15s;
}

.ac-ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(255, 255, 255, 0.25);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ac-ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(255, 255, 255, 0.2);
    animation-duration: 25s;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-ac-unit i {
    font-size: 100px;
    color: var(--white);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    animation: rotate 15s linear infinite;
    position: relative;
    z-index: 2;
}

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 1;
    }
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatCard 6s infinite ease-in-out;
}

.hero-card i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
}

.hero-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.hero-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

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

.hero-card-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.hero-card-3 {
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.logo i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hero-title {
        font-size: 70px;
        letter-spacing: -3px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-ac-unit {
        width: 220px;
        height: 220px;
    }

    .hero-ac-unit i {
        font-size: 80px;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 19px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-visual {
        height: 300px;
    }

    .hero-ac-unit {
        width: 180px;
        height: 180px;
    }

    .hero-ac-unit i {
        font-size: 60px;
    }

    .hero-glow {
        width: 250px;
        height: 250px;
    }

    .hero-orb-1,
    .hero-orb-2,
    .hero-orb-3 {
        filter: blur(60px);
    }
}

.btn {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Featured Section */
.featured-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.featured-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.015) 50%, rgba(0, 102, 255, 0.02) 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

@keyframes animated-section-bg {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.featured-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(40px);
    padding: 0;
    border-radius: 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 102, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 60px rgba(0, 102, 255, 0.05);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.12);
    display: flex;
    flex-direction: column;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-card-content {
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Featured Card Images */
.featured-image {
    width: 100%;
    height: 280px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.featured-card:hover .featured-image::before {
    opacity: 1;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.featured-card:hover .featured-image img {
    transform: scale(1.15);
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.featured-card:hover .featured-image::after {
    opacity: 1;
}

/* Removed duplicate - using enhanced version above */

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover::after {
    transform: scaleX(1);
}

.featured-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 
        0 30px 90px rgba(0, 102, 255, 0.25),
        0 0 0 1px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 50px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.4);
}

.featured-icon {
    font-size: 56px;
    margin: -40px auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    box-shadow: 
        0 8px 24px rgba(0, 102, 255, 0.25),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-icon i {
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:nth-child(1) .featured-icon {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

.featured-card:nth-child(2) .featured-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.featured-card:nth-child(3) .featured-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.featured-card:nth-child(4) .featured-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.featured-card:nth-child(5) .featured-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.featured-card:nth-child(6) .featured-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.featured-card:hover .featured-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(0, 102, 255, 0.35),
        0 0 0 1px rgba(0, 102, 255, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.featured-card:nth-child(2):hover .featured-icon {
    box-shadow: 
        0 12px 32px rgba(16, 185, 129, 0.35),
        0 0 0 1px rgba(16, 185, 129, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.featured-card:nth-child(3):hover .featured-icon {
    box-shadow: 
        0 12px 32px rgba(245, 158, 11, 0.35),
        0 0 0 1px rgba(245, 158, 11, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.featured-card:nth-child(4):hover .featured-icon {
    box-shadow: 
        0 12px 32px rgba(239, 68, 68, 0.35),
        0 0 0 1px rgba(239, 68, 68, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.featured-card:nth-child(5):hover .featured-icon {
    box-shadow: 
        0 12px 32px rgba(139, 92, 246, 0.35),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.featured-card:nth-child(6):hover .featured-icon {
    box-shadow: 
        0 12px 32px rgba(6, 182, 212, 0.35),
        0 0 0 1px rgba(6, 182, 212, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.featured-card:hover .featured-icon i {
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.4));
    transform: scale(1.1);
}

.featured-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.4px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.featured-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.75;
    font-size: 15px;
    text-align: center;
}

.service-list {
    list-style: none;
    margin: 28px 0 32px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-list li {
    padding: 14px 0;
    color: var(--dark-gray);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 8px;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.service-list li:hover {
    padding-left: 16px;
    color: var(--primary-color);
}

.service-list li:hover::before {
    width: 4px;
}

.service-list li i {
    color: var(--success-color);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-list li:hover i {
    transform: scale(1.2);
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    position: relative;
    padding: 12px 0;
    margin-top: auto;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-arrow:hover {
    gap: 14px;
    color: var(--primary-dark);
}

.link-arrow:hover::after {
    width: 100%;
}

.link-arrow i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-arrow:hover i {
    transform: translateX(6px);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 19px;
    margin-bottom: 70px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 8px;
    background: var(--lighter-gray);
    border-radius: 12px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 14px 28px;
    border: none;
    background-color: transparent;
    color: var(--dark-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
}

.tab-btn:hover {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: none;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.product-image {
    font-size: 72px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(-5deg);
}

.product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.product-type {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-desc {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    position: relative;
    padding: 8px 0;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-link:hover {
    gap: 14px;
    color: var(--primary-dark);
}

.product-link:hover::after {
    width: 100%;
}

.product-link i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-link:hover i {
    transform: translateX(6px);
}

/* Benefits Section */
.benefits-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.015) 50%, rgba(0, 102, 255, 0.02) 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-section .section-subtitle {
    max-width: 620px;
}

/* About Intro Card */
.about-intro-card {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 48px 56px;
    border-radius: 32px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 255, 0.92) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.92) 50%, rgba(255, 255, 255, 0.95) 100%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.15) 50%, rgba(99, 102, 241, 0.2) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 20px 60px rgba(0, 102, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 80px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.about-intro-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 80px rgba(0, 102, 255, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 120px rgba(0, 212, 255, 0.3);
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0.6;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: cardGlow 8s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        opacity: 0.6;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: rotate(180deg);
    }
}

.about-intro-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 32px;
}

.about-intro-title {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.2));
    transition: all 0.3s ease;
}

.about-intro-card:hover .about-intro-title {
    filter: drop-shadow(0 4px 16px rgba(0, 102, 255, 0.3));
    transform: translateX(4px);
}

.about-intro-title::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    box-shadow:
        0 0 0 4px rgba(0, 102, 255, 0.2),
        0 0 0 8px rgba(0, 212, 255, 0.1),
        0 0 30px rgba(0, 102, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.about-intro-title::after {
    content: '';
    height: 3px;
    width: 120px;
    border-radius: 2px;
    background: linear-gradient(90deg, 
        rgba(0, 102, 255, 0.6) 0%, 
        rgba(0, 212, 255, 0.8) 50%,
        transparent 100%);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.about-intro-text {
    position: relative;
    color: #475569;
    font-size: 17px;
    line-height: 2;
    max-width: 900px;
    font-weight: 400;
    z-index: 1;
    text-align: justify;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.about-intro-card:hover .about-intro-text {
    color: #334155;
}

.about-intro-text br {
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .about-intro-card {
        padding: 32px 28px;
        margin-top: 24px;
        margin-bottom: 32px;
        border-radius: 24px;
    }

    .about-intro-card:hover {
        transform: translateY(-4px);
    }

    .about-intro-title {
        font-size: 22px;
        gap: 12px;
    }

    .about-intro-title::before {
        width: 10px;
        height: 10px;
    }

    .about-intro-title::after {
        width: 80px;
    }

    .about-intro-text {
        font-size: 15px;
        line-height: 1.85;
        text-align: right;
    }
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    margin-top: 60px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(40px);
    padding: 56px 44px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 102, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 60px rgba(0, 102, 255, 0.05);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 255, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.benefit-item:hover::before {
    opacity: 1;
    transform: scale(1.1);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.benefit-item:hover::after {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 50px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.25);
}

.benefit-icon {
    font-size: 52px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    box-shadow: 
        0 8px 24px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon i {
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon .sr-icon {
    font-size: 0.9em;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.03em;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.benefit-item:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

.benefit-item:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.benefit-item:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.benefit-item:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.benefit-item:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.benefit-item:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 12px 32px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.benefit-item:nth-child(2):hover .benefit-icon {
    box-shadow: 
        0 12px 32px rgba(16, 185, 129, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.benefit-item:nth-child(3):hover .benefit-icon {
    box-shadow: 
        0 12px 32px rgba(245, 158, 11, 0.3),
        0 0 0 1px rgba(245, 158, 11, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.benefit-item:nth-child(4):hover .benefit-icon {
    box-shadow: 
        0 12px 32px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.benefit-item:nth-child(5):hover .benefit-icon {
    box-shadow: 
        0 12px 32px rgba(236, 72, 153, 0.3),
        0 0 0 1px rgba(236, 72, 153, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.benefit-item:nth-child(6):hover .benefit-icon {
    box-shadow: 
        0 12px 32px rgba(6, 182, 212, 0.3),
        0 0 0 1px rgba(6, 182, 212, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.benefit-item:hover .benefit-icon i {
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.4));
    transform: scale(1.1);
}

.benefit-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--dark-color);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 15px;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 50%, rgba(0, 102, 255, 0.03) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 28px;
    color: var(--dark-color);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.7;
}

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

.contact-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 102, 255, 0.08);
    border: 2px solid rgba(0, 102, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-feature:hover::before {
    opacity: 1;
}

.contact-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.contact-feature:hover::before {
    transform: scaleY(1);
}

.contact-feature:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15), 0 0 0 1px rgba(0, 102, 255, 0.25);
    transform: translateX(12px) scale(1.03);
    border-color: rgba(0, 102, 255, 0.4);
}

.contact-feature i {
    color: var(--success-color);
    font-size: 26px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.3));
}

.contact-feature:hover i {
    transform: scale(1.15) rotate(5deg);
}

.contact-feature span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 15px;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(30px);
    padding: 64px 56px;
    border-radius: 32px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 102, 255, 0.08);
    border: 2px solid rgba(0, 102, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-form:hover::before {
    transform: scaleX(1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--dark-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.verification-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.verification-wrapper input {
    flex: 1;
}

.captcha-code {
    padding: 14px 24px;
    background: var(--gradient-primary);
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    font-size: 18px;
    min-width: 120px;
    text-align: center;
    user-select: none;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

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

.footer-logo {
    flex-shrink: 0;
    max-width: 180px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.3));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 6px 16px rgba(0, 102, 255, 0.5));
}

.footer-tagline {
    flex: 1;
    min-width: 300px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-social h4,
.footer-newsletter h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

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

.footer-links a:hover {
    color: var(--white);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 100px;
    padding: 16px 30px;
    border-radius: 999px;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 34px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 1100;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Floating helper image above WhatsApp */
.mosaed-helper {
    position: fixed;
    right: 24px;
    bottom: 200px;
    width: 300px;
    height: auto;
    z-index: 1101;
    pointer-events: none;
    object-fit: contain;
    display: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
    transform-origin: center bottom;
    animation: mosaedWave 3.5s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mosaed-helper.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

@keyframes mosaedWave {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(-2deg);
    }
    50% {
        transform: translateY(0) rotate(1.5deg);
    }
    75% {
        transform: translateY(-4px) rotate(-1.5deg);
    }
}

/* Helper button next to assistant */
.mosaed-help-button {
    position: fixed;
    right: 260px;
    bottom: 250px;
    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1101;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mosaed-help-button.show {
    opacity: 1;
    visibility: visible;
}

.mosaed-help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.55);
    background-color: #0b172a;
}

/* Chat widget */
.mosaed-chat {
    position: fixed;
    right: 24px;
    bottom: 210px;
    width: 320px;
    max-height: 420px;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1200;
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mosaed-chat--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mosaed-chat-header {
    padding: 10px 14px;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mosaed-chat-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
}

.mosaed-chat-body {
    padding: 10px 12px;
    background: #020617;
    flex: 1;
    overflow-y: auto;
    direction: rtl;
}

.mosaed-chat-message {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    max-width: 100%;
}

.mosaed-chat-message--bot {
    background: #0f172a;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.mosaed-chat-message--user {
    background: #22c55e;
    color: #022c22;
    margin-left: auto;
    text-align: left;
}

.mosaed-chat-input {
    display: flex;
    gap: 6px;
    padding: 8px;
    background: #020617;
    border-top: 1px solid rgba(30, 64, 175, 0.7);
}

.mosaed-chat-input input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 8px 12px;
    font-size: 13px;
    background: #020617;
    color: #e5e7eb;
}

.mosaed-chat-input input::placeholder {
    color: rgba(148, 163, 184, 0.8);
}

.mosaed-chat-input button {
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #ffffff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.mosaed-chat-input button:hover {
    filter: brightness(1.05);
}

.whatsapp-float .whatsapp-text {
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    background-color: #1ebe5b;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 90px;
        padding: 10px 18px;
        font-size: 28px;
    }

    .whatsapp-float .whatsapp-text {
        font-size: 14px;
    }

    .mosaed-helper {
        right: 6px;
        bottom: 160px;
        width: 240px;
    }

    .mosaed-help-button {
        right: 110px;
        bottom: 210px;
        font-size: 14px;
        padding: 8px 14px;
    }

    .mosaed-chat {
        right: 10px;
        bottom: 190px;
        width: 90vw;
        max-width: 360px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 50%, rgba(0, 102, 255, 0.03) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(30px);
    padding: 56px 48px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 102, 255, 0.08);
    border: 2px solid rgba(0, 102, 255, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.2), 0 0 0 1px rgba(0, 102, 255, 0.25);
    border-color: rgba(0, 102, 255, 0.4);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 6px;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.author-avatar i {
    position: absolute;
    z-index: 1;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a1929 0%, #0066ff 30%, #00d4ff 70%, #0a1929 100%);
    background-size: 200% 200%;
    animation: animated-hero-bg 30s ease-in-out infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 3, 69, 0.4) 0%, rgba(23, 162, 184, 0.2) 50%, rgba(4, 3, 69, 0.4) 100%);
    background-size: 200% 200%;
    animation: animated-hero-bg 30s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 32px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.stat-item:hover::after {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
    position: relative;
    display: inline-block;
    transition: transform 0.5s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-number::after {
    content: '+';
    font-size: 40px;
    position: absolute;
    right: -20px;
    top: 0;
    opacity: 0.8;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Process Section */
.process-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.015) 50%, rgba(0, 102, 255, 0.02) 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 90px 36px 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 102, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: visible;
    animation: fadeInUp 0.8s ease-out forwards, floatCard 6s ease-in-out 0.8s infinite;
    opacity: 0;
    transform: translateY(30px);
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


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

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.process-step:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 24px 64px rgba(0, 102, 255, 0.15),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.3);
    animation: floatCard 6s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
}

.process-step:hover::after {
    transform: scaleX(1);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 24px 64px rgba(0, 102, 255, 0.15),
            0 0 0 1px rgba(0, 102, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    50% {
        box-shadow: 
            0 24px 64px rgba(0, 102, 255, 0.2),
            0 0 0 1px rgba(0, 102, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            0 0 40px rgba(0, 102, 255, 0.1);
    }
}

.step-number {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 900;
    box-shadow: 
        0 12px 36px rgba(0, 102, 255, 0.35),
        0 0 0 8px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 4;
    border: 6px solid var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: numberPulse 3s ease-in-out infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.4;
    filter: blur(16px);
    z-index: -1;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(24px);
    z-index: -2;
    animation: pulse-ring-outer 3s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes pulse-ring-outer {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.05;
    }
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.2) rotate(8deg);
    box-shadow: 
        0 16px 48px rgba(0, 102, 255, 0.5),
        0 0 0 10px rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(0, 102, 255, 0.3);
    animation: numberPulse 1.5s ease-in-out infinite, numberRotate 3s linear infinite;
}

@keyframes numberRotate {
    0% {
        transform: translateX(-50%) scale(1.2) rotate(8deg);
    }
    100% {
        transform: translateX(-50%) scale(1.2) rotate(368deg);
    }
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.step-icon {
    font-size: 64px;
    margin: 50px auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    box-shadow: 
        0 8px 24px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 4s ease-in-out infinite;
}

.step-icon i {
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

.process-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.process-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.process-step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

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

.process-step:hover .step-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    animation: iconFloat 2s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
}

.process-step:nth-child(2):hover .step-icon {
    box-shadow: 
        0 12px 32px rgba(16, 185, 129, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.process-step:nth-child(3):hover .step-icon {
    box-shadow: 
        0 12px 32px rgba(245, 158, 11, 0.3),
        0 0 0 1px rgba(245, 158, 11, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.process-step:nth-child(4):hover .step-icon {
    box-shadow: 
        0 12px 32px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 12px 32px rgba(0, 102, 255, 0.3),
            0 0 0 1px rgba(0, 102, 255, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 12px 32px rgba(0, 102, 255, 0.4),
            0 0 0 1px rgba(0, 102, 255, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(0, 102, 255, 0.2);
    }
}

.process-step:hover .step-icon i {
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.4));
    transform: scale(1.15) rotate(10deg);
}

.process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.process-step:hover h3 {
    color: var(--primary-color);
}

.process-step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 50%, rgba(0, 102, 255, 0.03) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 64px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 102, 255, 0.08);
    border: 2px solid rgba(0, 102, 255, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.pricing-card:hover::after {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15), 0 0 0 1px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.pricing-card.featured {
    border-color: rgba(0, 102, 255, 0.4);
    transform: scale(1.08);
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.25), 0 0 0 2px rgba(0, 102, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 249, 255, 0.98) 100%);
    position: relative;
    overflow: visible;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.1;
    filter: blur(20px);
    animation: featured-glow 3s ease-in-out infinite;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-16px);
    box-shadow: 0 35px 90px rgba(0, 102, 255, 0.3), 0 0 0 2px rgba(0, 102, 255, 0.3);
}

@keyframes featured-glow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    white-space: nowrap;
    min-width: fit-content;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-price .amount {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-price .period {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 14px 0;
    color: var(--dark-gray);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Kingdom Map Section */
.kingdom-map-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.kingdom-map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 90% 100%, rgba(56, 189, 248, 0.22) 0%, transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.kingdom-map-section .container {
    position: relative;
    z-index: 1;
}

.kingdom-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.kingdom-map-content {
    max-width: 560px;
}

.kingdom-map-section .section-title {
    text-align: left;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #0066ff 40%, #00d4ff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kingdom-map-section .section-subtitle {
    max-width: 520px;
    font-size: 16px;
    color: #1e293b;
    opacity: 0.95;
}

.kingdom-map-card {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 32px;
    background: radial-gradient(circle at top,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 1) 45%,
        rgba(15, 23, 42, 1) 100%);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.6);
    overflow: hidden;
    padding: 32px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.kingdom-map-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(56, 189, 248, 0.5) 22%,
            transparent 55%),
        radial-gradient(circle at center,
            rgba(56, 189, 248, 0.25) 0%,
            transparent 65%);
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: kingdomGlowPulse 10s ease-in-out infinite;
}

.kingdom-map-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.8));
    z-index: 1;
    animation: kingdomMapFloat 12s ease-in-out infinite;
}

.kingdom-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff 0%, #fbbf24 35%, #f97316 80%);
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 18px rgba(251, 191, 36, 0.9),
        0 0 40px rgba(249, 115, 22, 0.7);
    animation: kingdomBlink 1.4s ease-out infinite;
    z-index: 2;
}

.kingdom-map-pin.pin-1 {
    top: 38%;
    left: 60%;
    animation-delay: 0.2s;
}

.kingdom-map-pin.pin-2 {
    top: 60%;
    left: 62%;
    animation-delay: 0.45s;
}

.kingdom-map-pin.pin-3 {
    top: 45%;
    left: 40%;
    animation-delay: 0.7s;
}

.kingdom-map-pin.pin-4 {
    top: 70%;
    left: 48%;
    animation-delay: 0.95s;
}

.kingdom-map-pin.pin-5 {
    top: 30%;
    left: 47%;
    animation-delay: 1.2s;
}

@keyframes kingdomBlink {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
        box-shadow:
            0 0 0 rgba(251, 191, 36, 0.0),
            0 0 0 rgba(249, 115, 22, 0.0);
    }
    40% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
        box-shadow:
            0 0 20px rgba(251, 191, 36, 0.9),
            0 0 45px rgba(249, 115, 22, 0.8);
    }
    80% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
        box-shadow:
            0 0 14px rgba(251, 191, 36, 0.7),
            0 0 30px rgba(249, 115, 22, 0.5);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
        box-shadow:
            0 0 0 rgba(251, 191, 36, 0.0),
            0 0 0 rgba(249, 115, 22, 0.0);
    }
}

@keyframes kingdomGlowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

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

@media (max-width: 992px) {
    .kingdom-map-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kingdom-map-content {
        margin: 0 auto 32px;
    }
}

@media (max-width: 600px) {
    .kingdom-map-card {
        padding: 20px;
        border-radius: 24px;
    }
}

/* Brands Section */
.brands-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.brands-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 50%, rgba(0, 102, 255, 0.03) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.brands-section .container {
    position: relative;
    z-index: 1;
}

.brands-scroll {
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 60px 0;
    margin-top: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
}

.brands-scroll::-webkit-scrollbar {
    display: none;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: fit-content;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.brands-track-1 {
    animation: scrollBrandsRight 60s linear infinite;
}

.brands-track-2 {
    animation: scrollBrandsLeft 60s linear infinite;
    margin-top: 40px;
    position: relative;
    display: flex;
}

.brand-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scrollBrandsRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollBrandsLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 50%, rgba(0, 102, 255, 0.03) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 32px 24px 24px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 50%, rgba(0, 102, 255, 0.03) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    margin-bottom: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 102, 255, 0.08);
    border: 2px solid rgba(0, 102, 255, 0.12);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item.active {
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.2), 0 0 0 1px rgba(0, 102, 255, 0.25);
    border-color: rgba(0, 102, 255, 0.4);
    transform: scale(1.02);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Emergency Section */
.emergency-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1929 0%, #0066ff 30%, #00d4ff 70%, #0a1929 100%);
    background-size: 200% 200%;
    animation: animated-hero-bg 30s ease-in-out infinite;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 3, 69, 0.4) 0%, rgba(23, 162, 184, 0.2) 50%, rgba(4, 3, 69, 0.4) 100%);
    background-size: 200% 200%;
    animation: animated-hero-bg 30s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.emergency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.emergency-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 96px;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 1;
}

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

.emergency-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.emergency-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

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

/* Service Areas Section */
.areas-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 30s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: areasGlow 15s ease-in-out infinite alternate;
}

.areas-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.04) 0%, rgba(0, 212, 255, 0.03) 50%, rgba(0, 102, 255, 0.04) 100%);
    background-size: 200% 200%;
    animation: animated-section-bg 30s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes areasGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.areas-section .container {
    position: relative;
    z-index: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.area-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 72px 56px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 102, 255, 0.15);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: areaCardFadeIn 0.8s ease forwards;
}

.area-card:nth-child(1) {
    animation-delay: 0.1s;
}

.area-card:nth-child(2) {
    animation-delay: 0.2s;
}

.area-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes areaCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066ff, #00d4ff, #0066ff);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 3s ease infinite;
}

.area-card:hover::before {
    transform: scaleX(1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.area-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.area-card:hover::after {
    opacity: 1;
    animation: areaCardShine 2s ease-in-out infinite;
}

@keyframes areaCardShine {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.area-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 35px 100px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 80px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(255, 255, 255, 1);
}

.area-card i {
    font-size: 64px;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #0066ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    display: inline-block;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 16px rgba(0, 102, 255, 0.25));
    position: relative;
    z-index: 2;
    animation: iconGradient 4s ease infinite;
}

@keyframes iconGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.area-card:hover i {
    transform: scale(1.2) rotate(8deg) translateY(-4px);
    filter: drop-shadow(0 12px 28px rgba(0, 102, 255, 0.4));
}

.area-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.area-card:hover h3 {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: color 0.5s ease;
}

.area-card:hover p {
    color: #475569;
}

@media (max-width: 768px) {
    .areas-section {
        padding: 80px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }

    .area-card {
        padding: 56px 36px;
        border-radius: 32px;
    }

    .area-card i {
        font-size: 56px;
        margin-bottom: 24px;
    }

    .area-card h3 {
        font-size: 24px;
    }

    .area-card p {
        font-size: 15px;
    }

    .area-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Contact Details */
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-detail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.contact-detail:hover::before {
    transform: scaleY(1);
}

.contact-detail:hover {
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12), 0 0 0 1px rgba(0, 102, 255, 0.2);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.3);
}

.contact-detail i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3));
}

.contact-detail:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.4));
}

.contact-detail strong {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-detail p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .contact-wrapper {
        gap: 50px;
    }
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-top {
        gap: 20px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-contact,
    .btn-demo {
        padding: 10px 18px;
        font-size: 13px;
    }

    .language-switcher {
        padding: 8px 12px;
        min-width: 70px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 16px 0;
        gap: 16px;
    }

    .logo a {
        font-size: 22px;
    }

    .logo a i {
        font-size: 26px;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.96) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15), 0 0 0 1px rgba(0, 102, 255, 0.08);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-bottom: 2px solid rgba(0, 102, 255, 0.15);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .main-nav ul li {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 16px 24px;
        border-radius: 12px;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        background: rgba(0, 102, 255, 0.04);
        border: 2px solid transparent;
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                          linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        transition: all 0.3s ease;
        margin-bottom: 8px;
        position: relative;
        overflow: hidden;
    }

    /* Colorful backgrounds for each mobile menu item */
    .main-nav ul li:nth-child(1) a {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                          linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    }

    .main-nav ul li:nth-child(2) a {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                          linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
    }

    .main-nav ul li:nth-child(3) a {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                          linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.04) 100%);
    }

    .main-nav ul li:nth-child(4) a {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                          linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.04) 100%);
    }

    .main-nav ul li:nth-child(5) a {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%),
                          linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    }
    
    .main-nav a.active {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.12) 100%);
        border-color: var(--primary-color);
        color: var(--primary-color);
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2), 0 0 0 2px rgba(0, 212, 255, 0.1);
    }

    /* Colorful active states for each mobile menu item */
    .main-nav ul li:nth-child(1) a.active {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.12) 100%);
        border-color: #0066ff;
        color: #0066ff;
    }

    .main-nav ul li:nth-child(2) a.active {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.12) 100%);
        border-color: #6366f1;
        color: #6366f1;
    }

    .main-nav ul li:nth-child(3) a.active {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.12) 100%);
        border-color: #10b981;
        color: #10b981;
    }

    .main-nav ul li:nth-child(4) a.active {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.12) 100%);
        border-color: #f59e0b;
        color: #f59e0b;
    }

    .main-nav ul li:nth-child(5) a.active {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.12) 100%);
        border-color: #ef4444;
        color: #ef4444;
    }

    html[dir="rtl"] .main-nav a {
        text-align: right;
    }

    .main-nav a::before {
        display: none;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        border-color: var(--primary-color);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15), 0 0 0 2px rgba(0, 212, 255, 0.1);
    }

    /* Colorful hover states for each mobile menu item */
    .main-nav ul li:nth-child(1) a:hover {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 212, 255, 0.1) 100%);
        border-color: #0066ff;
        color: #0066ff;
    }

    .main-nav ul li:nth-child(2) a:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
        border-color: #6366f1;
        color: #6366f1;
    }

    .main-nav ul li:nth-child(3) a:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.1) 100%);
        border-color: #10b981;
        color: #10b981;
    }

    .main-nav ul li:nth-child(4) a:hover {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.1) 100%);
        border-color: #f59e0b;
        color: #f59e0b;
    }

    .main-nav ul li:nth-child(5) a:hover {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(220, 38, 38, 0.1) 100%);
        border-color: #ef4444;
        color: #ef4444;
    }

    html[dir="rtl"] .main-nav a:hover {
        transform: translateX(-4px);
    }

    .header-actions {
        gap: 6px;
    }

    .btn-contact,
    .btn-demo {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn-contact span,
    .btn-demo span {
        display: none;
    }

    .btn-contact i,
    .btn-demo i {
        margin: 0;
    }

    .language-switcher {
        padding: 8px 12px;
        min-width: 70px;
        font-size: 13px;
    }

    .language-switcher .lang-text {
        min-width: 24px;
        font-size: 12px;
    }

    .language-dropdown {
        min-width: 160px;
        right: 0;
    }

    html[dir="rtl"] .language-dropdown {
        right: auto;
        left: 0;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .featured-section,
    .products-section,
    .benefits-section,
    .contact-section {
        padding: 60px 0;
    }

    .featured-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .category-tabs {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
    }

    .footer-top {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .footer-logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-tagline {
        min-width: auto;
        max-width: 100%;
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .featured-card,
    .benefit-item,
    .contact-form {
        padding: 32px 24px;
    }

    .footer-logo-wrapper {
        gap: 20px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-info h2 {
        font-size: 32px;
    }
}

/* RTL Support for Icons - Enhanced */
/* Arrow Icons - Flip direction */
html[dir="rtl"] .fa-arrow-right::before {
    content: "\f060"; /* fa-arrow-left */
}

html[dir="rtl"] .fa-chevron-right::before {
    content: "\f053"; /* fa-chevron-left */
}

html[dir="rtl"] .fa-chevron-down {
    transform: scaleX(-1);
}

/* Hero Buttons - Icons positioning */
html[dir="rtl"] .hero-buttons .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn-hero i.fa-arrow-right {
    order: -1;
    margin-left: 0 !important;
    margin-right: 12px !important;
}

html[dir="rtl"] .btn-hero i.fa-phone {
    order: -1;
    margin-left: 0 !important;
    margin-right: 8px !important;
}

html[dir="rtl"] .hero-buttons .btn .btn-shine {
    left: auto;
    right: -100%;
}

/* Link Arrow Icons - Enhance existing rules */
html[dir="rtl"] .link-arrow {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .link-arrow i.fa-arrow-right {
    margin-left: 0 !important;
    margin-right: 8px !important;
    order: -1;
    transform: scaleX(-1) !important;
}

html[dir="rtl"] .link-arrow:hover i.fa-arrow-right {
    transform: scaleX(-1) translateX(6px) !important;
}

/* Contact Detail Icons - Already handled but ensure */
html[dir="rtl"] .contact-detail {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-detail i {
    margin-left: 16px !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .contact-feature {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-feature i {
    margin-left: 12px !important;
    margin-right: 0 !important;
}

/* FAQ Chevron Icons */
html[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
}

html[dir="rtl"] .faq-question i.fa-chevron-down {
    margin-left: 0 !important;
    margin-right: auto !important;
    order: -1;
}

/* Language Switcher Icons */
html[dir="rtl"] .language-switcher {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-switcher i.fa-chevron-down {
    margin-left: 8px !important;
    margin-right: 0 !important;
    order: -1;
}

html[dir="rtl"] .language-switcher i.fa-globe {
    margin-left: 0 !important;
    margin-right: 8px !important;
}

/* Footer Icons */
html[dir="rtl"] .footer-section ul li {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .footer-section ul li i {
    margin-left: 8px !important;
    margin-right: 0 !important;
    order: -1;
}

/* Testimonial Icons */
html[dir="rtl"] .testimonial-rating {
    flex-direction: row-reverse;
}

html[dir="rtl"] .testimonial-rating i {
    margin-left: 4px !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .testimonial-rating i:last-child {
    margin-left: 0 !important;
}

/* Service List Icons */
html[dir="rtl"] .service-list li {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .service-list li i {
    margin-left: 12px !important;
    margin-right: 0 !important;
    order: -1;
}

/* Pricing Features Icons */
html[dir="rtl"] .pricing-features li {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .pricing-features li i {
    margin-left: 12px !important;
    margin-right: 0 !important;
    order: -1;
}

/* Emergency Section Icons */
html[dir="rtl"] .emergency-content {
    text-align: right;
}

html[dir="rtl"] .emergency-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .emergency-buttons .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .emergency-buttons .btn i {
    order: -1;
    margin-left: 0 !important;
    margin-right: 8px !important;
}

/* Header Actions - Buttons */
html[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-actions .btn-contact,
html[dir="rtl"] .header-actions .btn-demo {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-actions .btn-contact i,
html[dir="rtl"] .header-actions .btn-demo i {
    order: -1;
    margin-left: 0 !important;
    margin-right: 8px !important;
}

/* Form Submit Button */
html[dir="rtl"] .btn-submit {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn-submit i.fa-paper-plane {
    order: -1;
    margin-left: 0 !important;
    margin-right: 8px !important;
}

/* Mobile Menu Toggle */
html[dir="rtl"] .mobile-menu-toggle {
    margin-left: 0;
    margin-right: auto;
}

/* Process Step Icons */
html[dir="rtl"] .process-step {
    text-align: right;
}

html[dir="rtl"] .step-icon {
    margin-left: auto;
    margin-right: 0;
}

/* Benefit Item Icons */
html[dir="rtl"] .benefit-item {
    text-align: right;
}

html[dir="rtl"] .benefit-icon {
    margin-left: auto;
    margin-right: 0;
}

/* Featured Card Icons */
html[dir="rtl"] .featured-icon {
    margin-left: auto;
    margin-right: 0;
}

/* Area Card Icons */
html[dir="rtl"] .area-card {
    text-align: right;
}

html[dir="rtl"] .area-card i {
    margin-left: auto;
    margin-right: 0;
}

/* Brand Item Icons */
html[dir="rtl"] .brand-item {
    text-align: right;
}

html[dir="rtl"] .brand-item i {
    margin-left: auto;
    margin-right: 0;
}
