/* ==========================================
   Ratib - Professional Recruitment Website
   Modern Design with Swiper & Animations
   ========================================== */

/* CSS Variables */
:root {
    --primary: #1a5f7a;
    --primary-dark: #134b61;
    --primary-light: #2a7d9d;
    --secondary: #c9a227;
    --secondary-dark: #a8841f;
    --accent: #e8b923;
    --success: #28a745;
    --dark: #1a1a2e;
    --gray-dark: #2d2d44;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f3f4f6;
    --lighter: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    text-align: center;
}

.loader-ring {
    width: 140px;
    height: 140px;
    border: 4px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-logo {
    height: 60px;
    position: relative;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ==========================================
   Top Info Bar
   ========================================== */
/* ==========================================
   Top Info Bar
   ========================================== */
.top-info-bar {
    background: #0B1C33;
    /* Dark Navy Blue */
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Right Side: Contact Info (in RTL) */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition);
}

.top-link-item i {
    color: var(--secondary);
    /* Gold/Yellow */
    font-size: 14px;
}

.top-link-item:hover {
    color: white;
}

/* Left Side: Social & License (in RTL) */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    color: white;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.license-badge i {
    color: var(--secondary);
    font-size: 14px;
}

.top-social-simple {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-social-simple a {
    color: white;
    font-size: 16px;
    opacity: 0.8;
    transition: var(--transition);
}

.top-social-simple a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ==========================================
   Main Navbar
   ========================================== */
.main-navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 55px;
}

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

.nav-link {
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 10px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.track-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.3);
}

.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-login-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid transparent;
}

.lang-switcher:hover {
    color: var(--primary);
    background: rgba(26, 95, 122, 0.05);
    border-color: rgba(26, 95, 122, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   Mobile Menu
   ========================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--light);
}

.mobile-logo {
    height: 45px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--primary);
    color: white;
}

.mobile-nav {
    padding: 20px;
    flex: 1;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: rgba(26, 95, 122, 0.05);
    color: var(--primary);
}

.mobile-nav i {
    width: 24px;
    text-align: center;
    color: var(--primary);
}

.mobile-contact {
    padding: 20px 24px;
    border-top: 1px solid var(--light);
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
}

/* ==========================================
   Hero Swiper Section
   ========================================== */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-swiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(8, 24, 40, 0.85) 0%, rgba(8, 24, 40, 0.7) 90%);
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, rgba(8, 24, 40, 0.9) 0%, rgba(10, 30, 50, 0.8) 90%);
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.slide-text {
    padding: 40px 0;
    max-width: 800px;
}

.centered-text {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-badge.gold {
    background: rgba(0, 0, 0, 0.2);
    color: var(--dark);
}

.slide-badge.green {
    background: rgba(255, 255, 255, 0.2);
}

.slide-badge i {
    color: var(--secondary);
}

.slide-title {
    color: white;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-title .highlight {
    color: var(--secondary);
    display: inline-block;
}

.slide-title .highlight.dark {
    color: var(--secondary);
    /* Keep gold/yellow for dark bg */
}

.slide-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.8;
}

.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-primary.dark {
    background: var(--primary);
    color: white;
}

.btn-primary.dark:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.4);
}

.btn-primary.green {
    background: white;
    color: var(--success);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-outline.dark {
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline.dark:hover {
    background: var(--dark);
    color: white;
}

.btn-outline.green {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline.green:hover {
    background: white;
    color: var(--success);
}

/* Hero Image */
.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-main-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 80px rgba(255, 255, 255, 0.2);
    }
}

.hero-float-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-float-card i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.hero-float-card span {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Swiper Navigation */
.hero-nav-next,
.hero-nav-prev {
    width: 60px;
    height: 60px;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 40px;
    transition: var(--transition);
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: transparent;
    color: var(--secondary);
    transform: scale(1.1);
}

.hero-nav-next::after,
.hero-nav-prev::after {
    display: none;
}

/* Bottom Curve */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 80px;
    /* Adjust based on preference */
    transform: scaleX(-1);
    /* Flip if needed for RTL feel or just design choice */
}

.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   Features Strip
   ========================================== */
.features-strip {
    background: #f9fafb;
    position: relative;
    z-index: 10;
    margin-top: -20px;
}

.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.feature-strip-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-strip-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-strip-text p {
    font-size: 13px;
    color: var(--gray);
}

/* ==========================================
   Section Common Styles
   ========================================== */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    padding-right: 16px;
}

.section-tag::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-tag.light::before {
    background: var(--secondary);
}

.section-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-heading.light {
    color: white;
}

.heading-highlight {
    color: var(--primary);
    display: block;
}

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

.section-header-center .section-tag {
    padding: 0;
}

.section-header-center .section-tag::before {
    display: none;
}

.section-header-center .section-tag::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--gray);
    font-size: 17px;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--lighter);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-image-main {
    position: relative;
    margin-bottom: 30px;
}

.about-img-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.about-img-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
    animation: slide-pattern 20s linear infinite;
}

@keyframes slide-pattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.about-experience {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background: var(--secondary);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

.about-stats-row {
    display: flex;
    gap: 20px;
}

.about-stat {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--gray);
}

.about-content-side {
    padding-left: 20px;
}

.about-text {
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.about-feature i {
    width: 24px;
    height: 24px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--success);
}

.about-feature span {
    color: var(--dark);
    font-weight: 500;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-about:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-modern {
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-modern:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card-modern:hover .service-card-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.service-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.service-card-bg {
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: 120px;
    font-weight: 900;
    color: var(--light);
    opacity: 0.5;
    line-height: 1;
    z-index: -1;
    transition: var(--transition);
}

.service-card-modern:hover .service-card-bg {
    color: rgba(26, 95, 122, 0.1);
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.why-us-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-10px);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
    flex-shrink: 0;
}

.why-feature-text h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.why-visual {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--lighter);
}

.testimonials-swiper {
    padding-bottom: 60px;
}

.testimonial-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card-modern:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

.testimonials-pagination {
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-light);
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Google Rating */
.google-rating-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 30px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-top: 50px;
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-left>i {
    font-size: 50px;
    color: #4285f4;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.rating-stars {
    color: var(--accent);
    font-size: 14px;
    margin: 4px 0;
}

.rating-count {
    font-size: 13px;
    color: var(--gray);
}

.rating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.rating-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-intro {
    color: var(--gray);
    font-size: 17px;
}

.faq-list-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-modern {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-modern.active {
    background: white;
    box-shadow: var(--shadow-md);
}

.faq-question-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}

.faq-question-modern i {
    color: var(--gray);
    transition: var(--transition);
}

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

.faq-answer-modern {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.9;
    transition: var(--transition-slow);
}

.faq-item-modern.active .faq-answer-modern {
    padding: 0 30px 24px 90px;
    max-height: 300px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.contact-form-side {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

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

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.submit-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

/* ==========================================
   Government Links
   ========================================== */
.gov-links-section {
    padding: 60px 0;
    background: var(--lighter);
}

.gov-header {
    text-align: center;
    margin-bottom: 30px;
}

.gov-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.gov-header p {
    color: var(--gray);
    font-size: 15px;
}

.gov-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gov-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gov-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gov-link-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.gov-link-card span {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 0;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about-modern p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social-modern {
    display: flex;
    gap: 12px;
}

.footer-social-modern a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: var(--transition);
}

.footer-social-modern a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links-modern h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links-modern ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links-modern a:hover {
    color: var(--secondary);
    padding-right: 5px;
}

.footer-newsletter-modern h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-newsletter-modern p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.footer-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
}

.footer-newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-form button:hover {
    background: var(--accent);
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payment span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-payment i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   WhatsApp Float
   ========================================== */
.whatsapp-float-modern {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: var(--dark);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float-modern:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 40px;
    }

    .hero-image-wrapper {
        width: 350px;
        height: 350px;
    }

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

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

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

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .track-btn span {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .slide-content .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px;
    }

    .slide-text {
        order: 1;
    }

    .slide-image {
        display: none;
    }

    .slide-desc {
        margin: 0 auto 32px;
    }

    .slide-btns {
        justify-content: center;
    }

    .about-wrapper,
    .why-us-wrapper,
    .contact-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-visual {
        display: none;
    }

    .google-rating-modern {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .rating-left {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }

    .slide-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 28px;
    }

    .features-strip-grid,
    .services-grid-modern {
        grid-template-columns: 1fr;
    }

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

    .contact-form-side {
        padding: 30px;
    }

    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 26px;
    }

    .slide-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-whatsapp,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-nav-next,
    .hero-nav-prev {
        display: none;
    }

    .whatsapp-float-modern {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Gov Links Section */
.gov-links-section {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.gov-header {
    text-align: center;
    margin-bottom: 40px;
}

.gov-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.gov-header p {
    color: var(--gray);
    font-size: 16px;
}

.gov-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gov-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
    /* Slower speed for better readability */
}

/* Pause animation on hover */
.gov-track:hover {
    animation-play-state: paused;
}

.gov-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 160px;
    /* Fixed height for consistency */
}

.gov-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.gov-link-card img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: grayscale(100%);
    /* Optional: grayscale until hover */
    transition: filter 0.3s ease;
}

.gov-link-card:hover img {
    filter: grayscale(0%);
}

.gov-link-card span {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }

    /* Shift by half width + half gap */
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Similar to user's border-slate-100 */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    /* Soft shadow base */
}

.step-card:hover {
    border-color: var(--secondary);
    /* border-accent */
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.step-number-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    /* RTL switch: in design it's left or right depending on lang. Let's inspect RTL. */
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Faint background number */
    transition: transform 0.4s ease;
    pointer-events: none;
    line-height: 1;
}

/* RTL adjustment if needed, assuming usage inside 'dir=rtl' */
html[dir="rtl"] .step-number-tag {
    right: auto;
    left: 20px;
}

.step-card:hover .step-number-tag {
    transform: scale(1.1);
    color: rgba(201, 162, 39, 0.1);
    /* Accent color on hover */
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    /* bg-slate-50 equivalent */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.step-card:hover .icon-wrapper {
    background: rgba(201, 162, 39, 0.1);
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--primary);
}

.step-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.step-card:hover h4 {
    color: var(--secondary);
}

.step-card p {
    color: #64748b;
    /* text-slate-500 */
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.header-divider {
    width: 80px;
    height: 6px;
    background: var(--secondary);
    margin: 24px auto 0;
    border-radius: 99px;
}

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

.mb-16 {
    margin-bottom: 4rem;
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(8, 24, 40, 0.85), rgba(8, 24, 40, 0.7));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    opacity: 0.5;
}

.breadcrumb a {
    color: white;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb li.active {
    color: var(--secondary);
    font-weight: 600;
}

/* ==========================================
   About Page Specifics
   ========================================== */
.about-page-section {
    padding: 100px 0;
    background: white;
}

.about-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-page-content .section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-page-content .section-heading {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.3;
}

.about-text-lead {
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-body {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
}

.about-page-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-page-image .main-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.5s ease;
}

.about-page-image:hover .main-img {
    transform: scale(1.03);
}

.about-page-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-image .experience-badge .years {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--secondary);
}

.about-page-image .experience-badge .text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

/* ==========================================
   Vision & Mission
   ========================================== */
.vision-mission-section {
    padding: 0 0 100px;
    background: linear-gradient(to bottom, white 50%, var(--light) 50%);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transition: var(--transition);
}

.vm-card:hover::before {
    height: 6px;
    background: var(--secondary);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 95, 122, 0.05);
    /* very light primary */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    background: var(--primary);
    color: white;
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
}

.vm-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================================
   Core Values
   ========================================== */
.core-values-section {
    padding: 100px 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(201, 162, 39, 0.1);
    /* light secondary */
    color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--secondary);
    color: white;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: #0B1C33;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern-bg.png');
    /* Pattern overlay */
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.btn-outline.white {
    border-color: white;
    color: white;
}

.btn-outline.white:hover {
    background: white;
    color: var(--dark);
}

/* Mobile Responsive Adjustments for About Page */
@media (max-width: 991px) {
    .about-page-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-image {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

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

/* ==========================================
   Contact Overlay Section (Proposal 3)
   ========================================== */
.contact-overlay-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    color: white;
    /* Optional: subtle border/margin if needed */
    margin-top: 50px;
}

.contact-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    /* Slight zoom for effect */
}

.contact-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(8, 24, 40, 0.9), rgba(8, 24, 40, 0.75));
    z-index: 2;
}

.contact-overlay-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
}

.contact-overlay-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-overlay-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-overlay-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Handle mobile */
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid #25D366;
    color: #25D366;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    background: transparent;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-outline i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-overlay-section {
        padding: 70px 0;
    }

    .contact-overlay-content h2 {
        font-size: 30px;
    }

    .contact-overlay-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-whatsapp-outline,
    .btn-primary {
        width: 100%;
    }
}

/* ==========================================
   Blog Grid Page
   ========================================== */
.blog-page-section {
    padding: 100px 0;
    background: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray);
}

.blog-meta i {
    color: var(--secondary);
    margin-left: 5px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-card h3 a {
    color: var(--dark);
    transition: var(--transition);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--dark);
    border-radius: var(--radius);
    /* Rounded square */
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-thumb {
        height: 200px;
    }
}

/* ==========================================
   New Services Section (List Design)
   ========================================== */
.services-section-list {
    padding: 100px 0;
    background: white;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-intro h2 {
    font-size: 36px;
    color: var(--dark);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.service-row-item {
    display: flex;
    /* Changed from grid to flex */
    align-items: center;
    /* Vertically center */
    flex-wrap: nowrap;
    /* Prevent wrapping by default on desktop */
    justify-content: space-between;
    gap: 50px;
    /* Reduced gap */
    margin-bottom: 0px;
    /* Remove bottom margin to create continuous flow */
    padding: 60px 0;
    /* Add padding to separate sections visually */
    border-bottom: 1px solid var(--light);
}

.service-row-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Alternating layout override */
.service-row-item.reverse {
    flex-direction: row-reverse;
    /* Flip order for flex container */
}

/* Image Wrapper */
.service-row-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    flex: 0 0 55%;
    /* Fixed width for image container */
    max-width: 55%;
}

.service-row-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-row-item:hover .service-row-image img {
    transform: scale(1.03);
}

.service-row-icon-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* Valid for LTR, will need adjustment if RTL direction is applied to container */
    width: 60px;
    height: 60px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-row-icon-float img {
    width: 32px;
    height: 32px;
}

/* Content Side */
.service-row-content {
    flex: 0 0 40%;
    /* Fixed width for content container */
    max-width: 40%;
}

.service-row-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-row-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Info Box Special Style */
.service-info-box {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-info-box .icon-wrapper {
    margin-bottom: 20px;
}

.service-info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-info-box p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

/* RTL Specific Adjustments */
html[dir="rtl"] .service-row-icon-float {
    left: auto;
    right: 20px;
}

/* Responsive */
@media (max-width: 991px) {

    .service-row-item,
    .service-row-item.reverse {
        flex-direction: column;
        /* Stack vertically on smaller screens */
        text-align: center;
        gap: 30px;
    }

    .service-row-image,
    .service-row-content {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .service-row-content {
        order: 2;
        /* Content always below image on mobile */
    }

    .service-row-image {
        order: 1;
    }

    .service-intro h2 {
        font-size: 28px;
    }
}

/* ==========================================
   Services Grid Modern (Reference Design)
   ========================================== */
.services-modern-section {
    padding: 100px 0;
    background-color: #3E6D4E;
    /* Matching the Green from reference */
    /* Alternatively use var(--primary) if brand consistency is preferred, 
       but user shared a specific visual. I will stick to the visual's green 
       or a close brand match. Let's use the site's primary to be safe, 
       or maybe a custom class that can be changed easily. 
       Let's use a deep green variable for now matching the image. */
    background: #407156;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.services-modern-title-area {
    text-align: right;
    max-width: 600px;
}

.services-tag-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.services-modern-title-area h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}

.services-support-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-icon {
    font-size: 32px;
    color: white;
}

.support-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.support-text p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-modern-card {
    background: #F2F5E9;
    /* Light cream/greenish tint */
    border-radius: 30px;
    /* Highly rounded as in image */
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-modern-card:hover {
    transform: translateY(-10px);
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 10px 15px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: #1F3C2B;
    /* Dark green text */
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.card-content p {
    color: #556B5C;
    /* Muted green text */
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #8D6E26;
    /* Gold/Bronze color */
    font-size: 14px;
    font-weight: 700;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 15px;
    color: #1F3C2B;
}

/* Responsive */
@media (max-width: 1100px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-modern-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .services-modern-title-area {
        text-align: center;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .services-support-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   Services Grid Modern (Adjusted)
   ========================================== */
.services-modern-section {
    background: #1a5f7a;
    /* Changed from green to primary blue (var(--primary)) for consistency */
    /* Or a slightly darker shade if preferred */
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.services-modern-header {
    flex-direction: row-reverse;
    /* Flip order: Title right, CTA left */
    align-items: flex-end;
    /* Align bottom */
}

.services-modern-title-area {
    text-align: right;
    max-width: 600px;
}

/* Ensure cards look good on blue bg */
.service-modern-card {
    background: white;
    /* Clean white card */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-content h3 {
    color: var(--primary-dark);
}

.card-content p {
    color: var(--gray);
}

.card-link {
    color: var(--secondary);
    /* Gold */
}

.card-link:hover {
    color: var(--primary);
}

/* CTA Adjustments */
.services-support-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Mobile Responsive adjustment for reversed header */
@media (max-width: 768px) {
    .services-modern-header {
        flex-direction: column;
        /* Stack vertically */
        align-items: center;
    }

    .services-modern-title-area {
        text-align: center;
        width: 100%;
    }

    .services-support-cta {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }
}

/* ==========================================
   Why Choose Us (Light Version for Contrast)
   ========================================== */
.why-us-section {
    padding: 100px 0;
    position: relative;
    /* Clean white or very light gray to contrast with the dark blue services section */
    background: #f8f9fa;
    /* Var(--lighter) */
    color: var(--dark);
}

.why-us-section .section-heading.light {
    color: var(--dark);
    /* Override light text */
}

.why-us-section .section-tag.light {
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary);
}

.why-us-section .section-desc {
    color: var(--gray);
}

/* Steps Grid Adjustments */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    box-shadow: var(--shadow-sm);
    z-index: 2;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* Step Number Badge */
.step-number-tag {
    position: absolute;
    top: -20px;
    right: 20px;
    /* LTR default, adjust for RTL below */
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
    z-index: 3;
}

/* RTL Adjustment */
html[dir="rtl"] .step-number-tag {
    right: auto;
    left: 20px;
}

/* Icon */
.step-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(26, 95, 122, 0.05);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition);
}

.step-card:hover .icon-wrapper {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Connecting Line (Optional - only visible on large screens) */
.steps-grid {
    position: relative;
}

@media (min-width: 992px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 80px;
        /* Aligns with icons roughly */
        left: 10%;
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient(to right,
                var(--light) 0,
                var(--light) 10px,
                transparent 10px,
                transparent 20px);
        z-index: 1;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==========================================
   Refined Why Us (Steps) Section
   ========================================== */
.why-us-section {
    padding: 100px 0;
    /* User said "inconsistent", let's try a subtle gradient or pattern to ground it more */
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.step-card {
    /* Make cards cleaner */
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* More diffuse shadow */
    border: none;
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    /* Add a subtle top border for color accent */
    border-top: 4px solid var(--secondary);
}

.step-number-tag {
    /* Move number inside or make it float nicely */
    background: rgba(201, 162, 39, 0.1);
    color: var(--secondary-dark);
    box-shadow: none;
    top: 20px;
    right: 20px;
    left: auto;
    /* Ensure alignment */
}

html[dir="rtl"] .step-number-tag {
    right: auto;
    left: 20px;
}

/* ==========================================
   Dark Testimonials Section
   ========================================== */
.testimonials-section {
    background-color: #081828;
    /* Dark Navy Blue */
    color: white;
    padding: 100px 0;
    position: relative;
}

/* Add a subtle overlay pattern if needed, but let's stick to clean dark for now */

.testimonials-section .section-heading {
    color: white;
}

.testimonials-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .section-tag {
    color: var(--secondary);
}

/* Testimonial Cards on Dark Background */
.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    transition: var(--transition);
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-author h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    /* LTR */
    color: white;
}

html[dir="rtl"] .author-avatar {
    margin-right: 0;
    margin-left: 15px;
}

/* Swiper Pagination dots on dark bg */
.testimonials-section .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* ==========================================
   Improved Steps Section (Timeline Style)
   ========================================== */
.why-us-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Connecting line for desktop */
.steps-grid {
    position: relative;
    z-index: 2;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.step-number-tag {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.3);
}

.icon-wrapper {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Dark Mode Testimonials Overrides */
.testimonials-section.dark-mode {
    background-color: #0d1b2a;
    /* Deep dark blue/black */
    color: white;
}

.testimonials-section.dark-mode .section-heading {
    color: white !important;
}

.testimonials-section.dark-mode .section-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testimonial-card-modern.dark-theme {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card-modern.dark-theme .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card-modern.dark-theme .author-info h5 {
    color: white;
}

.testimonial-card-modern.dark-theme .author-info span {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   Professional Process Timeline Design
   ========================================== */
.process-timeline-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
}

/* The Connecting Line (Background) */
.process-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Aligns with the center of the icons */
    left: 10%;
    width: 80%;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 15px;
    transition: all 0.3s ease;
}

/* Icon Circle */
.process-icon-box {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--gray);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Step Number Badge */
.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    /* RTL aware in logic, but visually right for now */
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 4px solid white;
    z-index: 3;
}

/* Hover State - Active Step */
.process-step:hover .process-icon-box {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 95, 122, 0.2);
}

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

.process-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    transition: color 0.3s;
}

.process-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Responsive Vertical Timeline for Mobile/Tablet */
@media (max-width: 991px) {
    .process-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .process-wrapper::before {
        left: 50%;
        top: 0;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
    }

    .process-step {
        display: flex;
        flex-direction: row;
        /* Icon left, content right */
        align-items: center;
        text-align: right;
        gap: 20px;
    }

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

    .process-icon-box {
        margin: 0;
        width: 80px;
        height: 80px;
        font-size: 24px;
        flex-shrink: 0;
    }

    .process-content {
        flex: 1;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    /* Arrow for the card */
    .process-content::before {
        content: '';
        position: absolute;
        right: -10px;
        /* LTR/RTL adjustment needed */
        top: 50%;
        transform: translateY(-50%);
        border-width: 10px 0 10px 10px;
        border-style: solid;
        border-color: transparent transparent transparent white;
    }

    html[dir="rtl"] .process-content::before {
        right: auto;
        left: -10px;
        /* Point to left? No, point to the icon on the right */
        /* Actually in RTL flex-direction row the first item is right. */
        /* Let's simplify: In RTL, Icon is on Right, Content on Left. */
        left: auto;
        right: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
        transform: rotate(180deg) translateY(50%);
        /* Flip arrow */
        top: 40%;
    }
}

/* ==========================================
   Services Section (Premium Dark with Pattern)
   ========================================== */
.services-modern-section {
    padding: 100px 0;
    /* Deep Dark Background (Dark Slate Blue) */
    background-color: #12232E;
    /* Subtle Geometric Pattern + Ambient Lighting */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        linear-gradient(rgba(18, 35, 46, 0.95), rgba(18, 35, 46, 0.98)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

/* Ensure text readability on dark bg */
.services-modern-header .services-modern-title-area h2 {
    color: #ffffff;
}

.services-tag-badge {
    background: rgba(201, 162, 39, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

/* Support CTA Box - Glassmorphism */
.services-support-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.services-support-cta h4 {
    color: #ffffff;
}

.services-support-cta p {
    color: rgba(255, 255, 255, 0.7);
}

.support-icon {
    background: var(--secondary);
    color: #12232E;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

/* Card Refinements for Premium Feel */
.service-modern-card {
    background: #ffffff;
    border-radius: 15px;
    /* Slightly softer corners */
    overflow: hidden;
    /* For image scaling */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-modern-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-image-wrapper {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card-content h3 {
    color: #12232E;
}

.card-link {
    color: var(--secondary-dark);
    /* Darker gold for readability on white */
}

/* ==========================================
   Refined Services Section Header & Pattern
   ========================================== */

/* Enhanced Background Pattern */
.services-modern-section {
    background-color: #1a252f;
    /* Dark Navy matches footer/testimonials */
    background-image:
        linear-gradient(30deg, #1f2e3b 12%, transparent 12.5%, transparent 87%, #1f2e3b 87.5%, #1f2e3b),
        linear-gradient(150deg, #1f2e3b 12%, transparent 12.5%, transparent 87%, #1f2e3b 87.5%, #1f2e3b),
        linear-gradient(30deg, #1f2e3b 12%, transparent 12.5%, transparent 87%, #1f2e3b 87.5%, #1f2e3b),
        linear-gradient(150deg, #1f2e3b 12%, transparent 12.5%, transparent 87%, #1f2e3b 87.5%, #1f2e3b),
        linear-gradient(60deg, #1a252f 25%, transparent 25.5%, transparent 75%, #1a252f 75%, #1a252f),
        linear-gradient(60deg, #1a252f 25%, transparent 25.5%, transparent 75%, #1a252f 75%, #1a252f);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    position: relative;
}

/* Overlay for better text readability over pattern */
.services-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 37, 47, 0.95), rgba(26, 37, 47, 0.8));
    z-index: 1;
}

.services-modern-section .container {
    position: relative;
    z-index: 2;
}

/* Header Alignment */
.services-modern-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom of text with box */
    margin-bottom: 60px;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.services-modern-title-area {
    flex: 1;
    text-align: right;
    max-width: 600px;
}

.services-tag-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(193, 161, 63, 0.15);
    /* Gold tint */
    color: #dcb63d;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(193, 161, 63, 0.3);
}

.services-modern-title-area h2 {
    font-size: 32px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* Refined Support CTA */
.services-support-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.services-support-cta:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: rgba(220, 182, 61, 0.3);
}

.support-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dcb63d, #b08d26);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a252f;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(220, 182, 61, 0.3);
}

.support-text h4 {
    color: white;
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 700;
}

.support-text p {
    color: rgba(193, 161, 63, 0.9);
    /* Goldish text */
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .services-modern-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
    }

    .services-support-cta {
        width: 100%;
        margin-top: 20px;
    }
}

.services-modern-section .section-tag {
    color: var(--secondary);
}

/* ==========================================
   Services Section Updates (CTA Moved to Bottom)
   ========================================== */

/* 1. Header Simplification */
.services-modern-header {
    display: block;
    /* Remove flex split */
    text-align: center;
    /* Ensure title is right-aligned */
    border-bottom: none;
    /* Remove border if no longer separating two top items */
    margin-bottom: 40px;
    padding-bottom: 0;
}

.services-modern-title-area {
    max-width: 700px;
    /* Allow simpler title width */
}

/* 2. New Footer Area for CTA */
.services-section-footer {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    /* Aligns to Left in RTL */
    position: relative;
    z-index: 2;
}

/* Adjust CTA Styling for Bottom Placement */
.services-support-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    /* Pill shape for footer button looks better */
    transition: transform 0.3s ease, background 0.3s ease;
}

.services-support-cta:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.services-support-cta .support-text h4 {
    margin: 0;
    font-size: 15px;
    color: white;
}

.services-support-cta .support-text p {
    margin: 0;
    font-size: 13px;
    color: #ccc;
    display: none;
    /* Simplify text for footer button style, or keep if preferred. keeping simple for now? User said "Do you need help" */
}

/* Let's keep the p but maybe make it inline? or just block. User liked the component style. */
.services-support-cta .support-text p {
    display: block;
}

/* ==========================================
   Animated Background Pattern for Services
   ========================================== */
.services-modern-section {
    position: relative;
    background-color: #1a252f;
    /* Deep Navy */
    overflow: hidden;
    /* Static Gradient Base */
    background-image: linear-gradient(to bottom, #1a252f, #151e26);
}

/* Moving Pattern Overlay */
.services-modern-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: bgPatternMove 60s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Animation Keyframes */
@keyframes bgPatternMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(2deg);
    }
}

/* Ensure content stays on top */
.services-modern-section .container {
    position: relative;
    z-index: 5;
}

/* Footer CTA Specifics for positioning */
.services-section-footer {
    position: relative;
    z-index: 6;
}

/* ==========================================
   Floating Icons Background (Hero Style)
   ========================================== */
.services-modern-section {
    position: relative;
    background: radial-gradient(circle at center, #1a252f 0%, #0d1b2a 100%);
    /* Deep vignetted dark */
    overflow: hidden;
}

/* Remove previous pattern overlay */
.services-modern-section::before {
    display: none !important;
}

.services-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content (container is z-index 2 or 5) */
    pointer-events: none;
}

.float-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    /* Significantly visible now */
    bottom: -150px;
    animation: floatingUp linear infinite;
    z-index: 1;
}

.float-item i {
    display: block;
}

/* Animation Definition */
@keyframes floatingUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    5% {
        opacity: 0.2;
        /* Steady visibility */
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-2000px) rotate(360deg) scale(1.2);
        /* Higher reach */
        opacity: 0;
    }
}

/* Individual Icon Variations (Staggered with Negative Delays) */
.float-1 {
    left: 10%;
    font-size: 80px;
    animation-duration: 25s;
    animation-delay: -5s;
    /* Already moved up */
}

.float-2 {
    left: 25%;
    font-size: 120px;
    animation-duration: 35s;
    animation-delay: -20s;
    /* Near top */
}

.float-3 {
    left: 45%;
    font-size: 60px;
    animation-duration: 20s;
    animation-delay: -10s;
    /* Middle */
}

.float-4 {
    left: 70%;
    font-size: 100px;
    animation-duration: 30s;
    animation-delay: -25s;
    /* Scattered */
}

.float-5 {
    left: 85%;
    font-size: 70px;
    animation-duration: 22s;
    animation-delay: -15s;
}

.float-6 {
    left: 55%;
    font-size: 40px;
    animation-duration: 18s;
    animation-delay: -2s;
}

/* End of Styles */
/* Hide extra nav actions on mobile/tablet */
@media (max-width: 991px) {

    .nav-actions .nav-login-btn,
    .nav-actions .lang-switcher {
        display: none;
    }
}

/* ==========================================
   Search Modal
   ========================================== */
.search-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s forwards;
    opacity: 0;
    /* Handled by animation */
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s;
    animation: slideUp 0.3s forwards;
}

.close-search {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-search:hover {
    color: var(--primary);
}

.search-modal-content h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 24px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light);
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.search-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.search-form button {
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.search-form button:hover {
    background: var(--primary-dark);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Default for RTL (start is right) */
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: var(--lighter);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: rotateY(360deg);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: var(--lighter);
}

.map-wrapper {
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

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

.form-side h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.form-side>p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 40px;
}

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

.form-row-advanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-advanced {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-advanced label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group-advanced label span {
    color: #e74c3c;
}

.form-group-advanced input,
.form-group-advanced select,
.form-group-advanced textarea {
    padding: 16px 20px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    background: white;
}

.form-group-advanced input:focus,
.form-group-advanced select:focus,
.form-group-advanced textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.submit-btn-advanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn-advanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

/* Info Side */
.info-side {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px;
    border-radius: var(--radius-xl);
    color: white;
}

.info-side h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.info-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.info-item-text h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-item-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

.info-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-social h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.info-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: var(--transition);
}

.info-social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Working Hours Section (Redesigned) */
.working-hours-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.section-header-hours {
    margin-bottom: 40px;
}

.section-header-hours h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header-hours p {
    color: var(--gray);
    font-size: 16px;
}

.hours-grid-compact {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hour-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.hour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hour-card.weekend {
    border-top-color: var(--secondary);
}

.hour-card.closed {
    border-top-color: #e74c3c;
}

.day-badge {
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
}

.time-range {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 500;
    background: var(--light);
    padding: 8px 16px;
    border-radius: 50px;
}

.time-range i {
    color: var(--primary);
}

.hour-card.closed .time-range {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.hour-card.closed .time-range i {
    color: #e74c3c;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 40px 0;
}

.quick-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-contact-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.quick-contact-text p {
    color: var(--gray-dark);
    font-size: 15px;
}

.quick-contact-btns {
    display: flex;
    gap: 16px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.quick-btn-primary {
    background: var(--primary);
    color: white;
}

.quick-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.quick-btn-whatsapp {
    background: #25d366;
    color: white;
}

.quick-btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .contact-form-wrapper,
    .working-hours-wrapper {
        grid-template-columns: 1fr;
    }

    .working-hours-image {
        display: none;
    }

    .info-side {
        order: -1;
    }
}

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

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

    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }

    .quick-contact-btns {
        width: 100%;
        flex-direction: column;
    }

    .quick-btn {
        justify-content: center;
    }

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

@keyframes sky {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -10000px 0;
    }
}

.page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 30px 90px;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(45deg, rgba(0, 92, 169, 0.8352941176), rgba(0, 184, 222, 0.1254901961)), url(../img/banner.webp);
    background-size: contain;
    background-repeat: repeat;
    background-attachment: fixed;
    -webkit-animation: sky 120s infinite;
    animation: sky 120s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes sky {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.page-breadcrumb a {
    color: var(--secondary);
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}