.elementor-9708 .elementor-element.elementor-element-f39a888{--display:flex;}.elementor-9708 .elementor-element.elementor-element-f5a30c0{width:100%;max-width:100%;}html{height:100vh;margin:0;overflow:hidden;}body{height:100vh;overflow:auto;scroll-snap-type:y mandatory;}:root{--page-title-display:none;}.elementor-section:not(.elementor-inner-section), .elementor-location-header, .elementor-location-footer, .page-header, .site-header, .elementor-add-section, .e-con:not(.e-child){scroll-snap-align:start;scroll-snap-stop:normal;}@media(max-width:1024px){.elementor-section:not(.elementor-inner-section), .elementor-location-header, .elementor-location-footer, .page-header, .site-header, .elementor-add-section, .e-con:not(.e-child){scroll-snap-align:start;scroll-snap-stop:normal;}}@media(max-width:767px){.elementor-section:not(.elementor-inner-section), .elementor-location-header, .elementor-location-footer, .page-header, .site-header, .elementor-add-section, .e-con:not(.e-child){scroll-snap-align:start;scroll-snap-stop:normal;}}/* Start custom CSS for html, class: .elementor-element-f5a30c0 *//* ==========================================================================
   1. VARIABLES & BRANDS DEFINITIONS
   ========================================================================== */
:root {
    --primary: #161A8D;
    --primary-hover: #0d105a;
    --secondary: #C5E5FF;
    --secondary-hover: #9bcdf5;
    --black: #0B0B0D;
    --white: #FFFFFF;
    --bg-light: #F4F6F8;
    --text-muted: #5A6275;
    --border-color: #E2E8F0;
    
    /* Brand Accent Colors */
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebd58;
    --accent-green: #006C35;
    
    /* Typography Rules */
    --font-family: 'Cairo', sans-serif;
    
    /* Shadows & Radii */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(22, 26, 141, 0.08), 0 10px 10px -5px rgba(22, 26, 141, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. GENERAL STYLING & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--black);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button UI Definitions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 26, 141, 0.25);
}

.btn-whatsapp-outline {
    background-color: transparent;
    color: var(--whatsapp);
    border: 1.5px solid var(--whatsapp);
}

.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* Header Headings Styling */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 45px;
}

/* ==========================================================================
   3. HEADER / NAVIGATION STYLING
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Representation */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emblem {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-green);
    margin-top: 4px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(22, 26, 141, 0.05) 0%, rgba(197, 229, 255, 0.1) 100%);
    padding: 160px 0 120px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(22, 26, 141, 0.08);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 15px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--primary), #4349e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.hero-content .description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Hero Images block styling */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.hero-image-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.main-hero-img {
    width: 100%;
    max-width: 450px;
    height: 480px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border-right: 4px solid var(--accent-green);
}

.floating-badge i {
    color: var(--accent-green);
    font-size: 18px;
}

.floating-badge span {
    font-weight: 800;
    font-size: 14px;
    color: var(--black);
}

/* ==========================================================================
   5. FLOATING QUICK CARDS
   ========================================================================== */
.quick-cards-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 40px;
}

.quick-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(22, 26, 141, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.kaba-color { background-color: rgba(22, 26, 141, 0.1); color: var(--primary); }
.clock-color { background-color: rgba(0, 108, 53, 0.1); color: var(--accent-green); }
.shield-color { background-color: rgba(255, 193, 7, 0.1); color: #FFB300; }
.calendar-color { background-color: rgba(226, 85, 85, 0.1); color: #E25555; }

.card-text h4 {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.card-text p {
    font-size: 15px;
    color: var(--black);
    font-weight: 800;
}

/* ==========================================================================
   6. VISA OVERVIEW & FEATURES (2 Columns)
   ========================================================================== */
.visa-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* Details Table Card */
.visa-details-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.card-header-block {
    margin-bottom: 25px;
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 15px;
}

.card-header-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.card-header-block p {
    font-size: 14px;
    color: var(--text-muted);
}

.details-table {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.row-label {
    font-weight: 700;
    color: var(--black);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.row-label i {
    width: 20px;
    font-size: 16px;
}

.row-value {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
}

/* Why Saudi Section block grid */
.why-saudi-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.why-saudi-card .section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(197, 229, 255, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px auto;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
    background-color: var(--primary);
    color: var(--white);
}

.why-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
}

/* ==========================================================================
   7. WORKFLOW TIMELINE SECTION (6 steps)
   ========================================================================== */
.workflow {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.timeline-container {
    position: relative;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(to left, var(--secondary) 0, var(--secondary) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.step-num-circle {
    position: absolute;
    top: -10px;
    right: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.timeline-item:hover .step-icon-box {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 12px;
    color: var(--text-muted);
    padding: 0 10px;
}

/* ==========================================================================
   8. THREE-COLUMN APPLICATION HUB (Documents, Discover, Form)
   ========================================================================== */
.hub-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.hub-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Checklist Column */
.documents-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.documents-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.documents-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documents-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.doc-icon {
    font-size: 20px;
    color: var(--accent-green);
    margin-top: 2px;
}

.documents-list li p {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
}

.info-note {
    background-color: rgba(197, 229, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 15px;
}

.info-color {
    color: var(--primary);
}

/* Discover Saudi destinations Grid */
.discover-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.discover-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.city-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 140px;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 11, 13, 0.8) 0%, rgba(11, 11, 13, 0.1) 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    transition: var(--transition-smooth);
}

.city-overlay h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-card:hover .city-overlay {
    background: linear-gradient(to top, rgba(22, 26, 141, 0.85) 0%, rgba(22, 26, 141, 0.2) 100%);
}

/* Lead Application Form Column styling */
.form-card {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 2px;
}

.form-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group label i {
    margin-left: 6px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.18);
}

.form-group select option {
    background-color: var(--primary);
    color: var(--white);
}

.btn-submit {
    background-color: var(--white);
    color: var(--primary);
}

.form-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   9. WHY NASHKA (TRUST BADGES GRID ROW)
   ========================================================================== */
.why-nashka {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.why-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 40px;
}

.why-nashka-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-card {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    font-size: 32px;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.trust-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   10. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.user-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.user-city {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   11. FAQ & CONTACT SECTION (2 Columns)
   ========================================================================== */
.faq-contact {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.faq-wrapper h3, .contact-wrapper h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.block-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Accordion Component */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.accordion-header {
    padding: 18px 22px;
    font-weight: 800;
    font-size: 15px;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.accordion-item[open] .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 22px 20px 22px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    background-color: var(--white);
}

.accordion-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 15px;
}

/* Contact Column with Map */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-text-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-line i {
    font-size: 18px;
    color: var(--primary);
    width: 25px;
}

.contact-line p {
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
}

.map-container {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 10px;
}

/* Brand col specs */
.brand-col .logo {
    margin-bottom: 20px;
}

.white-logo .logo-brand {
    color: var(--white);
}

.brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Link Cols */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 5px;
}

/* Vision Col specs */
.vision-img-box {
    margin-bottom: 15px;
}

.vision-logo {
    width: 140px;
    filter: brightness(0) invert(1);
}

.partner-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-bottom {
    background-color: #050507;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Floating Quick Whatsapp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--whatsapp);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(15deg);
}

/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Smaller Screens (< 1024px) */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-content .description {
        margin: 0 auto 35px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-card {
        transform: none;
    }
    
    .quick-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .hub-grid {
        grid-template-columns: 1fr;
    }
    
    .why-nashka-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Burger Menu Mode (< 768px) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-left .btn-whatsapp-outline {
        display: none; /* Hide WhatsApp button in mobile nav to save space */
    }
    
    .hero {
        padding: 120px 0 80px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .quick-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-nashka-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-f39a888 */.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
z-index:9999;
box-shadow:0 10px 30px #0003;
}/* End custom CSS */
/* Start custom CSS *//* ==========================================================================
   1. VARIABLES & BRANDS DEFINITIONS
   ========================================================================== */
:root {
    --primary: #161A8D;
    --primary-hover: #0d105a;
    --secondary: #C5E5FF;
    --secondary-hover: #9bcdf5;
    --black: #0B0B0D;
    --white: #FFFFFF;
    --bg-light: #F4F6F8;
    --text-muted: #5A6275;
    --border-color: #E2E8F0;
    
    /* Brand Accent Colors */
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebd58;
    --accent-green: #006C35;
    
    /* Typography Rules */
    --font-family: 'Cairo', sans-serif;
    
    /* Shadows & Radii */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(22, 26, 141, 0.08), 0 10px 10px -5px rgba(22, 26, 141, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. GENERAL STYLING & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--black);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button UI Definitions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 26, 141, 0.25);
}

.btn-whatsapp-outline {
    background-color: transparent;
    color: var(--whatsapp);
    border: 1.5px solid var(--whatsapp);
}

.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* Header Headings Styling */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 45px;
}

/* ==========================================================================
   3. HEADER / NAVIGATION STYLING
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Representation */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emblem {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-green);
    margin-top: 4px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(22, 26, 141, 0.05) 0%, rgba(197, 229, 255, 0.1) 100%);
    padding: 160px 0 120px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(22, 26, 141, 0.08);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 15px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--primary), #4349e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.hero-content .description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Hero Images block styling */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.hero-image-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.main-hero-img {
    width: 100%;
    max-width: 450px;
    height: 480px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border-right: 4px solid var(--accent-green);
}

.floating-badge i {
    color: var(--accent-green);
    font-size: 18px;
}

.floating-badge span {
    font-weight: 800;
    font-size: 14px;
    color: var(--black);
}

/* ==========================================================================
   5. FLOATING QUICK CARDS
   ========================================================================== */
.quick-cards-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 40px;
}

.quick-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(22, 26, 141, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.kaba-color { background-color: rgba(22, 26, 141, 0.1); color: var(--primary); }
.clock-color { background-color: rgba(0, 108, 53, 0.1); color: var(--accent-green); }
.shield-color { background-color: rgba(255, 193, 7, 0.1); color: #FFB300; }
.calendar-color { background-color: rgba(226, 85, 85, 0.1); color: #E25555; }

.card-text h4 {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.card-text p {
    font-size: 15px;
    color: var(--black);
    font-weight: 800;
}

/* ==========================================================================
   6. VISA OVERVIEW & FEATURES (2 Columns)
   ========================================================================== */
.visa-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* Details Table Card */
.visa-details-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.card-header-block {
    margin-bottom: 25px;
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 15px;
}

.card-header-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.card-header-block p {
    font-size: 14px;
    color: var(--text-muted);
}

.details-table {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.row-label {
    font-weight: 700;
    color: var(--black);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.row-label i {
    width: 20px;
    font-size: 16px;
}

.row-value {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
}

/* Why Saudi Section block grid */
.why-saudi-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.why-saudi-card .section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(197, 229, 255, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px auto;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
    background-color: var(--primary);
    color: var(--white);
}

.why-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
}

/* ==========================================================================
   7. WORKFLOW TIMELINE SECTION (6 steps)
   ========================================================================== */
.workflow {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.timeline-container {
    position: relative;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(to left, var(--secondary) 0, var(--secondary) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.step-num-circle {
    position: absolute;
    top: -10px;
    right: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.timeline-item:hover .step-icon-box {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 12px;
    color: var(--text-muted);
    padding: 0 10px;
}

/* ==========================================================================
   8. THREE-COLUMN APPLICATION HUB (Documents, Discover, Form)
   ========================================================================== */
.hub-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.hub-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Checklist Column */
.documents-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.documents-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.documents-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documents-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.doc-icon {
    font-size: 20px;
    color: var(--accent-green);
    margin-top: 2px;
}

.documents-list li p {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
}

.info-note {
    background-color: rgba(197, 229, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 15px;
}

.info-color {
    color: var(--primary);
}

/* Discover Saudi destinations Grid */
.discover-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.discover-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.city-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 140px;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 11, 13, 0.8) 0%, rgba(11, 11, 13, 0.1) 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    transition: var(--transition-smooth);
}

.city-overlay h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-card:hover .city-overlay {
    background: linear-gradient(to top, rgba(22, 26, 141, 0.85) 0%, rgba(22, 26, 141, 0.2) 100%);
}

/* Lead Application Form Column styling */
.form-card {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 2px;
}

.form-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group label i {
    margin-left: 6px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.18);
}

.form-group select option {
    background-color: var(--primary);
    color: var(--white);
}

.btn-submit {
    background-color: var(--white);
    color: var(--primary);
}

.form-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   9. WHY NASHKA (TRUST BADGES GRID ROW)
   ========================================================================== */
.why-nashka {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.why-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 40px;
}

.why-nashka-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-card {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    font-size: 32px;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.trust-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   10. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.user-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.user-city {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   11. FAQ & CONTACT SECTION (2 Columns)
   ========================================================================== */
.faq-contact {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.faq-wrapper h3, .contact-wrapper h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.block-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Accordion Component */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.accordion-header {
    padding: 18px 22px;
    font-weight: 800;
    font-size: 15px;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.accordion-item[open] .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 22px 20px 22px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    background-color: var(--white);
}

.accordion-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 15px;
}

/* Contact Column with Map */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-text-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-line i {
    font-size: 18px;
    color: var(--primary);
    width: 25px;
}

.contact-line p {
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
}

.map-container {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 10px;
}

/* Brand col specs */
.brand-col .logo {
    margin-bottom: 20px;
}

.white-logo .logo-brand {
    color: var(--white);
}

.brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Link Cols */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 5px;
}

/* Vision Col specs */
.vision-img-box {
    margin-bottom: 15px;
}

.vision-logo {
    width: 140px;
    filter: brightness(0) invert(1);
}

.partner-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-bottom {
    background-color: #050507;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Floating Quick Whatsapp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--whatsapp);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(15deg);
}

/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Smaller Screens (< 1024px) */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-content .description {
        margin: 0 auto 35px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-card {
        transform: none;
    }
    
    .quick-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .hub-grid {
        grid-template-columns: 1fr;
    }
    
    .why-nashka-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Burger Menu Mode (< 768px) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-left .btn-whatsapp-outline {
        display: none; /* Hide WhatsApp button in mobile nav to save space */
    }
    
    .hero {
        padding: 120px 0 80px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .quick-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-nashka-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}/* End custom CSS */