/* =============================================
   APOORVA MOBILES - PREMIUM STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.15);
    --secondary: #0f172a;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #cbd5e1;
    --light: #f1f5f9;
    --light-2: #f8fafc;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 10px 40px -10px rgba(37, 99, 235, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL + RESET ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

section {
    position: relative;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar i {
    color: var(--primary-light);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 0.8rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 1.6rem !important;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand i {
    -webkit-text-fill-color: var(--primary);
    margin-right: 5px;
}

.navbar-nav .nav-link {
    color: var(--dark-3) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-glow);
    color: var(--primary);
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.85) 0%, rgba(37, 99, 235, 0.5) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease-out;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: var(--accent);
}

.hero-stat-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(37, 99, 235, 0.5);
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== SECTION UTILITIES ===== */
.section-padding {
    padding: 90px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.bg-light-custom {
    background: var(--light-2);
}

.bg-gradient-dark {
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
    color: #fff;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-label i {
    font-size: 0.75rem;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}

.section-title-lg {
    font-size: 2.8rem;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
}

.section-desc.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.underline-accent {
    display: inline-block;
    position: relative;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.text-center .underline-accent::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== ICON BOX ===== */
.icon-box {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.icon-box-primary {
    background: var(--primary-glow);
    color: var(--primary);
}

.icon-box-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.icon-box-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* ===== CARDS ===== */
.card-premium {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-premium .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-premium .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-premium:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-premium .card-img-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.card-premium .card-body {
    padding: 1.5rem;
}

/* Feature Card */
.feature-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover .icon-box-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.feature-card h5 {
    font-weight: 700;
    margin-top: 1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* ===== MISSION VISION ===== */
.mission-card {
    border-radius: var(--radius);
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mission-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: #fff;
}

.mission-card-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: #fff;
}

/* ===== STATS COUNTER ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ===== BRANDS ===== */
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
    cursor: default;
}

.brand-logo:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-3px);
}

.brand-logo img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    color: var(--primary-glow);
    font-size: 3rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.3;
}

.testimonial-stars {
    color: var(--warning);
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-glow);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* ===== CTA BANNER ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 110px 0 70px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== CONTACT ===== */
.contact-card {
    border: none;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-card .form-control {
    border: 2px solid var(--light);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--light-2);
}

.contact-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--white);
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-info-block:hover {
    background: var(--light-2);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #101c36 0%, #0a1628 50%, #060e1a 100%);
    color: #cbd5e1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #a78bfa, var(--primary));
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

.footer h4 {
    color: #ffffff;
}

.footer p,
.footer span,
.footer .footer-text {
    color: #94a3b8;
}

.footer strong {
    color: #e2e8f0;
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

.footer h5 {
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 1.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 3px;
}

.footer .footer-links li {
    margin-bottom: 0.75rem;
}

.footer .footer-links a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer .footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.footer .footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer .footer-links a:hover::before {
    opacity: 1;
}

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: #94a3b8;
}

.footer .contact-info li span,
.footer .contact-info li a {
    color: #94a3b8;
}

.footer .contact-info li a:hover {
    color: var(--accent);
}

.footer .contact-info i {
    margin-top: 4px;
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}

.footer-bottom p {
    color: #64748b;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ===== MAP ===== */
.map-section iframe {
    width: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.map-section iframe:hover {
    filter: grayscale(0%);
}

/* ===== POLICY PAGES ===== */
.policy-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
}

.policy-content p,
.policy-content li {
    color: var(--gray);
    line-height: 1.9;
}

/* ===== WHY CHOOSE FEATURE ROW ===== */
.why-feature-row {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.why-feature-row:last-child {
    border-bottom: none;
}

.why-feature-row:hover {
    background: var(--light-2);
    border-radius: var(--radius);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .section-title-lg {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-title-lg {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .mission-card {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}