:root {
    --primary-blue: #2563eb;
    --dark-navy: #0f172a;
    --text-muted: #64748b;
    --text-main: #334155;
    --soft-blue: #f0f7ff;
    --border-color: #e2e8f0;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-navy);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
    color: white !important;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/img-home-cover-image.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-section h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #ffd700;
    /* Star color */
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 170px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.btn-store img {
    height: 28px;
    margin-right: 12px;
    object-fit: contain;
}

.btn-store .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-store .store-text .small {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.btn-store .store-text .big {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.btn-store-blue {
    background: var(--primary-blue);
}

.btn-store-white {
    background: white;
    color: var(--dark-navy) !important;
    border-color: var(--border-color);
}

/* For buttons requiring white text on dark/blue backgrounds */
.btn-store-white-text {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.btn-store-white-text .store-text .small,
.btn-store-white-text .store-text .big {
    color: white !important;
}

.btn-store-white .store-text .small,
.btn-store-white .store-text .big {
    color: var(--dark-navy);
}

/* For the CTA section buttons, user wants white text */
.cta-banner .btn-store-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
}

.cta-banner .btn-store-white .store-text .small,
.cta-banner .btn-store-white .store-text .big {
    color: white;
}

/* Cards & Icons */
.feature-card {
    background: var(--soft-blue);
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.icon-wrapper img {
    width: 32px;
    height: 32px;
}

/* About Section Badges */
.benefit-badge {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-us-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    border-color: var(--border-color);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.why-us-icon {
    width: 48px;
    height: 48px;
    background: var(--soft-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-icon img {
    width: 24px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/img-get-start-cover-image.png') center/cover no-repeat;
    padding: 100px 0;
    color: white;
}

/* Contact Cards */
.contact-card {
    background: var(--soft-blue);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 24px;
}

/* Footer */
footer {
    background: var(--dark-navy);
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
}

footer .text-muted {
    color: #94a3b8 !important;
    /* Lighter slate for visibility */
}

footer a.text-muted:hover {
    color: white !important;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* AOS Customizations */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}