/* Redesign Styles for Airisio - Professional Clean Edition */
:root {
    --header-height: 80px;
    --primary-color: #0d6efd;
    --secondary-color: #002d5b;
    --accent-color: #00d2ff;
    --bg-light: #ffffff;
    --bg-subtle: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 20px 40px -5px rgba(13, 110, 253, 0.1), 0 12px 15px -8px rgba(13, 110, 253, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

/* Navbar Redesigned */
.navbar-area.v2 {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar-area.v2 .nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    font-size: 15px;
}

.navbar-area.v2 .nav-link:hover,
.navbar-area.v2 .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section - Light & Professional */
.hero-v2 {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero-v2 h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-v2 h1 span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-v2 p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #bae6fd;
}

/* Buttons */
.btn-premium {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-primary {
    background-color: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 4px 14px 0 rgba(13, 110, 253, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    background-color: #0b5ed7;
}

.btn-premium-outline {
    border: 1px solid var(--border-color);
    color: var(--text-main);
    background: #ffffff;
}

.btn-premium-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f8fafc;
}

/* Card System */
.card-v2 {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
}

.card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.card-v2:hover .icon-box {
    background: var(--primary-color);
    color: #ffffff;
}

.card-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.card-v2 p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Stats */
.stats-v2 {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0;
}

/* Solutions Section */
.py-100 {
    padding: 100px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Tracking Banner */
.banner-tracking {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001f3f 100%);
    border-radius: 24px;
    padding: 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.banner-tracking::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
    transform: skewX(-20deg);
}

/* Footer Section */
.footer-v2 {
    background: #001f3f;
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-v2 .white-logo {
    filter: brightness(0) invert(1);
    max-width: 140px;
}

/* Visibility fixes for mobile */
@media (max-width: 991px) {
    .hero-v2 h1 {
        font-size: 3rem;
    }

    .hero-v2 {
        padding: 140px 0 60px;
    }
}