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

:root {
    /* Primary Color Palette */
    --primary-blue: #3b82f6;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #60a5fa;
    --primary-blue-lighter: #93c5fd;
    
    /* Secondary Colors */
    --secondary-gray: #64748b;
    --secondary-gray-light: #94a3b8;
    --secondary-gray-dark: #475569;
    
    /* Background Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-card-hover: rgba(255, 255, 255, 0.15);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-accent: #cbd5e1;
    
    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-blue-dark: #1d4ed8;
    --accent-white: rgba(255, 255, 255, 0.9);
    
    /* Border Colors */
    --border-primary: rgba(255, 255, 255, 0.15);
    --border-secondary: rgba(59, 191, 252, 0.3);
    --border-accent: rgba(59, 191, 252, 0.6);
    
    /* Shadow Colors */
    --shadow-primary: rgba(0, 0, 0, 0.3);
    --shadow-blue: rgba(59, 130, 246, 0.3);
    --shadow-blue-light: rgba(59, 191, 252, 0.2);
    
    /* Legacy variables for compatibility */
    --brand: var(--primary-blue);
    --brand-2: var(--primary-blue-light);
    --background: var(--bg-primary);
    --card: var(--bg-card);
    --muted: var(--text-muted);
    --ink: var(--bg-primary);
    --bg: var(--bg-primary);
    --bg-2: var(--bg-secondary);
    --glass: var(--bg-card);
    --ring: var(--border-secondary);
    --ok: #22c55e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #eef3ff;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: 
        /* Main gradient base */
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%),
        /* Blue accent overlays */
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 197, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        /* White accent overlays */
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(248, 250, 252, 0.03) 0%, transparent 60%),
        /* Subtle pattern overlay */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
    letter-spacing: 0.1px;
}

/* Global animated background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Animated blue-white gradient overlay */
        conic-gradient(from 0deg at 20% 20%, 
            rgba(59, 130, 246, 0.02) 0deg, 
            rgba(147, 197, 253, 0.01) 60deg, 
            rgba(255, 255, 255, 0.01) 120deg, 
            rgba(96, 165, 250, 0.02) 180deg, 
            rgba(59, 130, 246, 0.01) 240deg, 
            rgba(147, 197, 253, 0.02) 300deg, 
            rgba(59, 130, 246, 0.02) 360deg),
        /* Moving radial gradients */
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(147, 197, 253, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 40%);
    animation: globalBackgroundFloat 30s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes globalBackgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(-10px, -20px) rotate(1deg) scale(1.02);
        opacity: 0.8;
    }
    50% {
        transform: translate(20px, -10px) rotate(-1deg) scale(0.98);
        opacity: 0.9;
    }
    75% {
        transform: translate(-5px, 15px) rotate(0.5deg) scale(1.01);
        opacity: 0.85;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: #eef3ff;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

/* Light theme for section title when section has active card */
.states-section:has(.state-card.expanded) .section-title {
    color: #1e293b;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 22px);
    color: #b8c5d6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    backdrop-filter: saturate(140%) blur(8px);
    background: linear-gradient(180deg, rgba(3, 8, 25, 0.9), rgba(3, 8, 25, 0.7));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(3, 8, 25, 0.95), rgba(3, 8, 25, 0.9));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: saturate(180%) blur(12px);
}

.navbar.scrolled .nav-container::after {
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: 0.6;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    position: relative;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.2px;
    color: #eef3ff;
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--brand), var(--brand-2));
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(61, 163, 255, 0.27);
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #e9f1ff;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.21);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.callback-btn {
    background: linear-gradient(180deg, var(--brand), #2d8df0);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 16px 40px rgba(45, 141, 240, 0.29);
}

.callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(45, 141, 240, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px; /* Account for fixed header */
    background: linear-gradient(135deg, #0a1428 0%, #1a2a5a 25%, #2d4a7a 50%, #1a2a5a 75%, #0a1428 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -50% -30% auto;
    height: 1200px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 191, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 191, 252, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes contactGlow {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(1deg) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-1deg) scale(0.95);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) rotate(0.5deg) scale(1.02);
        opacity: 0.9;
    }
    100% {
        transform: translateY(-15px) rotate(-0.5deg) scale(1.01);
        opacity: 0.75;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 64px; /* Reduced header height on mobile */
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: -50% -30% auto;
    height: 1200px;
    background: 
        /* Primary blue gradient with #3B9FFC */
        radial-gradient(ellipse at 30% 20%, rgba(59, 191, 252, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(59, 191, 252, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(59, 191, 252, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 40%, rgba(59, 191, 252, 0.15) 0%, transparent 60%),
        /* White accent gradients */
        radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(248, 250, 252, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        /* Enhanced animated gradient overlay */
        conic-gradient(from 0deg at 50% 50%, 
            rgba(59, 191, 252, 0.18) 0deg, 
            rgba(59, 191, 252, 0.12) 60deg, 
            rgba(255, 255, 255, 0.08) 120deg, 
            rgba(59, 191, 252, 0.15) 180deg, 
            rgba(59, 191, 252, 0.1) 240deg, 
            rgba(59, 191, 252, 0.18) 300deg, 
            rgba(59, 191, 252, 0.18) 360deg);
    filter: blur(60px);
    z-index: 0;
    animation: heroBackgroundFloat 20s ease-in-out infinite;
}

@keyframes heroBackgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    20% {
        transform: translate(-25px, -35px) rotate(2deg) scale(1.1);
        opacity: 0.9;
    }
    40% {
        transform: translate(30px, -25px) rotate(-2deg) scale(0.9);
        opacity: 0.85;
    }
    60% {
        transform: translate(-20px, 30px) rotate(1.5deg) scale(1.05);
        opacity: 0.95;
    }
    80% {
        transform: translate(25px, 20px) rotate(-1deg) scale(0.95);
        opacity: 0.88;
    }
}

/* Additional hero background elements */
.hero::after {
    content: "";
    position: absolute;
    inset: -30% -20% auto;
    height: 800px;
    background: 
        /* Secondary animated layer */
        radial-gradient(circle at 60% 40%, rgba(59, 191, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        /* Enhanced moving particles effect */
        conic-gradient(from 45deg at 25% 25%, 
            rgba(59, 191, 252, 0.12) 0deg, 
            transparent 45deg, 
            rgba(255, 255, 255, 0.05) 90deg, 
            transparent 135deg, 
            rgba(59, 191, 252, 0.08) 180deg, 
            transparent 225deg, 
            rgba(255, 255, 255, 0.04) 270deg, 
            transparent 315deg, 
            rgba(59, 191, 252, 0.12) 360deg),
        conic-gradient(from 225deg at 75% 75%, 
            rgba(59, 191, 252, 0.08) 0deg, 
            transparent 45deg, 
            rgba(255, 255, 255, 0.03) 90deg, 
            transparent 135deg, 
            rgba(59, 191, 252, 0.06) 180deg, 
            transparent 225deg, 
            rgba(255, 255, 255, 0.02) 270deg, 
            transparent 315deg, 
            rgba(59, 191, 252, 0.08) 360deg);
    filter: blur(40px);
    z-index: 0;
    animation: heroBackgroundSecondary 25s ease-in-out infinite reverse;
}

@keyframes heroBackgroundSecondary {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(30px, -40px) rotate(1.5deg) scale(1.15);
        opacity: 0.6;
    }
    50% {
        transform: translate(-35px, 25px) rotate(-1.5deg) scale(0.85);
        opacity: 0.7;
    }
    75% {
        transform: translate(20px, 35px) rotate(1deg) scale(1.1);
        opacity: 0.75;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.parallax-bg {
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
}

.floating-element:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 70%;
    animation-delay: 6s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    color: #eef3ff;
    z-index: 1;
    position: relative;
    padding: 120px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100%;
}

.hero-content .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 900px;
    display: block;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-title span {
    background: linear-gradient(135deg, #8fd3ff 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8fd3ff 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
    animation: titleBlur 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.2) saturate(1.3); }
}

@keyframes titleBlur {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.02); }
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #cfe2ff;
    margin: 14px auto 28px;
    max-width: 700px;
    text-align: center;
    display: block;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle .muted {
    display: block;
    font-size: clamp(14px, 1.8vw, 16px);
    color: #8fa3c7;
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Country Selection */
.country-selection {
    margin: 0 auto 2.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.country-selection h3,
.country-selection p {
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    display: block;
}

.country-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 34px auto 14px;
    max-width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.country-grid::-webkit-scrollbar {
    display: none;
}

.country-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 16px 20px;
    min-height: 90px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #e6efff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.country-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -60% -30%;
    height: 140%;
    background: radial-gradient(closest-corner, rgba(59, 191, 252, 0.2), transparent 60%);
    transform: translateY(40%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.country-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(59, 191, 252, 0.4);
    box-shadow: 0 20px 50px rgba(59, 191, 252, 0.3);
    background: linear-gradient(180deg, rgba(59, 191, 252, 0.15), rgba(59, 191, 252, 0.08));
}

.country-card:hover::after {
    transform: translateY(-10%);
    opacity: 1;
}

.country-card.selected {
    background: linear-gradient(180deg, rgba(59, 191, 252, 0.2), rgba(59, 191, 252, 0.1));
    border-color: rgba(59, 191, 252, 0.6);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 40px rgba(59, 191, 252, 0.25);
}

.country-flag {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.country-card:hover .country-flag {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(59, 191, 252, 0.3));
}

.country-card span {
    color: #e6efff;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.country-card:hover span {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Ripple Effect */

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem auto 0;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: #e9f1ff;
    border: 2px solid rgba(59, 191, 252, 0.3);
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 191, 252, 0.1), rgba(59, 191, 252, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 191, 252, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(59, 191, 252, 0.2);
}

.secondary-button:hover::before {
    opacity: 1;
}

.secondary-button:active {
    transform: translateY(-1px);
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 16px 40px rgba(45, 141, 240, 0.29), 0 0 0 0 rgba(61, 163, 255, 0.5);
    }
    50% {
        box-shadow: 0 20px 50px rgba(45, 141, 240, 0.35), 0 0 0 14px rgba(61, 163, 255, 0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-up {
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.typing-animation {
    overflow: hidden;
    border-right: 2px solid white;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: 
        /* Subtle blue-white gradient overlay */
        linear-gradient(135deg, 
            rgba(59, 130, 246, 0.02) 0%, 
            rgba(147, 197, 253, 0.01) 25%, 
            rgba(255, 255, 255, 0.01) 50%, 
            rgba(96, 165, 250, 0.02) 75%, 
            rgba(59, 130, 246, 0.02) 100%);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(147, 197, 253, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        conic-gradient(from 30deg at 20% 20%, transparent 0deg, rgba(59, 130, 246, 0.04) 90deg, transparent 180deg),
        conic-gradient(from 210deg at 80% 80%, transparent 0deg, rgba(147, 197, 253, 0.03) 90deg, transparent 180deg);
    animation: trustFloat 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes trustFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.trust-item {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-secondary));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 191, 252, 0.05), rgba(59, 191, 252, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 191, 252, 0.2);
    border-color: var(--border-accent);
    background: linear-gradient(180deg, var(--bg-card-hover), var(--bg-secondary));
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    animation: trustIconPulse 3s ease-in-out infinite;
}

@keyframes trustIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: none;
}

.trust-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.trust-item:hover h3 {
    color: var(--primary-blue-light);
}

.trust-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.trust-item:hover p {
    color: var(--text-secondary);
}

    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: 
        /* Enhanced gradient background */
        linear-gradient(135deg, 
            #0f172a 0%, 
            #1e293b 15%, 
            #334155 30%, 
            #475569 45%, 
            #64748b 60%, 
            #94a3b8 75%, 
            #cbd5e1 90%, 
            #f1f5f9 100%),
        /* Multiple animated layers */
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(96, 165, 250, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(59, 191, 252, 0.25) 0%, transparent 50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    background: 
        /* Light blue-white gradient */
        linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #bae6fd 50%, #7dd3fc 75%, #38bdf8 100%),
        /* Animated background patterns */
        radial-gradient(circle at 20% 80%, rgba(59, 191, 252, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 191, 252, 0.1) 0%, transparent 50%);
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Complex animated patterns */
        conic-gradient(from 0deg at 25% 25%, rgba(59, 130, 246, 0.15) 0deg, transparent 60deg, rgba(147, 197, 253, 0.1) 120deg, transparent 180deg),
        conic-gradient(from 180deg at 75% 75%, rgba(96, 165, 250, 0.12) 0deg, transparent 60deg, rgba(59, 191, 252, 0.08) 120deg, transparent 180deg),
        conic-gradient(from 90deg at 50% 50%, rgba(147, 197, 253, 0.06) 0deg, transparent 120deg, rgba(59, 130, 246, 0.04) 240deg, transparent 360deg);
    opacity: 0.7;
    z-index: 0;
    transition: opacity 0.6s ease-in-out;
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Floating geometric shapes */
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(147, 197, 253, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 70% 30%, rgba(96, 165, 250, 0.18) 0%, transparent 35%);
    opacity: 0.5;
    z-index: 0;
    transition: opacity 0.6s ease-in-out;
}

    opacity: 0.3;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-top: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.filter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    animation: activePulse 2s ease-in-out infinite;
}

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    align-items: start;
}

    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 5;
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        transparent 50%, 
        rgba(147, 197, 253, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

    opacity: 1;
}

    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 191, 252, 0.3);
    box-shadow: 0 8px 32px rgba(59, 191, 252, 0.15);
}

    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 50%, 
        rgba(241, 245, 249, 0.95) 100%);
    border-color: #3b82f6;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
    transform: translateY(-10px) scale(1.03);
}

/* Closed cards show header with basic info */
    min-height: 140px;
}


    font-size: 2rem;
    margin-right: 1rem;
}

    flex: 1;
}

    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

    margin-top: 0.5rem;
}

.preview-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

    display: flex;
    align-items: center;
    gap: 1rem;
}

.visa-chips {
    display: flex;
    gap: 0.5rem;
}

.chip {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expand-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

    transform: rotate(180deg);
}


    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(59, 191, 252, 0.1), rgba(59, 191, 252, 0.05));
    border-bottom: 1px solid rgba(59, 191, 252, 0.1);
    min-height: 120px;
    flex-shrink: 0;
}

    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.overview-item .label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    color: #64748b;
}

.overview-item .value {
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
}

.priority-high {
    color: #ef4444 !important;
}

.priority-medium {
    color: #f59e0b !important;
}

.priority-low {
    color: #10b981 !important;
}

    padding: 2rem;
    min-height: 300px;
    flex: 1;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-section h4 i {
    color: #3b82f6;
    font-size: 1rem;
}

.pathway-list,
.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pathway-list li,
.requirement-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 191, 252, 0.1);
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}

.pathway-list li:last-child,
.requirement-list li:last-child {
    border-bottom: none;
}

.pathway-list li strong {
    color: #1e40af;
    font-weight: 600;
}

/* Industry Tags */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 191, 252, 0.3);
}

    padding: 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(59, 191, 252, 0.05), rgba(59, 191, 252, 0.02));
    display: flex;
    gap: 1rem;
    justify-content: center;
    min-height: 80px;
    flex-shrink: 0;
    align-items: center;
}

    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.action-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #3b82f6;
    border: 1px solid #3b82f6;
    backdrop-filter: blur(10px);
}

.action-btn.secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border: 1px solid #3b82f6;
}

    background: #3b82f6;
    color: white;
}

/* Floating Elements for Contact Section */
.contact-section .floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 191, 252, 0.1), rgba(99, 102, 241, 0.05));
    backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.contact-section .floating-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: floatUpDown 6s ease-in-out infinite;
}

.contact-section .floating-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation: floatUpDown 8s ease-in-out infinite reverse;
}

.contact-section .floating-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation: floatUpDown 7s ease-in-out infinite;
}

.contact-section .floating-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 25%;
    animation: floatUpDown 9s ease-in-out infinite reverse;
}

.contact-section .floating-5 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 5%;
    animation: floatUpDown 5s ease-in-out infinite;
}

.contact-section .floating-6 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 5%;
    animation: floatUpDown 6.5s ease-in-out infinite reverse;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1428 0%, #1a2a5a 25%, #2d4a7a 50%, #1a2a5a 75%, #0a1428 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: -50% -30% auto;
    height: 1200px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 191, 252, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 191, 252, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    animation: contactGlow 12s ease-in-out infinite alternate;
    z-index: 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    text-align: center;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

.contact-section .section-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #cfe2ff;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes contactFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Ensure mobile layout takes priority */
@media (max-width: 768px) {
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .contact-item {
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-item span,
    .contact-item a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        display: inline-block !important;
    }
    
    .contact-item i {
        flex-shrink: 0 !important;
        margin-right: 0.6rem !important;
    }
}

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

.contact-form-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out 0.5s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 191, 252, 0.05), rgba(59, 191, 252, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-container:hover::before {
    opacity: 1;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', 'Roboto', sans-serif;
    outline: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(59, 191, 252, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(59, 191, 252, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
    color: var(--brand);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Roboto', sans-serif;
}

.submit-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.8rem;
    height: 48px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    }
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.5);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-2px) scale(0.98);
}

.contact-info {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    height: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: slideInRight 1s ease-out 0.7s both;
}

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

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 191, 252, 0.05), rgba(59, 191, 252, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* Mobile override for contact items - ensure text wraps properly */
@media (max-width: 768px) {
    .contact-item {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-item span,
    .contact-item a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .contact-item i {
        flex-shrink: 0 !important;
        margin-right: 0.6rem !important;
    }
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    width: 20px;
    height: 20px;
    color: #60a5fa;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item i {
    color: var(--brand);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: var(--brand-2);
}

/* Footer */
/* Footer - Modern Glass-Morphism Design */
.footer {
    background: linear-gradient(135deg, #0a1428 0%, #1a2a5a 25%, #2d4a7a 50%, #1a2a5a 75%, #0a1428 100%);
    color: #eef3ff;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-top: 6rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 191, 252, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 191, 252, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    animation: footerGlow 10s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes footerGlow {
    0% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02) rotate(0.5deg);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.01) rotate(-0.3deg);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section {
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.footer-section:hover::before {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 191, 252, 0.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    border-radius: 1px;
}

.footer-section p {
    color: #cfe2ff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #b7c6e6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 20px;
    text-shadow: 0 2px 8px rgba(59, 191, 252, 0.3);
}

.footer-section ul li a:hover::before {
    width: 12px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7c6e6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 191, 252, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 191, 252, 0.4);
    border-color: rgba(59, 191, 252, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #b7c6e6;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 1px;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.mara-registration {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8), rgba(26, 42, 90, 0.7), rgba(45, 74, 122, 0.6));
    backdrop-filter: blur(15px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #0a1428 0%, #1a2a5a 25%, #2d4a7a 50%, #1a2a5a 75%, #0a1428 100%);
    color: white;
    padding: 2rem;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 191, 252, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 0;
}

.modal-header h3,
.modal-header .close {
    position: relative;
    z-index: 1;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.close {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    backdrop-filter: blur(10px);
}

.modal-form {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

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

.modal-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.modal-form .submit-button {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #0a1428 0%, #1a2a5a 25%, #2d4a7a 50%, #1a2a5a 75%, #0a1428 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 
        0 8px 25px rgba(10, 20, 40, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.modal-form .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.modal-form .submit-button:hover::before {
    left: 100%;
}

.modal-form .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(10, 20, 40, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.modal-form .submit-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 20px rgba(10, 20, 40, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.modal-form .submit-button i {
    margin-left: 8px;
    font-size: 1.1rem;
}

.modal-body {
    padding: 2rem;
    color: #1e293b;
    background: #ffffff;
    line-height: 1.6;
}

.modal-body h4 {
    color: #1e40af;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.success-content i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.success-content p {
    color: #64748b;
}

/* Mobile-First Responsive Design - Industry Standards */
@media (max-width: 768px) {
    /* Base container and spacing */
    .container {
        padding: 0 16px;
    }
    
    /* Navigation - Mobile optimized */
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(3, 8, 25, 0.98), rgba(3, 8, 25, 0.95));
        backdrop-filter: saturate(180%) blur(12px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        margin: 0.75rem 0;
        color: #eef3ff;
        font-size: 1rem;
    }
    
    .nav-menu .callback-btn {
        margin-top: 0.75rem;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero Section - Mobile optimized */
    .hero {
        padding-top: 64px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 80px 0 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-content .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(24px, 6vw, 36px);
        line-height: 1.1;
        margin: 0 auto 1rem;
        text-align: center;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 18px);
        margin: 12px auto 24px;
        max-width: 100%;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .country-selection {
        margin: 0 auto 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .country-selection h3 {
        font-size: 1rem;
        margin: 0 auto 1rem;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .country-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding: 8px 16px;
        margin: 0 -16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .country-grid::-webkit-scrollbar {
        display: none;
    }
    
    .country-card {
        min-width: 90px;
        padding: 8px 12px;
        min-height: 60px;
        border-radius: 12px;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 1.5rem;
    }
    
    .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Sections - Mobile optimized */
    section {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: clamp(14px, 4vw, 16px);
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Trust Section - Mobile optimized */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .trust-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .trust-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-item p {
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
        border-radius: 16px;
        min-height: 100px;
    }
    
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
    
        font-size: 1.25rem;
    }
    
        font-size: 0.8rem;
    }
    
        width: 100%;
        justify-content: space-between;
    }
    
    .visa-chips {
        gap: 0.25rem;
    }
    
    .chip {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .overview-item .label {
        font-size: 0.7rem;
    }
    
    .overview-item .value {
        font-size: 0.9rem;
    }
    
        padding: 1.5rem;
    }
    
    .detail-section {
        margin-bottom: 1.5rem;
    }
    
    .detail-section h4 {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .pathway-list li,
    .requirement-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .industry-tags {
        gap: 0.25rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .action-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
        padding: 1.25rem;
    }
    
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Contact Section - Mobile optimized */
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .submit-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        height: 44px;
        width: 100%;
    }
    
    .contact-info {
        padding: 1.5rem !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        word-wrap: break-word !important;
    }
    
    .contact-item {
        gap: 0.6rem !important;
        margin-bottom: 0.6rem !important;
        padding: 0.5rem !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-item span,
    .contact-item a {
        font-size: 0.85rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        display: inline-block !important;
    }
    
    .contact-item i {
        flex-shrink: 0 !important;
        margin-right: 0.6rem !important;
    }
    
    /* Footer - Mobile optimized */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    /* Modal - Mobile optimized */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
        height: 56px;
    }
    
    .nav-menu {
        top: 56px;
        padding: 1rem 0;
    }
    
    .hero {
        padding-top: 56px;
    }
    
    .hero-content {
        padding: 60px 12px 20px;
    }
    
    .hero-title {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(13px, 3.5vw, 16px);
        margin: 10px 0 20px;
    }
    
    .country-card {
        min-width: 80px;
        padding: 6px 10px;
        min-height: 50px;
        font-size: 0.8rem;
    }
    
    .cta-button,
    .secondary-button {
        max-width: 260px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(20px, 5vw, 24px);
    }
    
    .section-subtitle {
        font-size: clamp(13px, 3.5vw, 15px);
    }
    
    section {
        padding: 40px 0;
    }
    
    .trust-item,
    .contact-form-container,
    .contact-info {
        padding: 1rem;
    }
    
    .contact-content {
        padding: 0 12px;
        gap: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 3% auto;
        width: 98%;
        max-width: 350px;
    }
    
    .modal-form {
        padding: 1.25rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .callback-btn,
    .submit-button,
    .modal,
    .success-message {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 24pt;
    }
    
    .section-title {
        font-size: 18pt;
    }
}

/* Animation Keyframes */
    0%, 100% { 
        transform: translateX(0%) translateY(0%) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateX(2%) translateY(-1%) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-1%) translateY(2%) rotate(-1deg);
        opacity: 0.7;
    }
    75% { 
        transform: translateX(1%) translateY(-2%) rotate(0.5deg);
        opacity: 0.9;
    }
}

    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    25% {
        background-position: 25% 25%, 75% 25%, 25% 75%, 75% 75%;
    }
    50% {
        background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%;
    }
    75% {
        background-position: 75% 25%, 25% 75%, 75% 25%, 25% 75%;
    }
}

    0%, 100% {
        transform: rotate(0deg) scale(1) translateX(0px) translateY(0px);
        opacity: 0.7;
    }
    33% {
        transform: rotate(120deg) scale(1.1) translateX(20px) translateY(-10px);
        opacity: 0.5;
    }
    66% {
        transform: rotate(240deg) scale(0.9) translateX(-15px) translateY(15px);
        opacity: 0.8;
    }
}

    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateX(30px) translateY(-20px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-20px) translateY(30px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateX(15px) translateY(-15px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
        opacity: 0.5;
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
        filter: brightness(1.1);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        transform: translateY(-2px);
    }
    50% {
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
        transform: translateY(-4px);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    33% {
        transform: translateY(-3px) rotate(0.5deg);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    }
    66% {
        transform: translateY(2px) rotate(-0.3deg);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    }
}

/* State-Specific PR Information Section */
#states-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1428 0%, #1a2a5a 25%, #2d4a7a 50%, #1a2a5a 75%, #0a1428 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

#states-section::before {
    content: "";
    position: absolute;
    inset: -50% -30% auto;
    height: 1200px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 191, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 191, 252, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 191, 252, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 0;
}

#states-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

#states-section .section-header h2 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

#states-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

#states-section .section-header p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #cfe2ff;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Container for Cards */
.states-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Multiple cards open indicator */
.states-container:has(.state-card.expanded) {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* All cards open - enhanced effect */
.states-container:has(.state-card.expanded) .state-card.expanded {
    animation: all-cards-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
    }
}

@keyframes all-cards-glow {
    0%, 100% { 
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
        transform: translateY(-5px);
    }
    50% { 
        box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
        transform: translateY(-8px);
    }
}

/* State Cards */
.state-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.state-card::after {
    content: 'Click to view all states';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    color: #64748b;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-style: italic;
}

.state-card:hover::after {
    opacity: 1;
}

.state-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.state-card:hover::before {
    transform: scaleX(1);
}

.state-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 191, 252, 0.4);
    box-shadow: 0 20px 50px rgba(59, 191, 252, 0.3);
    background: linear-gradient(180deg, rgba(59, 191, 252, 0.15), rgba(59, 191, 252, 0.08));
}

/* Expanded state styling */
.state-card.expanded {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(59, 191, 252, 0.1));
}

.state-card.expanded::before {
    opacity: 1;
    transform: scaleX(1);
}

.state-card.expanded::after {
    opacity: 0 !important;
}

.state-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.state-card:hover .state-name {
    color: #60a5fa;
    transform: scale(1.02);
}

.state-card.expanded .state-name {
    color: #93c5fd;
    transform: scale(1.05);
}

.state-info {
    display: none;
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.state-info.show {
    opacity: 1;
}

.state-info p {
    margin-bottom: 15px;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.6;
    font-size: 1rem;
}

.state-info p:last-child {
    margin-bottom: 0;
}

/* Button Styles */
.submit-inquiry-btn {
    margin-top: 25px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-size: 1rem;
    display: none; /* Hidden by default */
    z-index: 10;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-inquiry-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.submit-inquiry-btn:hover::before {
    left: 100%;
}

.submit-inquiry-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Modal Styles */
.inquiry-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ef4444;
}

.modal-body h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

form input, form select, form textarea {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

form button:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Mobile Responsiveness for States */
@media (max-width: 768px) {
    .states-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .state-card {
        padding: 25px;
    }
    
    .state-name {
        font-size: 1.2rem;
    }
    
    #states-section .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
}
