/* ============================================================
   BMO EXPRESS BANK - Professional Banking Website
   Mobile-First Responsive Design
   ============================================================ */

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

:root {
    --navy: #0B1628;
    --navy-light: #141f35;
    --navy-dark: #060e1a;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8960C;
    --accent-blue: #1E5CE5;
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --success: #10B981;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45); }

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ---- SECTION LABEL ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gold);
}
.section-label .label-line { width: 24px; height: 2px; background: var(--gold); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.section-header h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px; }
.section-header p { color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-info { display: flex; align-items: center; gap: 16px; }
.top-bar-info span { font-size: 11px; color: var(--gray-400); display: flex; align-items: center; gap: 5px; }
.top-bar-info span i { color: var(--gold); font-size: 10px; }
.top-bar-actions { display: flex; align-items: center; gap: 10px; }
.top-bar-actions a { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-sm); transition: all 0.3s ease; }
.top-bar .login-link { color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.top-bar .login-link:hover { background: rgba(255,255,255,0.1); }
.top-bar .consult-link { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--gray-100);
}
.main-nav.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--navy); font-weight: 800;
}
.logo-text h1 { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: 0.5px; line-height: 1.1; }
.logo-text span { font-size: 9px; color: var(--gray-400); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--gray-600);
    letter-spacing: 0.5px; text-transform: uppercase; border-radius: var(--radius-sm);
    position: relative; transition: all 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0); width: 16px; height: 2px;
    background: var(--gold); transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 8px 18px; font-size: 11px; }

.hamburger { display: none; width: 28px; height: 28px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 75%; }
.hamburger span:nth-child(3) { width: 50%; }
.hamburger:hover span { width: 100%; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); width: 100%; }

.mobile-menu {
    display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
    height: 100vh; background: var(--white); z-index: 1000; padding: 90px 32px 32px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column; gap: 4px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { padding: 14px 0; font-size: 14px; font-weight: 600; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.mobile-menu a:hover { color: var(--gold); padding-left: 6px; }

.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.open { display: block; opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0B1628 0%, #0d1f3c 40%, #141f35 70%, #1a103c 100%);
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(30,92,229,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212,175,55,0.08) 0%, transparent 40%); }

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 750px; padding: 0 20px; animation: fadeInUp 0.8s ease forwards; }

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

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); border-radius: 50px; margin-bottom: 24px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); animation: fadeInUp 0.8s ease 0.2s both; }
.hero-badge .pulse-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.5; } }

.hero h1 { font-size: clamp(30px, 5vw, 60px); font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 18px; letter-spacing: -1px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.7); max-width: 550px; margin: 0 auto 32px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.4s both; }

.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.5s both; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 48px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500; }
.hero-trust-item i { color: var(--gold); font-size: 14px; }

.hero-float-cards { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.float-card {
    position: absolute; background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
    padding: 14px 18px; color: var(--white); font-size: 12px; font-weight: 500;
    animation: floatCard 6s ease-in-out infinite;
}
.float-card:nth-child(1) { top: 18%; left: 6%; animation-delay: 0s; }
.float-card:nth-child(2) { top: 25%; right: 6%; animation-delay: 2s; }
.float-card:nth-child(3) { bottom: 22%; left: 10%; animation-delay: 4s; }
.float-card:nth-child(4) { bottom: 28%; right: 8%; animation-delay: 1s; }
.float-card-icon { width: 32px; height: 32px; background: rgba(212,175,55,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; color: var(--gold); font-size: 12px; }
.float-card-value { font-size: 18px; font-weight: 700; color: var(--gold); }
.float-card-label { font-size: 10px; color: rgba(255,255,255,0.45); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 40px 0; border-top: 1px solid rgba(212,175,55,0.08); border-bottom: 1px solid rgba(212,175,55,0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { text-align: center; padding: 16px 8px; position: relative; }
.stat-card:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
.stat-number { font-size: 36px; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: var(--gray-400); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   FEATURES WITH IMAGES
   ============================================================ */
.features-section { padding: 60px 0; background: var(--off-white); }
.features-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card-v2 {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card-v2:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

.feature-card-image { width: 100%; height: 180px; overflow: hidden; position: relative; }
.feature-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.feature-card-v2:hover .feature-card-image img { transform: scale(1.06); }
.feature-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%); }

.feature-card-icon-overlay {
    position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--navy); box-shadow: 0 6px 20px rgba(212,175,55,0.3);
    z-index: 10; border: 3px solid var(--white);
}

.feature-card-body { padding: 40px 24px 28px; text-align: center; }
.feature-card-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   BANK CARD SHOWCASE
   ============================================================ */
.card-showcase-section { padding: 60px 0; background: linear-gradient(135deg, #0B1628 0%, #141f35 50%, #0d1f3c 100%); position: relative; overflow: hidden; }
.card-showcase-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.05) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(30,92,229,0.06) 0%, transparent 40%); }
.card-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }

.card-showcase-content .section-label { color: var(--gold); }
.card-showcase-content h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.15; }
.card-showcase-content > p { color: rgba(255,255,255,0.65); margin-bottom: 12px; line-height: 1.7; font-size: 14px; }

.card-features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.card-feature-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; }
.card-feature-item i { width: 32px; height: 32px; background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(30,92,229,0.08)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); flex-shrink: 0; }

/* ---- ATM CARD ---- */
.atm-card-wrapper { display: flex; align-items: center; justify-content: center; perspective: 1200px; position: relative; }
.card-back-effect { position: absolute; width: 340px; height: 210px; background: linear-gradient(135deg, rgba(11,22,40,0.5), rgba(20,31,53,0.3)); border-radius: 18px; top: 20px; right: 10px; transform: rotateY(-18deg) rotateX(8deg); border: 1px solid rgba(212,175,55,0.06); z-index: 0; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.atm-card { width: 380px; height: 235px; border-radius: 18px; background: linear-gradient(135deg, #1a2744 0%, #0f1d35 30%, #141f35 60%, #1a2744 100%); position: relative; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.08), inset 0 1px 0 rgba(255,255,255,0.06); transform-style: preserve-3d; animation: cardFloat 6s ease-in-out infinite; z-index: 2; }
.atm-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(212,175,55,0.02) 40%, rgba(212,175,55,0.06) 50%, rgba(212,175,55,0.02) 60%, transparent 70%); }
.card-shine { position: absolute; inset: 0; border-radius: 18px; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.015) 42%, rgba(255,255,255,0.04) 48%, rgba(255,255,255,0.015) 54%, transparent 60%); pointer-events: none; z-index: 15; }
.card-holo { position: absolute; bottom: 16px; right: 28px; width: 50px; height: 34px; background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(30,92,229,0.15), rgba(212,175,55,0.2), rgba(16,185,129,0.1)); border-radius: 5px; opacity: 0.5; }

@keyframes cardFloat { 0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); } 50% { transform: rotateY(-6deg) rotateX(7deg) translateY(-8px); } }

.atm-card-inner { position: relative; z-index: 10; padding: 22px 26px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }

.card-top { display: flex; align-items: center; justify-content: space-between; }
.card-chip { width: 42px; height: 32px; background: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #B8960C 100%); border-radius: 7px; position: relative; overflow: hidden; box-shadow: 0 2px 6px rgba(212,175,55,0.25); }
.card-chip::before { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(0,0,0,0.12); border-radius: 4px; }
.card-chip::after { content: ''; position: absolute; top: 50%; left: 6px; right: 6px; height: 1px; background: rgba(0,0,0,0.12); }

.card-bank-logo { font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: 2px; }
.card-contactless { display: flex; align-items: center; gap: 2px; }
.card-contactless span { width: 18px; height: 18px; border: 2px solid rgba(212,175,55,0.3); border-radius: 50%; }
.card-contactless span:nth-child(2) { width: 14px; height: 14px; margin-left: -8px; }
.card-contactless span:nth-child(3) { width: 10px; height: 10px; margin-left: -6px; background: rgba(212,175,55,0.2); }

.card-number { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.card-number .digit-group { font-family: 'Courier New', monospace; font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 3px; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }

.card-details { display: flex; align-items: flex-end; justify-content: space-between; }
.card-holder-info .label, .card-expiry .label { font-size: 8px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 3px; }
.card-holder-info .value, .card-expiry .value { font-family: 'Courier New', monospace; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 1px; }
.card-expiry { text-align: right; }

.card-bottom { display: flex; align-items: center; justify-content: space-between; }
.card-type-logo { display: flex; align-items: center; }
.logo-circle { width: 30px; height: 30px; border-radius: 50%; }
.logo-circle.red { background: rgba(235,0,27,0.75); }
.logo-circle.orange { background: rgba(247,158,27,0.75); margin-left: -12px; }

/* ============================================================
   ABOUT HOME (WITH ATM CARD REPLACING BMO IMAGE)
   ============================================================ */
.about-home { padding: 60px 0; position: relative; overflow: hidden; }
.about-home-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,22,40,0.97) 0%, rgba(20,31,53,0.98) 100%); z-index: 0; }
.about-home .container { position: relative; z-index: 2; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-content .section-label { color: var(--gold); }
.about-content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.about-content > p { color: rgba(255,255,255,0.7); margin-bottom: 14px; line-height: 1.8; font-size: 14px; }

.about-features-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-features-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
.about-features-list li i { width: 24px; height: 24px; background: rgba(212,175,55,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--gold); flex-shrink: 0; }

.about-visual { display: flex; align-items: center; justify-content: center; }
.about-visual .atm-card { width: 340px; height: 210px; animation: cardFloatAbout 5s ease-in-out infinite; }
.about-visual .atm-card .digit-group { font-size: 18px; }
.about-visual .atm-card-inner { padding: 18px 22px; }
.about-visual .card-chip { width: 38px; height: 28px; }
.about-visual .card-bank-logo { font-size: 11px; }
.about-visual .card-holo { width: 44px; height: 30px; }

@keyframes cardFloatAbout { 0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-4deg) rotateX(6deg) translateY(-6px); } }

/* ============================================================
   SLIDER
   ============================================================ */
.slider-section { padding: 60px 0; background: var(--white); }
.slider-wrapper { position: relative; max-width: 1100px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.slides { position: relative; min-height: 420px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: stretch; }
.slide.active { opacity: 1; position: relative; }

.slide-image { flex: 1; min-height: 420px; position: relative; overflow: hidden; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.slide-image-content { text-align: center; padding: 40px; }
.slide-image-content i { font-size: 64px; color: var(--gold); margin-bottom: 16px; opacity: 0.8; }
.slide-image-content h4 { font-size: 20px; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.slide-image-content p { font-size: 13px; color: rgba(255,255,255,0.5); }

.slide-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--navy) 100%); }

.slide-content { width: 45%; background: var(--navy); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.slide-content .section-label { color: var(--gold); margin-bottom: 16px; }
.slide-content h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.slide-content p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 14px; margin-bottom: 28px; }

.slide-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 32px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--gold); width: 48px; }

/* ============================================================
   CRYPTO
   ============================================================ */
.crypto-section { padding: 50px 0; background: linear-gradient(135deg, #0B1628 0%, #0d1f3c 100%); position: relative; }
.crypto-header { text-align: center; margin-bottom: 30px; }
.crypto-header h2 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.crypto-header p { color: rgba(255,255,255,0.45); font-size: 13px; }
.tradingview-widget-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }

/* ============================================================
   CONTACT FORM (HOME)
   ============================================================ */
.contact-home-section { padding: 60px 0; background: var(--off-white); }
.contact-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.contact-home-info h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.contact-home-info > p { color: var(--gray-600); margin-bottom: 28px; line-height: 1.7; font-size: 14px; }

.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-100); transition: all 0.3s ease; }
.contact-method:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(6px); }
.contact-method-icon { width: 42px; height: 42px; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(30,92,229,0.06)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.contact-method-text .label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.contact-method-text .value { font-size: 13px; color: var(--navy); font-weight: 600; }

.contact-home-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); position: relative; overflow: hidden; }
.contact-home-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--accent-blue), var(--gold)); }
.contact-home-form h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-home-form > p { color: var(--gray-600); font-size: 13px; margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif; font-size: 13px; color: var(--navy); background: var(--off-white); transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(212,175,55,0.08); }
.contact-home-form button[type="submit"] {
    width: 100%; padding: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy);
    border: none; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease;
}
.contact-home-form button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { padding: 60px 0 50px; background: var(--off-white); text-align: center; }
.cta-box { max-width: 650px; margin: 0 auto; padding: 48px 32px; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--accent-blue), var(--gold)); }
.cta-box h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.cta-box p { color: var(--gray-600); margin-bottom: 28px; font-size: 14px; line-height: 1.7; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { padding: 40px 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trust-grid { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; opacity: 0.55; transition: opacity 0.3s ease; }
.trust-item:hover { opacity: 1; }
.trust-item i { font-size: 24px; color: var(--gray-400); }
.trust-item span { font-size: 12px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   NOTIFICATIONS
   ============================================================ */
.notification { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 10px; animation: fadeIn 0.4s ease; }
.notification i { font-size: 16px; flex-shrink: 0; }
.notification.success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); color: #059669; }
.notification.error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #DC2626; }

/* ============================================================
   GOOGLE TRANSLATE
   ============================================================ */
#google_translate_element { margin-bottom: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(180deg, #060e1a 0%, #0B1628 100%); border-top: 1px solid rgba(212,175,55,0.08); }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent); }

.footer-top { padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }

.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--navy); font-weight: 800; }
.footer-brand h2 { font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.footer-brand > p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 14px; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.06); }
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }

.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.45); font-size: 13px; transition: all 0.3s ease; }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-info h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.f-contact-item i { color: var(--gold); font-size: 13px; margin-top: 3px; }
.f-contact-item span { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.5; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.35); transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (About / Contact)
   ============================================================ */
.page-hero { position: relative; padding: 100px 0 70px; background: linear-gradient(135deg, #0B1628 0%, #0d1f3c 50%, #141f35 100%); text-align: center; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(212,175,55,0.06) 0%, transparent 40%), radial-gradient(circle at 70% 60%, rgba(30,92,229,0.06) 0%, transparent 40%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.5px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.35); }
.breadcrumb a { color: rgba(255,255,255,0.6); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-main { padding: 50px 0; background: var(--white); }
.about-grid-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-text-block .section-label { color: var(--gold); }
.about-text-block h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.about-text-block > p { color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; font-size: 14px; }

.about-img-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); min-height: 300px; padding: 30px; }
.about-img-wrapper .atm-card { width: 320px; height: 200px; animation: cardFloatAbout 5s ease-in-out infinite; }
.about-img-wrapper .atm-card .digit-group { font-size: 17px; }

.values-section { padding: 50px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--gray-100); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: center; transition: transform 0.4s ease; }
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.value-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(30,92,229,0.06)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 22px; color: var(--gold); transition: all 0.4s ease; }
.value-card:hover .value-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--gray-600); font-size: 13px; line-height: 1.7; }

.why-section { padding: 50px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.why-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--off-white); border-radius: var(--radius-md); border: 1px solid var(--gray-100); transition: all 0.3s ease; }
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--navy); flex-shrink: 0; }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-card p { font-size: 12px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 50px 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: start; }

.contact-form-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.contact-form-wrapper h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrapper > p { color: var(--gray-600); font-size: 13px; margin-bottom: 24px; }
.contact-form-wrapper button[type="submit"] { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border: none; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; }
.contact-form-wrapper button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }

.contact-info-wrapper { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid rgba(212,175,55,0.08); }
.info-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.info-card h3 i { color: var(--gold); font-size: 14px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.info-item:last-child { margin-bottom: 0; }
.info-item-icon { width: 38px; height: 38px; background: rgba(212,175,55,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; }
.info-item-text .label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.info-item-text .value { font-size: 13px; color: var(--white); font-weight: 500; }

.map-section { padding: 40px 0 50px; background: var(--off-white); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); position: relative; background: var(--navy); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; color: rgba(255,255,255,0.55); padding: 40px; }
.map-placeholder i { font-size: 40px; color: var(--gold); margin-bottom: 12px; }
.map-placeholder h4 { font-size: 16px; color: var(--white); margin-bottom: 6px; }
.map-placeholder p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gray-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }


/* ============================================================
   RESPONSIVE - TABLET (1024px and below)
   ============================================================ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2)::after { display: none; }
    .features-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .card-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .card-back-effect { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid-alt { grid-template-columns: 1fr; gap: 40px; }
    .slider-wrapper { margin: 0 20px; }
    .contact-home-grid { grid-template-columns: 1fr; gap: 35px; }
    .contact-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   RESPONSIVE - MOBILE (768px and below)
   ============================================================ */
@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 16px; }

    /* Hide desktop nav, show hamburger */
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .nav-inner { height: 60px; }
    .logo-icon { width: 34px; height: 34px; font-size: 11px; }
    .logo-text h1 { font-size: 15px; }

    /* Top bar */
    .top-bar-info { display: none; }
    .top-bar-inner { justify-content: center; }
    .top-bar-actions a { font-size: 10px; padding: 5px 12px; }

    /* Hero */
    .hero { min-height: auto; padding: 60px 0 50px; }
    .hero h1 { font-size: 28px; margin-bottom: 14px; }
    .hero p { font-size: 14px; margin-bottom: 24px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; margin-bottom: 18px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .hero-trust { flex-direction: column; gap: 10px; margin-top: 30px; }
    .hero-float-cards { display: none; }

    /* Stats */
    .stats-bar { padding: 30px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 12px 6px; }
    .stat-card::after { display: none; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 10px; }

    /* Features */
    .features-section { padding: 45px 0; }
    .features-grid-v2 { grid-template-columns: 1fr; gap: 20px; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 14px; }
    .feature-card-image { height: 160px; }
    .feature-card-body { padding: 36px 20px 24px; }
    .feature-card-body h3 { font-size: 17px; }
    .feature-card-body p { font-size: 13px; }

    /* Card showcase */
    .card-showcase-section { padding: 45px 0; }
    .card-showcase-grid { gap: 35px; }
    .card-showcase-content h2 { font-size: 24px; }
    .card-showcase-content > p { font-size: 13px; }
    .card-features { margin: 18px 0; gap: 8px; }
    .card-feature-item { font-size: 12px; }
    .card-feature-item i { width: 28px; height: 28px; font-size: 11px; }

    /* ATM Card mobile */
    .atm-card { width: 100%; max-width: 320px; height: 200px; }
    .atm-card-inner { padding: 18px 20px; }
    .card-number .digit-group { font-size: 17px; letter-spacing: 2px; }
    .card-chip { width: 36px; height: 28px; }
    .card-holder-info .value, .card-expiry .value { font-size: 12px; }
    .card-bank-logo { font-size: 11px; }
    .logo-circle { width: 26px; height: 26px; }
    .card-holo { width: 40px; height: 28px; }

    /* About */
    .about-home { padding: 45px 0; }
    .about-grid { gap: 35px; }
    .about-content h2 { font-size: 24px; }
    .about-content > p { font-size: 13px; }
    .about-features-list { gap: 10px; margin: 18px 0; }
    .about-features-list li { font-size: 12px; }
    .about-visual .atm-card { width: 280px; height: 175px; }
    .about-visual .atm-card .digit-group { font-size: 15px; }

    /* Slider */
    .slider-section { padding: 45px 0; }
    .slider-wrapper { margin: 0 16px; border-radius: var(--radius-md); }
    .slides { min-height: auto; }
    .slide { flex-direction: column; position: relative; opacity: 0; }
    .slide.active { opacity: 1; position: relative; }
    .slide-image { min-height: 180px; width: 100%; }
    .slide-image::after { background: linear-gradient(180deg, transparent 30%, var(--navy) 100%); }
    .slide-content { width: 100%; padding: 28px 24px; }
    .slide-content h3 { font-size: 20px; }
    .slide-content p { font-size: 13px; margin-bottom: 20px; }
    .slide-dots { bottom: 16px; }

    /* Crypto */
    .crypto-section { padding: 40px 0; }
    .crypto-header h2 { font-size: 20px; }

    /* Contact home */
    .contact-home-section { padding: 45px 0; }
    .contact-home-grid { gap: 30px; }
    .contact-home-info h2 { font-size: 24px; }
    .contact-home-form { padding: 28px 20px; }
    .contact-method { padding: 14px 16px; }
    .contact-method:hover { transform: translateX(4px); }

    /* CTA */
    .cta-section { padding: 45px 0 40px; }
    .cta-box { padding: 36px 24px; margin: 0 16px; }
    .cta-box h2 { font-size: 22px; }

    /* Trust */
    .trust-section { padding: 30px 0; }
    .trust-grid { gap: 24px; flex-direction: column; }
    .trust-item span { font-size: 11px; }

    /* Page Hero */
    .page-hero { padding: 80px 0 50px; }
    .page-hero h1 { font-size: 26px; }
    .page-hero p { font-size: 14px; }

    /* About page */
    .about-main { padding: 40px 0; }
    .about-grid-alt { gap: 35px; }
    .about-text-block h2 { font-size: 24px; }
    .about-img-wrapper { min-height: 240px; padding: 24px; }
    .about-img-wrapper .atm-card { width: 260px; height: 165px; }
    .about-img-wrapper .atm-card .digit-group { font-size: 14px; }
    .values-section { padding: 40px 0; }
    .values-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
    .value-card { padding: 28px 20px; }
    .why-section { padding: 40px 0; }
    .why-grid { margin-top: 30px; gap: 14px; }
    .why-card { padding: 18px; }
    .why-icon { width: 38px; height: 38px; font-size: 16px; }

    /* Contact page */
    .contact-section { padding: 40px 0; }
    .contact-form-wrapper { padding: 28px 20px; }
    .info-card { padding: 24px 20px; }
    .map-section { padding: 30px 0 40px; }
    .map-wrapper { min-height: 240px; }

    /* Footer */
    .footer-top { padding: 40px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { padding: 16px 0; }
    .footer-bottom-links { gap: 16px; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ============================================================ */
@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 13px; }
    .stat-number { font-size: 24px; }
    .features-grid-v2 { gap: 16px; }
    .feature-card-image { height: 140px; }
    .atm-card { max-width: 290px; height: 185px; }
    .card-number .digit-group { font-size: 15px; letter-spacing: 1px; }
    .about-visual .atm-card { max-width: 260px; height: 165px; }
    .about-visual .atm-card .digit-group { font-size: 14px; }
    .cta-box { padding: 28px 20px; }
    .cta-box h2 { font-size: 20px; }
    .btn { padding: 10px 22px; font-size: 12px; }
    .contact-home-form { padding: 24px 16px; }
    .contact-form-wrapper { padding: 24px 16px; }
    .section-header h2 { font-size: 22px; }
    .slide-content h3 { font-size: 18px; }
    .card-showcase-content h2 { font-size: 22px; }
    .about-content h2 { font-size: 22px; }
}
