/* ============================================
   مكتب اختيار للعمالة المنزلية
   Modern Professional Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

:root {
    --primary: #1b1b40;
    --primary-dark: #12122b;
    --primary-light: #2c2c59;
    --accent: #fa8d07;
    --accent-light: #fb9f2e;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #198754;
    --whatsapp: #25d366;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    direction: rtl;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Prevent SVGs from becoming huge if CSS fails or specific width missing */
svg {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Clean Solid Colors */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

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

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

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

.btn-phone:hover {
    background: var(--primary-dark);
}



/* Button styles updated to site theme */
.btn-gold {
    background: var(--accent);
    color: var(--primary-dark);
    /* Ensure text is readable on orange */
    font-weight: 700;
}

.btn-gold:hover {
    background: #ffb042;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 141, 7, 0.4);
}

.btn-whatsapp {
    background: var(--primary);
    /* Changed from green to site primary */
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 27, 64, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    height: 80px;
}

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

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

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-link {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Dropdown Styles - Click Based */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    z-index: 9999;
    border: 1px solid var(--gray-200);
}

.dropdown-content a {
    color: var(--gray-700) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    background: transparent !important;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--gray-100) !important;
    color: var(--primary) !important;
}

/* Show dropdown when .open class is added via JavaScript */
.nav-item.dropdown.open>.dropdown-content {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

.header-cta {
    display: flex;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero - Full Background Slider */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 64, 0.75);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 28px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Hero Nationalities */
.hero-nationalities {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-nationalities-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero-nationalities-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-nationality-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.hero-nationality-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.bg-gray {
    background: #e9ecef;
    /* Slightly darker gray for better contrast */
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
}

.about-image-badge-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.about-image-badge-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.about-feature span {
    font-weight: 600;
    color: var(--gray-700);
}

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 16px;
}

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

.service-link:hover {
    color: var(--accent);
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* Services Grid with Images - Modern Design */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-new {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.service-card-new .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-card-new .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(27, 27, 64, 0.98) 0%, rgba(27, 27, 64, 0.7) 100%);
    z-index: 2;
}

.service-card-new:hover .service-image img {
    transform: scale(1.1);
}

.service-card-new .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 3;
}

.service-card-new .service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card-new .service-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-new .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    padding: 10px 20px;
    background: rgba(250, 141, 7, 0.15);
    border: 1px solid var(--accent);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-card-new .service-link:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Nationalities */
.nationalities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.nationality-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.nationality-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.nationality-flag {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.nationality-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* Why Us */
.why-us {
    background: var(--white);
    color: var(--gray-700);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-us-card {
    text-align: center;
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.why-us-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.why-us-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-us-description {
    font-size: 14px;
    color: var(--gray-600);
}

/* FAQ - New Design */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-icon svg {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle-icon {
    background: var(--primary);
}

.faq-item.open .faq-toggle-icon svg {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-body {
    max-height: 300px;
}

.faq-body p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

/* CTA - Clean & Balanced Design */
.cta-section {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

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

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(250, 141, 7, 0.3);
    background: #ffb042;
}

.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-5px);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.contact-info-content h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--accent);
    font-size: 16px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    background-color: #f7f9fc;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

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

/* --- Transfer Services Section --- */
.transfer-section {
    /* Padding handled by parent .section */
    background: transparent;
}

.transfer-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.transfer-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.transfer-feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 27, 64, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transfer-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(250, 141, 7, 0.3);
}

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

.transfer-feature-card:hover::before {
    transform: scaleX(1);
    background: var(--accent);
}

.transfer-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(27, 27, 64, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.transfer-feature-card:hover .transfer-icon-box {
    background: var(--primary);
    color: var(--accent);
    transform: rotateY(180deg);
}

.transfer-icon-box svg {
    width: 32px;
    height: 32px;
}

/* --- Legal Steps Timeline --- */
/* --- Legal Steps Timeline --- */
.legal-steps-section {
    /* Padding handled by parent .section */
    position: relative;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--accent);
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    padding: 0 10px;
}

/* --- Service Areas --- */
.service-areas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.service-areas-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23fa8d07' 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");
    opacity: 1;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-tag:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.area-badge {
    font-size: 10px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

/* --- Tips Grid --- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.tip-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* --- Contact Section Modern Redesign --- */
.contact-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, #e8f5e9 100%);
    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='%231b1b40' 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");
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-wrapper {
    padding-right: 20px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(27, 27, 64, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-heading {
    font-size: 42px;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-heading span {
    color: var(--accent);
}

.contact-subheading {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 20px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(27, 27, 64, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    background: var(--primary);
    color: var(--accent);
}

.method-details h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.method-details p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.method-action {
    margin-right: auto;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-action {
    background: var(--accent);
    color: var(--white);
}

/* Form Side */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid rgba(250, 141, 7, 0.1);
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(250, 141, 7, 0.1) 0%, transparent 70%);
    border-radius: 0 24px 0 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(27, 27, 64, 0.25);
}

.form-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    position: relative;
    margin-bottom: 16px;
}

.form-row .form-field {
    margin-bottom: 0;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: var(--gray-500);
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.input-icon svg {
    width: 100%;
    height: 100%;
}

.input-icon.textarea-icon {
    top: 20px;
    transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 16px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(250, 141, 7, 0.12);
}

.form-field input:focus+.input-icon,
.form-field select:focus+.input-icon,
.form-field textarea:focus+.input-icon {
    color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-500);
}

.submit-btn {
    width: 100%;
    height: 56px;
    background: var(--accent);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.submit-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-field {
        margin-bottom: 16px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-wrapper {
        padding-right: 0;
        text-align: center;
    }

    .contact-method-card {
        text-align: right;
    }

    .method-action {
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .steps-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .steps-timeline::before {
        display: none;
    }

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

@media (max-width: 768px) {

    .transfer-section,
    .legal-steps-section,
    .service-areas-section,
    .whatsapp-contact-section {
        padding: 60px 0;
    }

    .whatsapp-form-container {
        padding: 30px 20px;
    }
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 50px;
    padding-bottom: 20px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #f6753d 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr 1.4fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 320px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 0;
}

.footer-links a::before {
    content: '←';
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent);
    font-size: 10px;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
    right: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(250, 141, 7, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--accent);
    color: var(--primary);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-contact-item a:hover .footer-contact-value {
    color: var(--accent);
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 10px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* Page Header */
.page-header {
    background: var(--primary);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

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

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: var(--accent);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 18px;
    margin: 12px 0;
    color: var(--primary);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.blog-meta {
    font-size: 13px;
    color: var(--gray-500);
}

/* WhatsApp Float */
/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Moved to Right */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff !important;
    /* Force white color */
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.float-btn svg {
    width: 32px;
    /* Slightly larger icon */
    height: 32px;
    z-index: 1;
    fill: currentColor;
    /* Inherit white color */
}

/* Specific fix for outlined icons if needed */
.float-btn-phone svg {
    fill: none;
    stroke: currentColor;
}

.float-btn-whatsapp {
    background: #25d366;
    /* Standard WhatsApp Green */
}

.float-btn-whatsapp:hover {
    background: #128c7e;
}

.float-btn-phone {
    background: var(--accent);
}

.float-btn-phone:hover {
    background: var(--accent-dark);
}

.tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Utilities */
.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

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

.mt-8 {
    margin-top: 32px;
}

.mb-8 {
    margin-bottom: 32px;
}

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

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-slider {
        order: -1;
    }

    .hero-slide img {
        height: 400px;
    }

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

    .nationalities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

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

    .nav-item.dropdown {
        width: 100%;
        display: block;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border-right: 3px solid var(--accent);
        border-top: none;
        border-bottom: none;
        border-left: none;
        background: var(--gray-50);
        margin: 5px 0 0;
        padding: 0;
        animation: none;
    }

    .nav-item.dropdown.open>.dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 30px;
        font-size: 14px;
    }

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

    .header-cta {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .services-grid,
    .services-grid-new,
    .blog-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}

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

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

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

    .btn {
        width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* --- Modern Tips Section --- */
.tips-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card-modern {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.tip-number {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 100px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.03;
    line-height: 1;
    font-family: sans-serif;
    transition: all 0.4s ease;
}

.tip-card-modern:hover .tip-number {
    opacity: 0.08;
    color: var(--accent);
    transform: scale(1.1);
}

.tip-icon-modern {
    width: 60px;
    height: 60px;
    background: rgba(27, 27, 64, 0.05);
    /* var(--primary) with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.tip-card-modern:hover .tip-icon-modern {
    background: var(--accent);
    color: var(--white);
}

.tip-icon-modern svg {
    width: 28px;
    height: 28px;
}

.tip-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.tip-desc-modern {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.tip-check {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
    transition: width 0.3s ease;
}

.tip-card-modern:hover .tip-check {
    width: 50px;
}

/* --- About Page Designs --- */

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.vision-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.vision-card:hover {
    transform: translateY(-5px);
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 30px;
}

.vision-card:nth-child(2) .vision-icon {
    color: var(--accent);
    background: rgba(250, 141, 7, 0.1);
}

.vision-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.vision-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 16px;
}

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

/* Left Floating Container */
.floating-container-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Responsive adjustment for floating buttons */
@media (max-width: 480px) {
    .floating-container {
        bottom: 15px;
        right: 15px;
    }

    .floating-container-left {
        bottom: 15px;
        left: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   Keywords/Hashtags Section
   ============================================ */
.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}

.keyword-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--white);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.keyword-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 27, 64, 0.2);
}

/* Highlight some keywords with accent color */
.keyword-tag:nth-child(5n),
.keyword-tag:nth-child(7n),
.keyword-tag:nth-child(11n) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.keyword-tag:nth-child(5n):hover,
.keyword-tag:nth-child(7n):hover,
.keyword-tag:nth-child(11n):hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.keyword-tag:nth-child(3n) {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.keyword-tag:nth-child(3n):hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .keywords-cloud {
        gap: 8px;
    }

    .keyword-tag {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .keyword-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
}