/* Google Fonts: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #005bb5;
    --primary-red: #b32034;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;

    /* NEW PREMIUM COLORS */
    --glass-bg: rgba(255,255,255,0.65);
    --glass-border: rgba(255,255,255,0.35);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-strong: 0 25px 60px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f9fafb, #eef3f9);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* PREMIUM BUTTON */
.btn-premium {
    background: linear-gradient(90deg, var(--primary-blue), #003f82, var(--primary-blue));
    background-size: 200% auto;
    color: white;
    transition: 0.5s;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 91, 181, 0.3);
}

.btn-premium:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 91, 181, 0.5);
}

/* TEXT & COLOR */
.text-brand-blue { color: var(--primary-blue); }
.text-brand-red { color: var(--primary-red); }
.bg-brand-blue { background-color: var(--primary-blue); }

/* GLASS BASE */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER PREMIUM */
.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* PREMIUM OVERLAY GLOW */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,91,181,0.08), rgba(179,32,52,0.08));
    opacity: 0;
    transition: 0.4s;
}

.glass-card:hover::before {
    opacity: 1;
}

/* ICON CIRCLE */
.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,91,181,0.15), rgba(179,32,52,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.glass-card:hover .icon-circle {
    transform: scale(1.1);
}

/* TEXT HIERARCHY */
.glass-card h4 {
    transition: 0.3s;
}

.glass-card:hover h4 {
    color: var(--primary-red);
}

.glass-card p {
    transition: 0.3s;
}

.glass-card:hover p {
    transform: scale(1.05);
}

/* SECTION BACKGROUND */
.section-premium {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #eef3f9);
    overflow: hidden;
}

/* GLOW BACKGROUND EFFECT */
.section-premium::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,91,181,0.15);
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

.section-premium::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(179,32,52,0.12);
    filter: blur(120px);
    bottom: -100px;
    right: -100px;
}

/* MAP GLASS */
.map-glass {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* HIDE SCROLLBAR */
.hide-scroll-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scroll-bar::-webkit-scrollbar {
    display: none;
}

/* LINE ANIMATION */
@keyframes flow-line {
    from { stroke-dashoffset: 24; }
    to { stroke-dashoffset: 0; }
}

.animate-flow-line {
    stroke-dasharray: 6 6;
    animation: flow-line 1s linear infinite;
    stroke: var(--primary-blue);
    stroke-width: 2;
}