/* =====================================================
   الفتح لغرف التبريد - Main Stylesheet (Premium v2)
   ===================================================== */

:root {
    --blue-900: #0D47A1;
    --blue-800: #1565C0;
    --blue-700: #1976D2;
    --blue-600: #1E88E5;
    --blue-500: #2196F3;
    --blue-100: #BBDEFB;
    --blue-50: #E3F2FD;
    --orange-900: #BF360C;
    --orange-800: #D84315;
    --orange-700: #E65100;
    --orange-600: #F57C00;
    --orange-500: #FF9800;
    --orange-100: #FFE0B2;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #616161;
    --gray-500: #9E9E9E;
    --gray-300: #E0E0E0;
    --gray-100: #F5F5F5;
    --gray-50: #FAFAFA;
    --white: #FFFFFF;
    --bg: #F4F7FC;
    --primary: var(--blue-800);
    --primary-light: var(--blue-600);
    --accent: var(--orange-700);
    --accent-light: var(--orange-600);
    --text: var(--gray-900);
    --text-light: var(--gray-700);
    --font-main: 'Cairo', 'Tajawal', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --nav-height: 76px;
}

[data-theme="dark"] {
    --gray-900: #f4f7fc;
    --gray-800: #e0e0e0;
    --gray-700: #bbbbbb;
    --gray-500: #888888;
    --gray-300: #3a3a4c;
    --gray-100: #222230;
    --gray-50: #1a1a2e;
    --white: #141420;
    --bg: #0f0f18;
    --text: #f4f7fc;
    --text-light: #bbbbbb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .6);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s ease, color 0.4s ease
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    max-width: 100%
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.navbar .container {
    overflow: visible;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.35
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700
}

h4 {
    font-size: 1.1rem;
    font-weight: 600
}

.section {
    padding: 90px 0
}

.section-header {
    text-align: center;
    margin-bottom: 55px
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    display: inline-block
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1;
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: var(--transition)
}

.btn:hover::before {
    opacity: 1
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 18px rgba(21, 101, 192, .3)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 101, 192, .4)
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    box-shadow: 0 4px 18px rgba(230, 81, 0, .3)
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, .4)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white)
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50px
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .4)
}

.btn-call {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    border-radius: 50px
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-100);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.value-card h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- FAQ System --- */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    font-size: 0.8rem;
    transition: var(--transition);
    opacity: 0.6;
}

.faq-item.active {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
    background: var(--blue-50);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* === TOPBAR === */
.topbar {
    background: linear-gradient(135deg, var(--blue-900), var(--gray-900));
    color: var(--white);
    padding: 10px 0;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.topbar-contact {
    display: flex;
    gap: 20px;
    align-items: center
}

.topbar-contact a {
    color: rgba(255, 255, 255, .85);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px
}

.topbar-contact a:hover {
    color: var(--orange-500)
}

.topbar-sep {
    color: rgba(255, 255, 255, .2)
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px
}

.topbar-hours {
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 6px
}

.topbar-hours i {
    color: var(--orange-500)
}

.topbar-social {
    display: flex;
    gap: 6px
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    transition: var(--transition)
}

.topbar-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1)
}

@media(max-width:768px) {
    .topbar {
        display: none
    }
}

/* === PREMIUM NAVBAR === */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
    transition: var(--transition)
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow-md)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 16px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.nav-logo img {
    height: 48px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.nav-logo-text {
    display: flex;
    flex-direction: column
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    white-space: nowrap
}

.logo-slogan {
    font-size: .7rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: .5px
}

/* Nav Menu - Desktop (inside navbar) */
.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center
}

/* Nav Menu - Mobile Sidebar (outside navbar, direct child of body) */
.nav-menu:not(.nav-menu-desktop) {
    display: none
}

.mobile-menu-header,
.m-menu-divider,
.m-menu-contact,
.m-menu-social {
    display: none;
}

.nav-link {
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.nav-icon {
    font-size: .75rem;
    opacity: .6;
    transition: var(--transition)
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    opacity: 1
}

.dd-arrow {
    font-size: .55rem;
    margin-right: 2px;
    transition: var(--transition)
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(21, 101, 192, .06)
}

.nav-link.active {
    font-weight: 700
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 18px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px
}

/* === REFINED WORLD-CLASS MEGA MENU === */
.mega-menu {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%) translateY(15px);
    width: 1000px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    min-height: 420px;
}

/* Left Column: Categories */
.mega-cats-col {
    background: #f8fafd;
    padding: 25px;
    border-left: 1px solid var(--gray-100);
}

.mega-cats-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-cat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    transition: 0.3s;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
}

.mega-cat-btn:hover,
.mega-cat-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.mega-cat-btn i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.7;
}

/* Middle Column: Dynamic Content (Subcats or Services) */
.mega-main-col {
    padding: 30px;
}

.mega-grid-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--blue-50);
    padding-bottom: 12px;
}

.mega-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mega-svc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    transition: 0.3s;
    color: var(--text-light);
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.mega-svc-link:hover {
    background: var(--blue-50);
    color: var(--primary);
    border-color: var(--blue-100);
}

.mega-svc-link i {
    font-size: 0.8rem;
    color: var(--accent);
}

/* Right Column: Featured */
.mega-featured-col {
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-mini-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.featured-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fmc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.9), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.fmc-overlay strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.fmc-overlay p {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* === RFQ MODAL GLASSMORPHISM === */
/* === RFQ MODAL PREMIUM v3 (World Class) === */
.rfq-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rfq-modal.active {
    opacity: 1;
    visibility: visible;
}

.rfq-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 71, 161, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.rfq-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.rfq-modal.active .rfq-container {
    transform: scale(1) translateY(0);
}

.rfq-header-premium {
    background: linear-gradient(135deg, var(--primary), var(--blue-800));
    padding: 40px 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.rfq-header-content {
    position: relative;
    z-index: 2;
}

.rfq-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.rfq-header-premium h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.rfq-header-premium p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 450px;
}

.rfq-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.rfq-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 10;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.rfq-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.rfq-body-premium {
    padding: 40px 35px;
}

.rfq-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.rfq-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfq-field-wrap label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--blue-900);
}

.rfq-full-width {
    grid-column: span 2;
}

.rfq-input-icon {
    position: relative;
}

.rfq-input-icon i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
    transition: 0.3s;
}

.rfq-input-icon.align-top i {
    top: 20px;
    transform: none;
}

.rfq-input-v3 {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border-radius: 15px;
    border: 2px solid #f0f2f5;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: 0.3s;
    font-family: inherit;
}

.rfq-input-v3:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.08);
}

.rfq-input-v3:focus+i {
    color: var(--accent);
}

.rfq-footer {
    border-top: 1px solid #f0f2f5;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rfq-trust-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rfq-trust-note i {
    color: #2e7d32;
}

.rfq-submit-btn {
    padding: 16px 35px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--accent), #e65100);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(230, 81, 0, 0.3);
}

.rfq-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 81, 0, 0.4);
}

.rfq-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.rfq-status-v3 {
    margin-top: 20px;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    display: none;
}

.rfq-status-v3.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.rfq-status-v3.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

@media (max-width: 768px) {
    .rfq-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rfq-full-width {
        grid-column: span 1;
    }

    .rfq-footer {
        flex-direction: column;
        text-align: center;
    }

    .rfq-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .rfq-header-premium {
        padding: 50px 25px 30px;
    }

    .rfq-body-premium {
        padding: 30px 25px;
    }
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: .82rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(37, 211, 102, .25)
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
}

.nav-call-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(230, 81, 0, .2)
}

.nav-call-btn:hover {
    transform: scale(1.1)
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition)
}

/* Premium Mobile Navigation */
.nav-sidebar,
.nav-overlay {
    display: none;
}

/* Hide by default on desktop */

@media(max-width:991px) {

    /* Show mobile elements */
    .nav-sidebar {
        display: flex;
        visibility: visible;
    }

    .nav-overlay {
        display: block;
    }

    .nav-menu-desktop {
        display: none !important;
    }

    /* Mobile Sidebar - now outside navbar, direct child of body */
    .nav-sidebar {
        position: fixed;
        top: 0;
        right: -320px;
        width: 310px;
        height: 100vh;
        background: var(--white);
        z-index: 9999;
        transition: .5s cubic-bezier(.4, 0, .2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-xl);
        visibility: hidden;
        /* Hide by default on desktop */
    }

    .nav-sidebar.open {
        right: 0;
        visibility: visible;
    }

    .sidebar-header {
        padding: 25px 20px;
        background: var(--blue-50);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--blue-100);
        flex-shrink: 0;
    }

    .m-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .m-menu-logo img {
        height: 45px;
        width: auto;
    }

    .m-logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .m-name {
        font-weight: 800;
        color: var(--primary);
        font-size: 1.1rem;
    }

    .m-slogan {
        font-size: 0.7rem;
        color: var(--text-light);
    }

    .close-menu-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--white);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
        transition: .3s;
    }

    .close-menu-btn:active {
        transform: scale(0.9);
    }

    .sidebar-body {
        flex: 1;
        overflow-y: auto;
        padding-top: 10px;
        scrollbar-width: thin;
        scrollbar-color: var(--blue-100) transparent;
    }

    .sidebar-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sidebar-nav-list .nav-link {
        padding: 14px 20px;
        margin: 4px 12px;
        border-radius: var(--radius-md);
        font-size: 0.95rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        background: transparent;
        color: var(--text);
        gap: 12px;
        transition: 0.3s;
    }

    .sidebar-nav-list .nav-icon {
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
        color: var(--primary);
        opacity: 0.8;
    }

    .sidebar-nav-list .nav-link:hover,
    .sidebar-nav-list .nav-link.active {
        background: var(--blue-50);
        color: var(--primary);
    }

    /* Mobile Dropdowns */
    .sidebar-nav-list .nav-dropdown.open>.nav-link {
        background: var(--blue-50);
        color: var(--primary);
    }

    .sidebar-nav-list .dd-arrow {
        margin-right: auto;
        transition: 0.3s;
    }

    .sidebar-nav-list .nav-dropdown.open .dd-arrow {
        transform: rotate(180deg);
    }

    /* Force Reset Mega Menu for Mobile Sidebar */
    .sidebar-nav-list .mega-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .sidebar-nav-list .mega-menu-inner {
        display: block !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    .sidebar-nav-list .nav-dropdown.open .mega-menu {
        display: block !important;
    }

    .sidebar-services-accordion {
        display: block !important;
        padding: 5px 10px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .s-accordion-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        margin-bottom: 5px;
    }

    .s-accordion-item:last-child {
        border: none;
    }

    .s-accordion-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 10px;
        transition: 0.3s;
        color: var(--primary);
        font-weight: 800;
        font-size: 0.95rem;
    }

    .sac-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sac-arrow {
        font-size: 0.7rem;
        opacity: 0.4;
        transition: 0.3s;
    }

    .s-accordion-link:active {
        background: var(--blue-50);
    }

    .s-accordion-sub {
        display: flex;
        flex-direction: column;
        padding: 0 25px 10px 0;
        position: relative;
    }

    .s-sub-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        border-radius: 8px;
        color: var(--text-light);
        font-size: 0.9rem;
        font-weight: 600;
        transition: 0.3s;
    }

    .s-sub-link i {
        font-size: 0.8rem;
        color: var(--accent);
        opacity: 0.8;
    }

    .s-sub-link:active {
        background: var(--blue-50);
        color: var(--primary);
    }

    .s-view-all-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        margin-top: 10px;
        border-radius: 15px;
        background: var(--primary);
        color: #fff;
        font-weight: 800;
        font-size: 0.85rem;
        box-shadow: 0 8px 20px rgba(13, 71, 161, 0.2);
    }

    .sidebar-contact-info {
        padding: 20px 12px;
    }

    .sidebar-footer {
        padding: 20px;
        background: var(--white);
        border-top: 1px solid var(--gray-100);
        flex-shrink: 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
    }

    .m-menu-divider {
        padding: 10px 20px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.5px;
        display: block;
    }

    .social-links-m {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-links-m a {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--blue-50);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid var(--blue-100);
    }

    .social-links-m a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(21, 101, 192, 0.2);
    }

    .m-contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        border-radius: 12px;
        background: var(--gray-50);
        color: var(--text);
        transition: .3s;
        margin-bottom: 8px;
    }

    .m-contact-item i {
        font-size: 1.2rem;
        color: var(--primary);
    }

    .m-contact-item div {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }

    .m-contact-item span {
        font-size: 0.75rem;
        color: var(--text-light);
    }

    .m-contact-item strong {
        font-size: 0.95rem;
        font-weight: 800;
    }

    .m-contact-item.wa {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .m-contact-item.wa i {
        color: #2e7d32;
    }

    /* Hamburger & Overlay */
    .hamburger {
        display: flex;
        z-index: 10000;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px)
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(13, 71, 161, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: .4s;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-cta-btn span {
        display: none
    }

    .nav-cta-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 50%
    }

    .nav-call-btn {
        width: 42px;
        height: 42px;
    }
}

/* === THEME TOGGLE BUTTON === */
.theme-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    cursor: pointer;
    transition: var(--transition)
}

.theme-toggle:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.15)
}

.mobile-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 2px solid var(--gray-300);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition)
}

.mobile-theme-toggle:hover {
    background: var(--primary);
    color: #fff
}

@media(max-width:768px) {
    .mobile-theme-toggle {
        display: flex
    }
}

/* === DARK MODE OVERRIDES === */
[data-theme="dark"] .navbar {
    background: rgba(20, 20, 32, .92);
    backdrop-filter: blur(20px)
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(20, 20, 32, .97)
}

[data-theme="dark"] .nav-link {
    color: #bbb
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: #64B5F6;
    background: rgba(100, 181, 246, .1)
}

[data-theme="dark"] .hamburger span {
    background: #64B5F6
}

[data-theme="dark"] .mega-menu {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, .08)
}

[data-theme="dark"] .mega-col {
    border-left-color: rgba(255, 255, 255, .06)
}

[data-theme="dark"] .mega-link:hover {
    background: rgba(255, 255, 255, .05)
}

[data-theme="dark"] .mega-link strong {
    color: #e0e0e0
}

[data-theme="dark"] .mega-cta-col {
    background: linear-gradient(135deg, #1a1a3e, #222244)
}

[data-theme="dark"] .logo-name {
    color: #64B5F6
}

[data-theme="dark"] .nav-menu:not(.nav-menu-desktop) {
    background: #141420
}

[data-theme="dark"] .footer {
    background: #0a0a14
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1)
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

/* Slide variants */
.animate-on-scroll[data-anim="fade-up"] {
    transform: translateY(50px)
}

.animate-on-scroll[data-anim="fade-right"] {
    transform: translateX(-50px)
}

.animate-on-scroll[data-anim="fade-left"] {
    transform: translateX(50px)
}

.animate-on-scroll[data-anim="scale"] {
    transform: scale(0.85)
}

.animate-on-scroll[data-anim="fade-up"].visible,
.animate-on-scroll[data-anim="fade-right"].visible,
.animate-on-scroll[data-anim="fade-left"].visible {
    transform: translate(0)
}

.animate-on-scroll[data-anim="scale"].visible {
    transform: scale(1)
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(21, 101, 192, .3)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(21, 101, 192, 0)
    }
}

/* === FAQ ACCORDION === */
.faq-section {
    background: var(--gray-50)
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-300);
    overflow: hidden;
    transition: var(--transition)
}

.faq-item:hover {
    border-color: var(--blue-100)
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(21, 101, 192, .1)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
    transition: var(--transition);
    gap: 12px
}

.faq-question:hover {
    color: var(--primary)
}

.faq-question i {
    transition: transform .3s ease;
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0
}

.faq-item.open .faq-question i {
    transform: rotate(180deg)
}

.faq-item.open .faq-question {
    color: var(--primary);
    background: var(--blue-50)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s ease
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: .95rem;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100)
}

/* === LIGHTBOX v2 === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease
}

.lightbox.active {
    opacity: 1;
    visibility: visible
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transition: opacity .3s ease
}

.lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .25);
    transform: scale(1.1)
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10
}

.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-50%) scale(1.1)
}

.lb-prev {
    right: 24px
}

.lb-next {
    left: 24px
}

/* === PROJECTS SLIDER === */
.projects-slider-wrap {
    position: relative;
    overflow: hidden
}

.ps-track {
    display: flex;
    gap: 24px;
    transition: .5s cubic-bezier(.4, 0, .2, 1);
    direction: rtl
}

.ps-card {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0
}

@media(max-width:991px) {
    .ps-card {
        min-width: calc(50% - 12px)
    }
}

@media(max-width:600px) {
    .ps-card {
        min-width: 100%
    }
}

.ps-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px
}

.ps-prev,
.ps-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition)
}

.ps-prev:hover,
.ps-next:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1)
}

.ps-dots {
    display: flex;
    gap: 8px;
    align-items: center
}

.ps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition)
}

.ps-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px
}

/* === FILTER BAR v2 === */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--text-light);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.filter-btn i {
    font-size: .8rem;
    opacity: .6;
    transition: var(--transition)
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--blue-50)
}

.filter-btn:hover i {
    opacity: 1
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(21, 101, 192, .3)
}

.filter-btn.active i {
    opacity: 1
}

/* === SERVICES v3 (Enhanced Cards) === */
.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px
}

.service-card-v3 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    width: 100%
}

.service-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl)
}

.sc3-img {
    height: 200px;
    overflow: hidden;
    position: relative
}

.sc3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease
}

.service-card-v3:hover .sc3-img img {
    transform: scale(1.08)
}

.sc3-icon {
    position: absolute;
    top: 170px;
    /* تم رفعه للأعلى قليلاً ليتناسب مع الصورة */
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(21, 101, 192, 0.3);
    border: 4px solid var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-v3:hover .sc3-icon {
    background: var(--accent);
    /* تغيير اللون للأصفر عند التمرير */
    color: var(--white);
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(21, 101, 192, 0.4);
}

.sc3-body {
    padding: 45px 24px 24px
}

.sc3-body h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 700
}

.sc3-body p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 14px
}

.sc3-line {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    margin-bottom: 16px
}

.sc3-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition)
}

.sc3-link:hover {
    gap: 10px;
    color: var(--accent)
}

/* === PAGE BANNER VARIANTS === */
.page-banner {
    position: relative;
    padding: 100px 0 50px;
    text-align: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0
}

.page-banner .container {
    position: relative;
    z-index: 2
}

.page-banner h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
    margin-bottom: 12px
}

.page-banner p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px
}

.page-banner .breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: .9rem
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, .7);
    transition: var(--transition)
}

.page-banner .breadcrumb a:hover {
    color: var(--orange-500)
}

.page-banner .breadcrumb span {
    color: rgba(255, 255, 255, .5)
}

/* === RESPONSIVE OVERRIDES === */
@media(max-width:768px) {

    /* Global Overflow Fix */
    body,
    html {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }

    /* Logo and Header */
    .logo-name {
        font-size: 1rem;
        white-space: normal;
    }

    .nav-inner {
        gap: 10px;
        padding: 0 5px;
    }

    /* Contact form */
    .contact-form-grid {
        grid-template-columns: 1fr !important
    }

    /* Form + Map grid */
    [style*="grid-template-columns:1.2fr 1fr"] {
        grid-template-columns: 1fr !important
    }

    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important
    }

    /* Services v3 - Improved for Mobile */
    .services-grid-v3 {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }

    .service-card-v3 {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .sc3-img {
        height: 180px;
    }

    .sc3-icon {
        top: 150px;
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }

    /* تعديل مكان وحجم الأيقونة في الموبايل */
    .sc3-body {
        padding: 40px 20px 20px;
    }

    /* زيادة الحشو العلوي لمنع التداخل مع الأيقونة */

    /* Lightbox arrows */
    .lb-prev,
    .lb-next {
        width: 40px;
        height: 40px;
        font-size: 1rem
    }

    .lb-prev {
        right: 12px
    }

    .lb-next {
        left: 12px
    }

    /* Section padding */
    .section {
        padding: 50px 0
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* FAQ adjust */
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 20px 15px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Contact Page Adjustments */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    [style*="display:grid;grid-template-columns:1.2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="padding:50px 40px"] {
        padding: 30px 20px !important;
    }

    [style*="min-height:500px"] {
        min-height: 350px !important;
    }

    [style*="grid-template-columns:1fr 1fr;gap:16px"] {
        grid-template-columns: 1fr !important;
    }

    .filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 5px;
        gap: 10px;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex: 0 0 auto;
        min-width: auto;
        padding: 10px 20px;
        font-size: 0.85rem;
        border-width: 1px;
    }

    /* Filter bar */
    .filter-bar {
        gap: 8px
    }

    .filter-tabs {
        gap: 8px;
        margin-bottom: 30px !important;
    }

    .filter-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: .85rem
    }

    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
}

@media(max-width:480px) {
    .counter-grid {
        gap: 15px;
        grid-template-columns: 1fr 1fr;
    }

    .counter-item {
        padding: 10px;
    }

    .ps-card {
        min-width: 100% !important
    }

    .page-banner {
        padding: 70px 0 35px
    }

    .page-banner h1 {
        font-size: 1.5rem
    }

    .hero-v4-content h1 {
        font-size: 2rem;
    }

    .hero-v4-content .hero-subtitle {
        font-size: 1rem;
    }

    /* Services Mobile Professional Look */
    .services-grid-v3 {
        grid-template-columns: 1fr;
    }

    .service-card-v3 {
        border-radius: var(--radius-md);
    }
}

/* === SERVICES PAGE v2 (GRID) === */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-v2 {
    background: #fff;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    position: relative;
    border: 1px solid var(--gray-100);
    height: 100%;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.scv2-img {
    height: 220px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.scv2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-v2:hover .scv2-img img {
    transform: scale(1.1) rotate(1deg);
}

.scv2-icon {
    position: absolute;
    top: 195px;
    left: 25px;
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    border: 5px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.service-card-v2:hover .scv2-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.scv2-content {
    padding: 40px 25px 25px;
}

.scv2-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.scv2-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.scv2-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.scv2-link:hover {
    gap: 15px;
    color: var(--accent);
}

.mega-empty-state {
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    width: 100%;
}

.mega-empty-state i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: block;
}

/* =====================================================
   Premium Service Category Grid & Cards
   ===================================================== */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.service-card-premium {
    background: var(--white);
    border-radius: 30px;
    overflow: visible;
    /* Important for floating icon */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(13, 71, 161, 0.15);
    border-color: var(--primary-light);
}

.scp-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 30px 30px 20px 20px;
    z-index: 1;
}

.scp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-premium:hover .scp-img img {
    transform: scale(1.1);
}

.scp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.service-card-premium:hover .scp-overlay {
    opacity: 1;
}

.scp-btn {
    background: var(--white);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: 0.4s;
}

.service-card-premium:hover .scp-btn {
    transform: translateY(0);
}

/* Floating Icon - Outside the box effect */
.scp-icon-wrap {
    position: absolute;
    top: 210px;
    /* Offset to overlap image and content */
    right: 35px;
    width: 75px;
    height: 75px;
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(21, 101, 192, 0.35);
    border: 5px solid var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-premium:hover .scp-icon-wrap {
    transform: translateY(-8px) rotate(8deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 20px 45px rgba(230, 81, 0, 0.4);
}

.scp-content {
    padding: 55px 30px 30px;
    /* Extra top padding for the floating icon */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scp-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.scp-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.scp-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.scp-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.3s;
}

.scp-more:hover {
    gap: 18px;
    color: var(--accent);
}

@media (max-width: 991px) {
    .services-grid-premium {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .scp-icon-wrap {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        top: 205px;
        right: 25px;
    }

    .scp-content {
        padding: 45px 25px 25px;
    }
}

@media (max-width: 480px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .scp-img {
        height: 200px;
    }

    .scp-icon-wrap {
        top: 175px;
    }
}

/* ===== Partners Marquee ===== */
.partners-marquee {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.partners-marquee .section-header {
    margin-bottom: 50px;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 60px;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 60px;
    animation: scroll-marquee-rtl 40s linear infinite;
}

.marquee-item {
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px;
    background: transparent;
    margin: 10px 0;
}

.marquee-item:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll-marquee-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .partners-marquee {
        padding: 50px 0;
    }

    .marquee-item {
        width: 150px;
        height: 80px;
    }

    .marquee-wrapper {
        gap: 40px;
    }

    .marquee-content {
        gap: 40px;
    }
}

/* Services Slider Styles */
.services-slider-container {
    position: relative;
    padding: 20px 0 50px;
}

.services-swiper {
    padding: 10px 10px 60px !important;
}

.services-swiper .swiper-slide {
    height: auto;
}

.services-swiper .service-card-v3 {
    height: 100%;
    margin: 0;
}

/* Custom navigation for services */
.svc-next,
.svc-prev {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    color: var(--primary) !important;
    transition: 0.3s !important;
}

.svc-next:after,
.svc-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.svc-next:hover,
.svc-prev:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.svc-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 0.3;
}

.svc-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Modern Services Premium Styles */
.services-section-modern {
    padding: 80px 0;
    background: #fcfdfe;
}

.category-header-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-right: 5px solid var(--primary);
}

.cat-icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.cat-info-modern h2 {
    margin: 0;
    font-size: 1.9rem;
    color: var(--primary);
    font-weight: 800;
}

.cat-info-modern p {
    margin: 5px 0 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.scp-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.scp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.service-card-premium:hover .scp-img-wrap img {
    transform: scale(1.1) rotate(1deg);
}

.scp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
}

.scp-content-premium {
    padding: 30px;
}

.scp-icon-floating {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: -60px;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.service-card-premium:hover .scp-icon-floating {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

.scp-content-premium h3 {
    margin: 20px 0 12px;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.scp-content-premium p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 25px;
    height: 4.8em;
    overflow: hidden;
}

.scp-footer-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.scp-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: 0.3s;
}

.scp-btn-link i {
    font-size: 0.8rem;
    transition: 0.3s;
}

.scp-btn-link:hover {
    color: var(--accent);
}

.scp-btn-link:hover i {
    transform: translateX(-5px);
}

/* Benefits Upgrade */
.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item-modern {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.benefit-item-modern:hover {
    background: var(--primary);
    color: #fff !important;
}

.benefit-item-modern i {
    font-size: 1.4rem;
    color: var(--accent);
}

.benefit-item-modern:hover i {
    color: #fff;
}

.benefit-item-modern span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .cat-info-modern h2 {
        font-size: 1.5rem;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .category-header-modern {
        flex-direction: column;
        text-align: center;
    }
}


/* World-Class Service Glass Cards */
.service-glass-card {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sgc-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sgc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.sgc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.2) 60%, transparent);
    opacity: 0.8;
    transition: 0.6s;
}

.sgc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 35px;
    color: #fff;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(60px);
}

.sgc-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
    transition: 0.4s;
}

.sgc-number {
    position: absolute;
    top: 20px;
    left: 35px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

.sgc-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sgc-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(20px);
}

.sgc-footer {
    display: flex;
    align-items: center;
}

.sgc-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: #fff;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.sgc-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateX(-5px);
}

/* Hover Effects */
.service-glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(13, 71, 161, 0.3);
}

.service-glass-card:hover .sgc-image img {
    transform: scale(1.15);
}

.service-glass-card:hover .sgc-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.95), rgba(13, 71, 161, 0.4));
}

.service-glass-card:hover .sgc-content {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.2);
}

.service-glass-card:hover .sgc-content p {
    opacity: 1;
    transform: translateY(0);
}

.service-glass-card:hover .sgc-icon {
    transform: rotate(10deg) scale(1.1);
    background: #fff;
    color: var(--accent);
}

@media (max-width: 768px) {
    .service-glass-card {
        height: 400px;
    }

    .sgc-content {
        transform: translateY(0);
        padding: 25px;
        background: rgba(0, 0, 0, 0.3);
    }

    .sgc-content p {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Page Ultra Premium Styles */
.category-quick-nav {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.cqn-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none;
}

.cqn-wrapper::-webkit-scrollbar {
    display: none;
}

.cqn-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--gray-50);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: 0.3s;
    border: 1px solid transparent;
}

.cqn-item i {
    color: var(--primary);
}

.cqn-item:hover,
.cqn-item.active {
    background: var(--primary);
    color: #fff;
}

.cqn-item:hover i,
.cqn-item.active i {
    color: #fff;
}

.services-modern-page {
    padding: 80px 0;
    background: #fafbfc;
}

.modern-section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.mst-icon {
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.2);
}

.mst-label {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mst-text h2 {
    margin: 5px 0 0;
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 900;
}

.mst-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to left, var(--primary-light), transparent);
    opacity: 0.2;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

/* Service Glass Card v2 */
.service-glass-card-v2 {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.sgcv2-img {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.sgcv2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.sgcv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.sgcv2-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.sgcv2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.sgcv2-icon {
    width: 54px;
    height: 54px;
    background: #fff;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-top: -55px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    border: 3px solid #fff;
}

.sgcv2-tag {
    background: var(--blue-50);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
}

.sgcv2-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.sgcv2-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.88rem;
    margin-bottom: 20px;
    height: 3.2em;
    overflow: hidden;
}

.sgcv2-footer {
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.sgcv2-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.88rem;
}

.sgcv2-btn:hover {
    color: var(--accent);
}

.sgcv2-btn i {
    font-size: 0.75rem;
    transition: 0.3s;
}

.sgcv2-btn:hover i {
    transform: translateX(-5px);
}

.service-glass-card-v2:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.1);
}

.service-glass-card-v2:hover .sgcv2-img img {
    transform: scale(1.1) rotate(2deg);
}

.service-glass-card-v2:hover .sgcv2-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg);
}

/* Benefits Ultra */
.premium-tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.ultra-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ultra-benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ubc-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.ubc-text h4 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: var(--primary);
}

.ubc-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Image Stack */
.image-stack {
    position: relative;
    padding: 20px;
}

.image-stack .main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-2xl);
}

.experience-card {
    position: absolute;
    bottom: 50px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.4);
    z-index: 5;
    text-align: center;
    border: 5px solid #fff;
}

.ec-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.ec-text {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .ultra-benefits-grid {
        grid-template-columns: 1fr;
    }

    .category-quick-nav {
        top: 60px;
    }

    .experience-card {
        right: 20px;
        bottom: 20px;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   Language Switcher & LTR Support (Refined)
   ===================================================== */

.lang-switcher-wrap {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    z-index: 9999;
    vertical-align: middle;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-current img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    min-width: 130px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none !important;
    padding: 6px !important;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0 !important;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer;
    border-radius: 8px;
    color: #333 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: 0.2s;
    text-align: right;
    margin: 0 !important;
}

[dir="ltr"] .lang-dropdown li {
    text-align: left;
}

.lang-dropdown li:hover {
    background: var(--blue-50);
    color: var(--primary) !important;
}

.lang-dropdown li img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

/* LTR Fixes */
[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

[dir="ltr"] .nav-link i.dd-arrow {
    margin-right: 0;
    margin-left: 2px;
}

[dir="ltr"] .mega-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
}

[dir="ltr"] .nav-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

[dir="ltr"] .mega-cats-col {
    border-left: none;
    border-right: 1px solid var(--gray-100);
}

[dir="ltr"] .section-header h2::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

[dir="ltr"] .about-img-wrap {
    margin-left: 0;
    margin-right: 30px;
}

[dir="ltr"] .about-exp-badge {
    left: auto;
    right: -20px;
}

[dir="ltr"] .footer-col:not(:last-child) {
    border-right: none;
}

[dir="ltr"] .footer-links i {
    transform: rotate(180deg);
}

[dir="ltr"] .hero-badge i {
    margin-right: 8px;
    margin-left: 0;
}

[dir="ltr"] .lang-switcher-wrap {
    margin-right: 0;
    margin-left: 15px;
}

[dir="ltr"] .lang-dropdown {
    left: auto;
    right: 0;
}

/* Hide Google Translate Bar */
iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: none !important;
}

/* Mobile Language Switcher Styles */
.mobile-lang-switcher {
    padding: 20px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.m-lang-title {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
}

.m-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.m-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--gray-100);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.m-lang-btn.active {
    background: var(--blue-50);
    border-color: var(--primary);
    color: var(--primary);
}

.m-lang-btn img {
    width: 20px;
}

/* Component LTR Fixes */
[dir="ltr"] .about-exp-badge {
    left: auto;
    right: 20px;
}

[dir="ltr"] .types-list li {
    border-right: none;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

[dir="ltr"] .footer-title::after {
    right: auto;
    left: 0;
}

[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 4px;
}

[dir="ltr"] .scv2-icon {
    right: auto;
    left: 30px;
}

[dir="ltr"] .psc-featured-badge {
    right: auto;
    left: 14px;
}

[dir="ltr"] .ft-dot {
    margin-right: 0;
    margin-left: 0;
}

[dir="ltr"] .service-card::before {
    transform-origin: left;
}

[dir="ltr"] .whatsapp-float, 
[dir="ltr"] .call-float {
    left: auto;
    right: 24px;
}

[dir="ltr"] .whatsapp-tooltip {
    right: auto;
    left: 70px;
}

