/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== PRIMARY COLORS ===== */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --accent: #10b981;
    
    /* ===== DARK MODE COLORS ===== */
    --bg-primary: linear-gradient(145deg, #0c111e 0%, #151e2c 100%);
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border-color: rgba(59, 130, 246, 0.2);
    --card-hover: rgba(59, 130, 246, 0.15);
    
    /* ===== NAVBAR COLORS ===== */
    --navbar-bg: #141b2b;
    --navbar-scroll: rgba(20, 27, 43, 0.98);
    
    /* ===== LIGHT / CREAMY COLORS (FOR SPECIFIC SECTIONS) ===== */
    --cream-bg: #faf5eb;
    --cream-card: #fffaf2;
    --cream-border: #f0e4d5;
    --cream-hover: #ffe8d6;
    --text-dark: #2c3e50;
    --text-soft: #5a6b7a;
    --text-muted: #7e8c9e;
    
    /* ===== BOX COLORS - DARK GLASS ===== */
    --glass-bg: linear-gradient(135deg, rgba(20, 30, 50, 0.9), rgba(30, 40, 60, 0.8));
    --glass-border: rgba(59, 130, 246, 0.2);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.1);
    
    /* ===== UTILITY COLORS ===== */
    --gray: #64748b;
    --gray-light: #94a3b8;
    --white: #ffffff;
    --dark: #0a0f1c;
    --dark-light: #111827;
    --dark-card: #1a1f2e;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.06);
    
    /* ===== SHADOWS & BORDERS ===== */
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove transition from background-color */
* {
    transition: color 0.2s ease, border-color 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--navbar-scroll);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.nav-logo-img {
    height: 35px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

.nav-logo-text .gatevia {
    color: var(--text-primary);
}

.nav-logo-text .pay {
    color: var(--primary);
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 0.5rem 1.3rem !important;
    border-radius: 30px;
    font-weight: 600 !important;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(139, 92, 246, 0.03) 0px, rgba(139, 92, 246, 0.03) 1px, transparent 1px, transparent 10px);
    background-size: 100% 100%, 20px 20px;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 4;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 2;
}

.circle-1 {
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: min(500px, 70vw);
    height: min(500px, 70vw);
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
}

.circle-3 {
    width: min(400px, 60vw);
    height: min(400px, 60vw);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3rem) !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.02em !important;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    color: var(--text-secondary) !important;
    margin-bottom: 2rem !important;
}

/* ===== ROW DIVIDERS ===== */
.row-divider {
    text-align: center;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.divider-hero-text {
    font-size: clamp(1.3rem, 3vw, 1.5rem) !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--card-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SETTLEMENT SECTION ===== */
.settlement-half {
    padding: 80px 0;
    background: var(--bg-primary);
}

.settlement-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.settlement-content-box {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.settlement-content-box:hover {
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.settlement-title {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.settlement-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.settlement-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

.settlement-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.settlement-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.settlement-arrow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.settlement-arrow-box {
    background: var(--dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.settlement-arrow-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(139, 92, 246, 0.05) 0px, rgba(139, 92, 246, 0.05) 1px, transparent 1px, transparent 10px);
    background-size: 100% 100%, 20px 20px;
    z-index: 0;
    pointer-events: none;
}

.settlement-arrow-box > * {
    position: relative;
    z-index: 1;
}

.settlement-arrow-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.arrow-brand-text {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.arrow-brand-text .gatevia-arrow {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.arrow-brand-text .pay-arrow {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: 5px;
}

.arrow-tagline-large {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.settlement-arrow-img {
    max-width: 85%;
    height: auto;
    max-height: 300px;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
    position: relative;
    z-index: 1;
}

.settlement-arrow-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.arrow-instant-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ===== SETTLEMENT METHODS SECTION - DARK BOX WITH ICONS ===== */
.settlement-methods-section {
    padding: 60px 0 80px;
    background: transparent;
}

.settlement-methods-box {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.settlement-methods-box .section-title,
.settlement-methods-box h2.section-title {
    color: white !important;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    background: transparent !important;
    -webkit-text-fill-color: white !important;
}

.settlement-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.settlement-btn {
    padding: 12px 24px;
    border: 1px solid var(--primary);
    background: transparent;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.settlement-btn:hover,
.settlement-btn.active {
    background: var(--primary);
    color: white;
}

.settlement-info {
    display: none;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.settlement-info.active {
    display: block;
}

.settlement-info h4 {
    color: white !important;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== NEW ICON STYLES FOR SETTLEMENT METHODS ===== */
.wallet-list, .bank-list, .crypto-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wallet-list li, .bank-list li, .crypto-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.wallet-icon, .bank-icon, .crypto-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Special styling for bank icons (if they have white background) */
.bank-icon[src*="hbl"], 
.bank-icon[src*="ubl"] {
    background-color: #fff;
    padding: 2px;
    border-radius: 6px;
}

.settlement-info li em {
    color: var(--primary);
    font-style: italic;
}

.settlement-info .note {
    color: white !important;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--card-hover);
}

.flag-emoji-container {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pakistan-flag-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 80px 0;
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--card-hover);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== CTA SECTION ===== */
.cta-full {
    padding: 20px 0 20px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.cta-bg {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-content .btn {
    margin: 0 auto 0 auto;
}

/* ===== APPLICATION FORM SECTION ===== */
.apply-section {
    padding: 80px 0;
    background: transparent;
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.apply-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.apply-image .brand-text {
    margin-bottom: 10px;
}

.apply-image .brand-text .gatevia-arrow {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.apply-image .brand-text .pay-arrow {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: 5px;
}

.apply-image .tagline {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: -10px;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.apply-arrow-img {
    max-width: 85%;
    height: auto;
    max-height: 350px;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
}

.apply-arrow-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.apply-form-container {
    padding: 0;
}

.apply-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: 1px;
}

.apply-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select {
    background: var(--dark-card);
}

.form-group select option {
    background: var(--dark-card);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.captcha-group {
    margin: 0.5rem 0;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: white;
}

.captcha-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.apply-form .btn {
    margin-top: 10px;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #4ade80;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--card-hover);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 20px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-card);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr !important;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-logo-text .gatevia-footer {
    color: var(--text-primary);
}

.footer-logo-text .pay-footer {
    color: var(--primary);
    margin-left: 4px;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-menu li i {
    margin-right: 0.75rem;
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-btn-wrapper {
    margin-top: 20px;
}

.footer-btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    display: inline-block;
}

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter-col {
    max-width: 100%;
}

.newsletter-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 5px;
    transition: var(--transition);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.newsletter-message {
    margin-top: 10px;
    font-size: 0.85rem;
    min-height: 20px;
}

.newsletter-message.success {
    color: #4ade80;
}

.newsletter-message.error {
    color: #f87171;
}

/* ===== HERO CORE SERVICE ===== */
.hero-core-service {
    margin: 10px 0 20px 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-core-service .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-title {
    margin-bottom: 5px;
}

/* ===== BACK TO HOME BUTTON ===== */
.back-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 20px;
    margin: 20px 0 0 0;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: fit-content;
}

.back-home-btn i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-home-btn span {
    font-size: 0.95rem;
}

.back-home-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.back-home-btn:hover i {
    color: white;
}

.back-home-btn:hover i:first-child {
    transform: translateX(-5px);
}

/* ===== FLOATING HOME BUTTON ===== */
.floating-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.floating-home-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.floating-home-btn .btn-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-card);
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-home-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.floating-home-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* ===== BUSINESS NAME STYLES ===== */
.business-name {
    margin-bottom: 5px;
}

.business-name .gatevia-address {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.business-name .pay-address {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-left: 4px;
}

/* ===== BUTTON LOADING STYLES ===== */
.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.9;
}

.btn.loading .btn-text {
    visibility: hidden;
    opacity: 0;
}

.btn.loading .btn-spinner {
    display: flex !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
}

.btn-spinner i {
    font-size: 1.2rem;
    color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn.loading::after {
    display: none;
}

/* ===== SETTLEMENT TAGS ===== */
.settlement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.settlement-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

/* ===== GUIDES PAGE STYLES ===== */
.guides-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.guides-header {
    text-align: center;
    margin-bottom: 50px;
}

.guides-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.guides-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--card-hover);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.guide-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.guide-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.guide-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.guide-preview {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--secondary);
}

.guide-full {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.guide-full.active {
    display: block;
}

.guide-full h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 20px 0 10px;
}

.guide-full p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guide-full ul {
    color: var(--text-secondary);
    padding-left: 20px;
    margin-bottom: 20px;
}

.guide-full li {
    margin-bottom: 8px;
}

.back-to-top {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.back-to-top:hover {
    text-decoration: underline;
}

/* ===== THEME TOAST NOTIFICATION ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    to {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navbar-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 20px;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-primary);
    }
    
    .nav-cta {
        margin-top: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-core-service {
        font-size: 1.5rem;
        margin: 5px 0 15px 0;
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid,
    .features-grid,
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .settlement-container,
    .apply-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .settlement-content-box {
        padding: 1.5rem;
    }
    
    .settlement-arrow {
        order: -1;
    }
    
    .apply-wrapper {
        padding: 1.5rem;
    }
    
    .apply-image {
        order: -1;
    }
    
    .apply-image .brand-text .gatevia-arrow,
    .apply-image .brand-text .pay-arrow {
        font-size: 2rem;
    }
    
    .apply-image .tagline {
        font-size: 1rem;
    }
    
    .apply-arrow-img {
        max-height: 280px;
    }
    
    .cta-full {
        padding: 15px 0 15px 0;
    }
    
    .footer {
        display: block !important;
        padding: 40px 0 20px !important;
    }
    
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .footer-col {
        display: block !important;
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-menu li {
        justify-content: center;
    }
    
    .footer-newsletter-col {
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .row-divider {
        margin: 30px auto;
    }
    
    .newsletter-input-group {
        max-width: 100%;
    }
    
    .back-home-btn {
        padding: 10px 15px;
        gap: 8px;
        margin: 15px auto 0;
    }
    
    .back-home-btn span {
        font-size: 0.9rem;
    }
    
    .floating-home-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .floating-home-btn .btn-tooltip {
        display: none;
    }
    
    .pakistan-flag-img {
        width: 35px;
        height: 35px;
    }
    
    .settlement-arrow-box {
        padding: 20px;
    }
    
    .arrow-brand-text .gatevia-arrow,
    .arrow-brand-text .pay-arrow {
        font-size: 2rem;
    }
    
    .arrow-tagline-large {
        font-size: 1.5rem;
    }
    
    .arrow-instant-text {
        font-size: 1rem;
    }
    
    .settlement-arrow-img {
        max-height: 250px;
    }
    
    .business-name .gatevia-address,
    .business-name .pay-address {
        font-size: 1.1rem;
    }
    
    .settlement-buttons {
        justify-content: center;
    }
    
    .settlement-info ul {
        grid-template-columns: 1fr;
    }
    
    .guides-page {
        padding: 100px 0 60px;
    }
    
    .guides-header h1 {
        font-size: 2.2rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .settlement-methods-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 28px;
    }
    
    .nav-logo-text {
        font-size: 1rem;
    }
    
    .footer-logo-img {
        height: 28px;
    }
    
    .footer-logo-text {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-core-service {
        font-size: 1.2rem;
        margin: 5px 0 10px 0;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    .service-card,
    .industry-card,
    .testimonial-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .apply-wrapper {
        padding: 1.2rem;
    }
    
    .apply-form-container h3 {
        font-size: 1.5rem;
    }
    
    .apply-image .brand-text .gatevia-arrow,
    .apply-image .brand-text .pay-arrow {
        font-size: 1.8rem;
    }
    
    .apply-image .tagline {
        font-size: 0.9rem;
    }
    
    .apply-arrow-img {
        max-height: 220px;
    }
    
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 10px;
    }
    
    .newsletter-input-group input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 50px;
        padding: 12px 20px;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 50px;
        padding: 12px;
    }
    
    .newsletter-btn i {
        margin-right: 8px;
    }
    
    .arrow-brand-text .gatevia-arrow,
    .arrow-brand-text .pay-arrow {
        font-size: 1.8rem;
    }
    
    .arrow-tagline-large {
        font-size: 1.2rem;
    }
    
    .arrow-instant-text {
        font-size: 0.9rem;
    }
    
    .settlement-arrow-img {
        max-height: 200px;
    }
    
    .settlement-buttons {
        flex-direction: column;
    }
    
    .settlement-btn {
        width: 100%;
    }
    
    .settlement-methods-box {
        padding: 20px;
    }
    
    .settlement-info {
        padding: 20px;
    }
    
    .settlement-info ul {
        grid-template-columns: 1fr;
    }
    
    .cta-full {
        padding: 10px 0 10px 0;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-core-service {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .nav-logo-text {
        font-size: 0.9rem;
    }
    
    .nav-logo-img {
        height: 24px;
    }
    
    .footer-logo-img {
        height: 24px;
    }
    
    .footer-logo-text {
        font-size: 0.9rem;
    }
    
    .apply-image .brand-text .gatevia-arrow,
    .apply-image .brand-text .pay-arrow {
        font-size: 1.5rem;
    }
    
    .pakistan-flag-img {
        width: 30px;
        height: 30px;
    }
    
    .arrow-brand-text .gatevia-arrow,
    .arrow-brand-text .pay-arrow {
        font-size: 1.5rem;
    }
    
    .arrow-tagline-large {
        font-size: 1.1rem;
    }
    
    .arrow-instant-text {
        font-size: 0.8rem;
    }
    
    .settlement-arrow-img {
        max-height: 180px;
    }
    
    .cta-full {
        padding: 5px 0 5px 0;
    }
}

