/* Custom Fonts */
@font-face {
    font-family: 'Diodrum Arabic';
    src: url('assets/fonts/DiodrumArabic-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Arabic';
    src: url('assets/fonts/DiodrumArabic-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Arabic';
    src: url('assets/fonts/Indian Type Foundry - Diodrum Arabic Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Arabic';
    src: url('assets/fonts/DiodrumArabic-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables - Design System */
:root {
    /* Luxury Banking Color Palette */
    --background: hsl(230, 100%, 6%);
    --foreground: hsl(0, 0%, 100%);
    --card: hsl(230, 95%, 8%);
    --card-foreground: hsl(0, 0%, 100%);
    --primary: hsl(230, 100%, 6%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(0, 0%, 100%);
    --secondary-foreground: hsl(0, 0%, 0%);
    --muted: hsl(230, 80%, 12%);
    --muted-foreground: hsl(0, 0%, 75%);
    --border: hsl(230, 60%, 20%);
    --gold: hsl(0, 0%, 100%);
    --gold-light: hsl(0, 0%, 90%);
    --platinum: hsl(0, 0%, 75%);
    --navy-dark: hsl(230, 100%, 4%);
    --navy-medium: hsl(230, 95%, 10%);
    --radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

a {
    color: #fff;
    text-decoration: none;
}

body {
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Prevent background scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Inline Prime Logo */
.inline-prime-logo {
    display: inline-block;
    height: 1.5em;
    width: auto;
    vertical-align: baseline;
    margin: 0 0.1em;
    position: relative;
    top: 0.1em;
    filter: brightness(0) invert(1);
}

/* Top Bar Styles */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background-color: rgba(0, 5, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-center {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 0.5rem;
}

.top-icon:hover {
    color: var(--gold);
}

.top-social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.top-social-icon:hover {
    color: var(--gold);
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
}

.top-phone i {
    color: var(--gold);
}

/* Navbar Styles */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: rgba(0, 5, 26, 0.95);
    display: flex;
    flex-direction: column;
}

/* On small screens, position navbar below the fixed top bar (60px) */
@media (max-width: 767px) {
    #navbar {
        top: 60px;
    }
}

@media (min-width: 768px) {
    #navbar {
        top: 3.5rem;
        background-color: transparent;
    }
}

#navbar.scrolled {
    top: 0;
    background-color: rgba(0, 5, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.nav-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
    display: none;
}

#navbar.scrolled .nav-strip {
    display: block;
}

.nav-strip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-logo-db {
    height: 3rem;
    margin-top: 0.25rem;
}

.nav-logo-prime {
    height: 2rem;
    filter: brightness(0) invert(1);
    margin-top: 0.25rem;
}

.nav-center {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: center;
}

.nav-center .nav-menu {
    display: flex;
    flex-direction: row-reverse;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-button {
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
}

.nav-button-personal {
    background-color: #10b981;
    color: white;
}

.nav-button-personal:hover {
    background-color: #059669;
}

.nav-button-corporate {
    background-color: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-button-corporate:hover {
    background-color: #2563eb;
}

.nav-button-badge {
    background-color: var(--gold);
    color: var(--navy-dark);
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Internet Banking Dropdown */
.internet-banking-dropdown {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.internet-banking-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: block;
}

.internet-banking-label:hover {
    color: var(--gold);
}

.internet-banking-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--navy-dark);
    border-radius: 0.5rem;
    /* Add some internal top padding so it appears visually separated
       from the label, while still overlapping for stable hover */
    padding: 0.75rem 0 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    z-index: 1000;
    /* Slight positive margin so it appears offset but still overlaps */
    margin-top: 5px;
}

.internet-banking-dropdown:hover .internet-banking-menu {
    display: block;
}

.internet-banking-option {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.internet-banking-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* Hide internet banking dropdown on small screens to reduce crowding */
@media (max-width: 767px) {
    .internet-banking-dropdown {
        display: none;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    padding: 0.25rem;
}

.lang-option {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
}

.lang-option:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background-color: var(--navy-dark);
    color: white;
}



/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1600; /* keep toggle above the mobile menu overlay */
}

.mobile-menu-toggle:hover {
    color: var(--gold);
}

/* Mobile Menu */
.nav-center {
    display: none;
}

.nav-center.active {
    display: flex;
    position: fixed;
    top: 60px;           /* sit below the fixed top bar */
    left: 0;
    right: 0;
    bottom: 0;           /* cover full viewport height */
    min-height: calc(100vh - 60px);
    overflow-y: auto;
    background-color: rgba(0, 5, 26, 0.98);
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1500;       /* above navbar, below top bar */
}

.nav-center.active .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-center {
        display: flex;
    }

    .nav-right {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-logo-db {
        height: 3rem;
        margin-top: 0.5rem;
    }

    .nav-logo-prime {
        height: 3.5rem;
        margin-top: 0.5rem;
    }
		.nav-logo-db {
    height: 3rem;
    margin-top: 0.25rem;
}
}

@media (max-width: 1024px) {
    /* Hide social icons on small screens, keep other items */
    .top-social-icon {
        display: none;
    }

    /* Move language switcher to the left on small screens */
    .top-bar-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        justify-content: flex-start;
        flex: 1;
    }

    .language-switcher {
        margin-right: auto;
        margin-left: 0;
    }

    /* Keep top-bar content spanning the row */
    .top-bar-container {
        justify-content: space-between;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .nav-container {
        position: relative;
        padding: 1rem 1.5rem;
    }

    .nav-left,
    .nav-right {
        flex: 1;
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 0;
    }

    .nav-left {
        justify-content: flex-end;
    }

    .nav-right {
        justify-content: flex-start;
    }

    /* Keep burger in the top bar area on mobile */
    .mobile-menu-toggle {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        margin-left: auto;
        font-size: 1.75rem;
        z-index: 2100; /* above top bar content */
    }
}

/* Header Separator */
.header-separator {
    width: 100%;
    overflow: hidden;
    background-color: var(--navy);
    position: relative;
    z-index: 1;
    margin-top: 9.5rem;
}

.separator-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .header-separator {
        margin-top: 9rem;
    }

    .separator-image {
        max-height: 80px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scaleX(-1); /* Flip hero image horizontally for Arabic version */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 5, 26, 0.7));
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: right !important;
    padding: 0 2rem;
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2rem;
}

.hero-prime-logo {
    width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: fadeInUp 1s ease-out both;
    align-self: flex-start !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
    animation: fadeIn 0.8s ease-out;
}

.hero-highlight {
    color: white;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--platinum);
    margin-bottom: 2rem;
    text-align: right; /* Right-align for Arabic */
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-section-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: right; /* Right-align for Arabic */
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 30rem;
    line-height: 1.75;
    text-align: right !important;
    animation: fadeInUp 1s ease-out 0.7s both;
    align-self: flex-start !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.hero-button {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 300;
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.5s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-top: 1.5rem;
    border-radius: 0.5rem;
}

.hero-button-small {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.hero-button:hover {
    background-color: var(--gold);
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-down {
    color: var(--gold);
}

/* Mobile: Move hero-description to bottom of hero banner */
@media (max-width: 767px) {
    .hero-content {
        position: static;
    }
    
    .hero-prime-logo {
        position: absolute;
        top: 2rem;
        left: 1rem;
        z-index: 10;
    }
    
    .hero-description {
        position: absolute;
        bottom: 4rem;
        left: 1rem;
        right: 1rem;
        margin-bottom: 0;
        max-width: none;
        width: calc(100% - 2rem);
        z-index: 15;
    }
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.0625rem;
    }
    .hero-button {
        padding: 1.5rem 3rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: auto;
    }
}

/* Introduction Section */
.introduction-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.bg-texture {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('assets/images/bg.png');
    background-size: cover;
    background-position: center;
}

.introduction-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.introduction-logo {
    height: 6rem;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.introduction-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.introduction-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    transition: all 1s ease;
}

@media (min-width: 768px) {
    .introduction-section {
        padding: 8rem 0;
    }
    .introduction-text {
        font-size: 1.25rem;
    }
}

/* Relationship Management Section */
.relationship-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.relationship-banner {
    width: 100%;
    max-width: 60rem;
    margin: 2rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.relationship-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.relationship-content-centered {
    max-width: 72rem;
    margin: 0 auto;
}

.relationship-content-centered .benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .relationship-content-centered .benefit-list {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.relationship-content-centered .benefit-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.relationship-content-centered .benefit-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.relationship-description {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
}

.relationship-bg {
    position: absolute;
    inset: 0;
}

.relationship-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(2px);
}

.relationship-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 5, 26, 0.95), rgba(0, 5, 26, 0.9));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--gold);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.benefit-card {
    position: relative;
    background-color: rgba(0, 10, 40, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 1s ease;
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    color: var(--gold);
 
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--muted-foreground);
}

.benefit-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover .benefit-line {
    opacity: 1;
}

.section-footer-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

/* Benefit Row Grid Layout */
.benefit-row-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 112rem;
    margin: 0 auto 3rem;
}

.benefit-row-image-container {
    position: relative;
    width: 100%;
    height: 18.75rem;
    border-radius: 1rem;
    overflow: hidden;
}

.benefit-row-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-row-grid:hover .benefit-row-image {
    transform: scale(1.05);
}

.benefit-row-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 10, 40, 0.3) 0%,
        rgba(0, 20, 60, 0.5) 100%
    );
}

.benefit-row-content {
    padding: 2rem;
}

.benefit-row-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-row-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.benefit-list li {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon-wrapper {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
    padding: 0;
    margin: 0;
}

.benefit-list li:hover .benefit-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    color: var(--gold);
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .benefit-row-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .benefit-row-reverse {
        direction: ltr;
    }

    .benefit-row-reverse > * {
        direction: rtl;
    }

    .benefit-row-image-container {
        height: 22.5rem;
    }

    .benefit-row-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .relationship-section {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* Support Channels Section */
.support-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.support-content-centered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.support-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.support-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.support-icon-wrapper {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.support-item:hover .support-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
}

.support-icon {
    color: var(--gold);
}

.support-item-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.support-item-description {
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .support-section {
        padding: 8rem 0;
    }

    .support-items {
        flex-direction: row;
        gap: 3rem;
    }

    .support-item {
        flex: 1;
    }
}

/* Visa Infinite Section */
.visa-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--navy-dark);
}

.visa-card-banner {
    width: 100%;
    max-width: 50rem;
    margin: 2rem auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.visa-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Card Toggle Buttons */
.card-toggle-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 25rem;
}

.card-toggle-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    background-color: transparent;
    color: var(--muted-foreground);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 3rem;
   
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-toggle-btn:hover {
    border-color: var(--gold);
    color: var(--foreground);
    transform: translateY(-2px);
}

.card-toggle-btn.active {
    background-color: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.card-toggle-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.visa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 112rem;
    margin: 0 auto;
}

.visa-card-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-card-wrapper {
    position: relative;
}

.visa-card-image {
    width: 100%;
    max-width: 28rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.7s ease;
}

.visa-card-wrapper:hover .visa-card-image {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
}

.visa-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.visa-card-wrapper:hover .visa-card-glow {
    opacity: 1;
}

.visa-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visa-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(0, 10, 40, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 1s ease;
}

.visa-benefit-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(0.5rem);
}

.visa-benefit-icon-wrapper {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-benefit-icon {
    color: var(--gold);
}

.visa-benefit-text {
    color: var(--foreground);
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .visa-section {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lifestyle Benefits Section */
.lifestyle-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Relationship Image */
.relationship-image-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.relationship-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .relationship-image-container {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .relationship-image {
        height: 800px;
    }
}

.carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.carousel-wrapper {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.carousel-relationship .carousel-wrapper,
.carousel-discovery .carousel-wrapper {
    height: 750px;
}

.carousel-relationship,
.carousel-discovery {
    position: relative;
    z-index: 15;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.carousel-wrapper:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 5, 26, 0.9), rgba(0, 5, 26, 0.4), transparent);
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
}

.carousel-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.carousel-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 10, 40, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--foreground);
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-button:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--gold);
    width: 2rem;
}

@media (min-width: 768px) {
    .lifestyle-section {
        padding: 8rem 0;
    }
    .carousel-wrapper {
        height: 30rem;
    }
    .carousel-title {
        font-size: 2.5rem;
    }
}

/* Wealth Services Section */
.wealth-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--navy-dark);
}

.wealth-content-centered {
    max-width: 56rem;
    margin: 0 auto;
}

.wealth-description {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
}

.wealth-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.wealth-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wealth-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(0, 10, 40, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.wealth-service-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(0.5rem);
}

.wealth-service-icon-wrapper {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wealth-service-icon {
    color: var(--gold);
}

.wealth-service-text {
    color: var(--foreground);
    font-size: 1.125rem;
    padding-top: 0.5rem;
}

.wealth-footer-text {
    color: var(--muted-foreground);
    font-style: italic;
}

.wealth-image-container {
    position: relative;
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.wealth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.wealth-image-container:hover .wealth-image {
    transform: scale(1.1);
}

.wealth-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 5, 26, 0.6), transparent);
}

@media (min-width: 768px) {
    .wealth-section {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .wealth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wealth-image-container {
        height: 600px;
    }
}

/* Banking Privileges Section */
.privileges-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--background);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.privileges-slider-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 25rem;
    overflow: hidden;
}

.privileges-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.privileges-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.privileges-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.privileges-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privileges-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 5, 26, 0.9) 0%,
        rgba(0, 5, 26, 0.6) 50%,
        rgba(0, 5, 26, 0.3) 100%
    );
}

.privileges-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 10;
}

.privileges-slide-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.privileges-slide-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 60rem;
}

.privileges-slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 10, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.privileges-slider-button:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.privileges-slider-button svg {
    color: var(--foreground);
}

.privileges-slider-prev {
    left: 2rem;
}

.privileges-slider-next {
    right: 2rem;
}

.privileges-slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

.privileges-slider-dot:hover {
    background: rgba(212, 175, 55, 0.7);
}

@media (min-width: 768px) {
    .privileges-section {
        padding: 8rem 0;
    }

    .privileges-slider-container {
        height: 30rem;
    }

    .privileges-slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .privileges-slider-container {
        height: 20rem;
    }

    .privileges-slide-content {
        padding: 2rem;
    }

    .privileges-slide-title {
        font-size: 1.75rem;
    }

    .privileges-slide-description {
        font-size: 1rem;
    }

    .privileges-slider-button {
        width: 2.5rem;
        height: 2.5rem;
    }

    .privileges-slider-prev {
        left: 1rem;
    }

    .privileges-slider-next {
        right: 1rem;
    }
}

/* Eligibility Section */
.eligibility-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--navy-dark);
}

.eligibility-content-centered {
    max-width: 72rem;
    margin: 0 auto;
}

.eligibility-content-centered .benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .eligibility-content-centered .benefit-list {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.eligibility-content-centered .benefit-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eligibility-content-centered .benefit-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.eligibility-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 1s ease;
}

.eligibility-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.eligibility-card:hover .eligibility-bg-image {
    transform: scale(1.1);
}

.eligibility-content {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 5, 26, 0.8), rgba(0, 5, 26, 0.95));
    padding: 3rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.5s ease;
}

.eligibility-card:hover .eligibility-content {
    border-color: var(--gold);
}

.eligibility-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.eligibility-card:hover .eligibility-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.3);
}

.eligibility-icon {
    color: var(--gold);
}

.eligibility-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.eligibility-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .eligibility-section {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Discovery Section */
.discovery-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.discovery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 5, 26, 0.5), rgba(0, 5, 26, 0.9));
}

.discovery-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

/* Discovery Carousel */
.discover-carousel-container {
    position: relative;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    z-index: 1;
}

.discover-carousel-wrapper {
    position: relative;
    height: 20rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.discover-carousel .discover-carousel-wrapper {
    height: 750px;
}

.discover-carousel {
    position: relative;
    z-index: 1;
}

.discover-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.discover-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.discover-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.discover-carousel-wrapper:hover .discover-carousel-image {
    transform: scale(1.05);
}

.discover-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(0, 10, 40, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--foreground);
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border-radius: 0.5rem;
}

.discover-carousel-button:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.discover-carousel-prev {
    right: 1rem;
}

.discover-carousel-next {
    left: 1rem;
}

.discover-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.discover-carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-carousel-dot.active {
    background-color: var(--gold);
    width: 2rem;
}

.discovery-subtitle {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.discovery-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.discovery-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.discovery-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 300;
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0.5rem;
}

.discovery-button-primary {
    background-color: var(--gold);
    color: var(--primary);
    display: none; /* Hidden by default on desktop */
}

.discovery-button-primary:hover {
    background-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Show Call Now button only on mobile */
@media (max-width: 767px) {
    .discovery-button-primary {
        display: flex;
    }
}

.discovery-button-secondary {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.discovery-button-secondary:hover {
    background-color: var(--gold);
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.button-icon {
    transition: transform 0.3s ease;
}

.discovery-button-primary:hover .button-icon {
    transform: rotate(12deg);
}

.discovery-button-secondary:hover .button-icon {
    transform: scale(1.1);
}

.discovery-info {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--muted-foreground);
}

.discovery-info-text {
    font-size: 1.125rem;
}

/* Application Form */
.application-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
    opacity: 0;
    margin-top: 0;
}

.application-form.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 3rem;
}

.prime-application-form {
    background: rgba(0, 5, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #141C2E;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
 
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input select,
select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 3rem;
}

select.form-input option {
    background: rgba(15, 23, 42, 0.98);
    color: var(--foreground);
    padding: 0.75rem 1rem;
}

select.form-input option[value=""] {
    color: #3b82f6;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.radio-label:hover {
    background: rgba(255, 255, 255, 0.03);
}

.radio-input {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--gold);
}

.radio-text {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: column;
}

.form-submit-btn,
.form-cancel-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Diodrum Arabic', 'Inter', sans-serif;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.form-submit-btn {
    background-color: var(--gold);
    color: var(--primary);
}

.form-submit-btn:hover {
    background-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.form-cancel-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--muted-foreground);
}

.form-cancel-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .discovery-buttons {
        flex-direction: row;
    }

    .form-actions {
        flex-direction: row;
    }

    .form-submit-btn,
    .form-cancel-btn {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .discovery-section {
        padding: 10rem 0;
    }
    .discovery-subtitle {
        font-size: 2rem;
    }

    .discover-carousel .discover-carousel-wrapper {
        height: 750px;
    }

    .prime-application-form {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .discover-carousel .discover-carousel-wrapper {
        height: 400px;
    }

    .discover-carousel-button {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
}

/* Footer Top Section */
.footer-top {
    position: relative;
    padding: 4rem 0;
    background-color: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--muted-foreground);
}

.footer-terms {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Footer Bottom Section */
.footer-bottom {
    position: relative;
    background-color: rgba(100, 100, 100, 0);
    padding: 2rem 0;
    overflow: hidden;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-logo {
    height: 2.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--navy-dark);
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--foreground);
    font-size: 0.875rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer Legal Section */
.footer-legal {
    background-color: rgba(0, 20, 80, 0.8);
    padding: 1rem 0;
}

.footer-legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--foreground);
}

/* Footer Responsive */
@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-left {
        align-items: flex-start;
    }

    .footer-center {
        align-items: flex-start;
        text-align: right;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-legal-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate .introduction-text,
.scroll-animate .section-header,
.scroll-animate .benefit-card,
.scroll-animate .relationship-banner,
.scroll-animate .relationship-content-centered,
.scroll-animate .support-content-centered,
.scroll-animate .visa-card-banner,
.scroll-animate .visa-card-container,
.scroll-animate .visa-benefit-item,
.scroll-animate .carousel-container,
.scroll-animate .relationship-image-container,
.scroll-animate .wealth-content-centered,
.scroll-animate .eligibility-content-centered,
.scroll-animate .privilege-card,
.scroll-animate .eligibility-card,
.scroll-animate .discovery-content > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.scroll-animate.visible .introduction-text,
.scroll-animate.visible .section-header,
.scroll-animate.visible .benefit-card,
.scroll-animate.visible .relationship-banner,
.scroll-animate.visible .relationship-content-centered,
.scroll-animate.visible .support-content-centered,
.scroll-animate.visible .visa-card-banner,
.scroll-animate.visible .visa-card-container,
.scroll-animate.visible .visa-benefit-item,
.scroll-animate.visible .carousel-container,
.scroll-animate.visible .relationship-image-container,
.scroll-animate.visible .wealth-content-centered,
.scroll-animate.visible .eligibility-content-centered,
.scroll-animate.visible .privilege-card,
.scroll-animate.visible .eligibility-card,
.scroll-animate.visible .discovery-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.scroll-animate.visible .benefit-card:nth-child(1) { transition-delay: 0ms; }
.scroll-animate.visible .benefit-card:nth-child(2) { transition-delay: 150ms; }
.scroll-animate.visible .benefit-card:nth-child(3) { transition-delay: 300ms; }
.scroll-animate.visible .benefit-card:nth-child(4) { transition-delay: 450ms; }

.scroll-animate.visible .visa-benefit-item:nth-child(1) { transition-delay: 0ms; }
.scroll-animate.visible .visa-benefit-item:nth-child(2) { transition-delay: 100ms; }
.scroll-animate.visible .visa-benefit-item:nth-child(3) { transition-delay: 200ms; }
.scroll-animate.visible .visa-benefit-item:nth-child(4) { transition-delay: 300ms; }
.scroll-animate.visible .visa-benefit-item:nth-child(5) { transition-delay: 400ms; }
.scroll-animate.visible .visa-benefit-item:nth-child(6) { transition-delay: 500ms; }

.scroll-animate.visible .privilege-card:nth-child(1) { transition-delay: 0ms; }
.scroll-animate.visible .privilege-card:nth-child(2) { transition-delay: 100ms; }
.scroll-animate.visible .privilege-card:nth-child(3) { transition-delay: 200ms; }
.scroll-animate.visible .privilege-card:nth-child(4) { transition-delay: 300ms; }

.scroll-animate.visible .eligibility-card:nth-child(1) { transition-delay: 0ms; }
.scroll-animate.visible .eligibility-card:nth-child(2) { transition-delay: 200ms; }

.scroll-animate.visible .relationship-banner { transition-delay: 200ms; }
.scroll-animate.visible .relationship-content-centered { transition-delay: 0ms; }
.scroll-animate.visible .support-content-centered { transition-delay: 0ms; }
.scroll-animate.visible .visa-card-banner { transition-delay: 200ms; }
.scroll-animate.visible .wealth-content-centered { transition-delay: 0ms; }
.scroll-animate.visible .eligibility-content-centered { transition-delay: 0ms; }

.scroll-animate.visible .carousel-container { transition-delay: 300ms; }

