/* Modern Professional Theme - Ridein Style Refinement */
:root {
    --primary: #1e3a8a; /* Deep Navy Blue */
    --primary-dark: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --secondary: #64748b;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    background-color: var(--bg-light) !important;
    color: var(--text-main) !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.text-navy-blue { color: var(--primary) !important; }
.bg-navy-blue { background-color: var(--primary) !important; }

/* Fixed Header Alignment */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.fixed-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
}

.header-left-link {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-left-link li a {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: color 0.3s;
}

.header-left-link li a:hover {
    color: var(--primary) !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-link-navy {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none !important;
}

.btn-main-navy {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-main-navy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section - Fix Overlap */
.hero-section.v2 {
    padding: 160px 0 100px; /* Increased top padding to clear fixed header */
    background: #fff;
    overflow: hidden;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-phone-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
}

/* Feature Sections Spacing */
section {
    padding: 100px 0 !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.feature-item {
    margin-bottom: 30px;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.rounded-24 { border-radius: 24px !important; }

/* Footer Alignment */
.footer-v2 {
    background-color: #020617;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none !important;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.app-btn img {
    height: 44px;
    border-radius: 10px;
}

.footer-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
}

/* Animations */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* App badges in hero */
.app-badges {
    display: flex;
    gap: 15px;
}

.app-store-badge img {
    height: 40px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-section.v2 { padding: 120px 0 60px; }
    .hero-img-box { margin-top: 50px; }
    section { padding: 60px 0 !important; }
}
