/* ===== VARIABLES ===== */
:root {
    --primary: #0052cc;
    --primary-light: #e6f0ff;
    --primary-dark: #003d99;
    --primary-gradient: linear-gradient(135deg, #0052cc 0%, #0747a6 100%);
    --orange: #ff6b00;
    --orange-light: #fff5eb;
    --orange-dark: #cc5500;
    --orange-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --lighter: #f1f5f9;
    --white: #ffffff;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    letter-spacing: -0.02em;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
p { color: var(--gray); }

/* ===== UTILITY ===== */
.text-primary-custom { color: var(--primary) !important; }
.text-orange { color: var(--orange) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary-custom {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition);
}
.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,82,204,0.35);
}
.btn-primary-custom:hover::before { opacity: 1; }
.btn-primary-custom span, .btn-primary-custom i { position: relative; z-index: 1; }

.btn-orange {
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.btn-orange:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,0,0.35);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    padding: 12px 34px;
    border-radius: 50px;
    background: transparent;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,82,204,0.2);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.section-tag i { font-size: 0.7rem; }

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 16px 0;
    z-index: 1050;
    transition: var(--transition);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
}
.nav-link {
    font-weight: 600;
    color: var(--dark-soft) !important;
    padding: 8px 18px !important;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}
.nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-light);
}

/* ===== HERO ===== */
.hero-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,82,204,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; }
.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-section h1 .highlight {
    position: relative;
    color: var(--primary);
}
.hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(255,107,0,0.2);
    border-radius: 4px;
    z-index: -1;
}
.hero-section p.lead {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 480px;
    line-height: 1.8;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,82,204,0.1);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}
.hero-visual-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-visual-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.hero-visual-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,82,204,0.08) 100%);
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.04);
}
.hero-float-card.card-1 {
    bottom: -16px;
    left: -24px;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-2 {
    top: -16px;
    right: -24px;
    animation: floatCard 4s ease-in-out infinite 1s;
}
.hero-float-card .icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.hero-float-card .fw-bold { font-size: 0.95rem; }
.hero-float-card .text-muted { font-size: 0.72rem; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero trust strip */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lighter);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}
.hero-trust-item i {
    color: var(--orange);
    font-size: 1rem;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 100px 0;
    background: var(--light);
}
.service-card {
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,82,204,0.08);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    background: var(--primary-light);
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.05);
}
.service-card h5 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    line-height: 1.7;
}
.service-card .btn-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-card .btn-link:hover {
    color: var(--orange);
    gap: 10px;
}

/* ===== WHY US ===== */
.why-section {
    padding: 100px 0;
    background: var(--white);
}
.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--lighter);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.why-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.why-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* ===== STATS ===== */
.stats-section {
    padding: 70px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.stat-item { text-align: center; color: var(--white); }
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

/* ===== BLOG HOME ===== */
.blog-home-section {
    padding: 100px 0;
    background: var(--light);
}
.blog-home-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}
.blog-home-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,82,204,0.06);
}
.blog-home-card .card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-home-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-home-card:hover .card-img img {
    transform: scale(1.06);
}
.blog-home-card .card-img .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-home-card .card-body {
    padding: 28px;
}
.blog-home-card .card-body .date {
    font-size: 0.78rem;
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-home-card .card-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    line-height: 1.4;
    transition: var(--transition);
}
.blog-home-card:hover .card-body h5 { color: var(--primary); }
.blog-home-card .card-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.blog-home-card .read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-home-card .read-more:hover { color: var(--orange); gap: 10px; }

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,107,0,0.08);
    border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--dark);
    position: relative;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    transition: var(--transition);
    font-weight: 500;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

/* ===== MOBILE STICKY ===== */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-sticky .btn {
    border-radius: 0;
    padding: 16px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 1040;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    color: white;
    box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}

/* ===== QUOTE PAGE ===== */
.quote-hero {
    background: linear-gradient(135deg, #e6f0ff 0%, #fff5eb 100%);
    padding: 70px 0 50px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.04);
}
.trust-badge i { font-size: 1.3rem; }

.step-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.04);
}
.step-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}
.step-dot {
    width: 44px;
    height: 6px;
    border-radius: 3px;
    background: var(--lighter);
    transition: var(--transition);
}
.step-dot.active { background: var(--primary-gradient); width: 64px; }
.step-dot.done { background: var(--orange-gradient); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp 0.5s ease; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.insurance-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.insurance-type-btn {
    background: var(--light);
    border: 2px solid var(--lighter);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.88rem;
}
.insurance-type-btn i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
    transition: var(--transition);
}
.insurance-type-btn:hover,
.insurance-type-btn.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.insurance-type-btn.selected i { color: var(--orange); }

.form-control-custom {
    border: 2px solid var(--lighter);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0,82,204,0.08);
}

/* ===== BLOG ===== */
.blog-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-card-body h5 { font-size: 1.05rem; font-weight: 700; }
.blog-card-body p { color: var(--gray); font-size: 0.88rem; }
.blog-card-body .date { color: var(--gray-light); font-size: 0.78rem; font-weight: 500; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0,82,204,0.04);
    border-radius: 50%;
}
.page-header h1 { font-size: 2.4rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--gray); }
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 1.2rem;
    font-size: 0.88rem;
}
.breadcrumb-custom a { color: var(--primary); font-weight: 600; }
.breadcrumb-custom span { color: var(--gray-light); }

/* ===== SERVICE DETAIL ===== */
.service-detail-content { padding: 70px 0; }
.advantage-list { list-style: none; padding: 0; }
.advantage-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--lighter);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}
.advantage-list li i {
    color: var(--orange);
    font-size: 1.2rem;
}

/* ===== CONTACT ===== */
.contact-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.contact-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

/* ===== ABOUT ===== */
.about-content { padding: 70px 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section { padding: 50px 0 60px; }
    .hero-section h1 { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .insurance-type-grid { grid-template-columns: repeat(2, 1fr); }
    .step-form-wrapper { padding: 28px; }
    body { padding-bottom: 64px; }
    .hero-trust { flex-wrap: wrap; gap: 16px; }
    .hero-float-card { display: none; }
}

@media (max-width: 575px) {
    .hero-section h1 { font-size: 2rem; }
    .insurance-type-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.2rem; }
    .section-title { font-size: 1.7rem; }
}

/* ===== DROPDOWN ===== */
.dropdown-menu-custom {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    margin-top: 10px;
    min-width: 240px;
    animation: dropdownFade 0.25s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu-custom .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.dropdown-menu-custom .dropdown-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
}
.dropdown-menu-custom .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 20px;
}

/* ===== QUOTE TYPE SELECTION ===== */
.quote-type-card {
    background: var(--white);
    border: 2px solid var(--lighter);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.quote-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}
.quote-type-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.quote-type-card:hover::before { opacity: 1; }
.quote-type-card:hover h5,
.quote-type-card:hover .quote-type-arrow { color: var(--white) !important; }
.quote-type-card:hover .quote-type-icon {
    background: rgba(255,255,255,0.15) !important;
    color: var(--white) !important;
}
.quote-type-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.quote-type-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.quote-type-arrow {
    position: relative;
    z-index: 1;
    color: var(--gray-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

/* ===== QUOTE FORM CARD ===== */
.quote-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}
.quote-form-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 32px 40px;
}
.quote-form-header h3 { color: var(--white); font-size: 1.5rem; }
.quote-form-body { padding: 36px 40px; }
.quote-form-footer {
    background: var(--light);
    padding: 20px 40px;
    border-top: 1px solid var(--lighter);
}

/* Form floating override */
.form-floating > .form-control-custom,
.form-floating > .form-select.form-control-custom {
    border: 2px solid var(--lighter);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    height: 58px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.form-floating > .form-control-custom:focus,
.form-floating > .form-select.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,82,204,0.08);
}
.form-floating > label {
    padding: 1rem 1.2rem;
    color: var(--gray);
    font-size: 0.88rem;
}
.form-floating > textarea.form-control-custom {
    height: auto !important;
    padding-top: 1.5rem;
}

/* Ruhsat Upload */
.ruhsat-upload-area {
    border: 2px dashed var(--lighter);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--light);
}
.ruhsat-upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

/* Submit Button */
.btn-quote-submit {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-quote-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,82,204,0.3);
}

/* Ruhsat info panel */
.ruhsat-info-panel {
    background: #e8f4fd;
    border: 1px solid #bee3f8;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}
.ruhsat-info-panel p { color: #2b6cb0; font-size: 0.85rem; margin: 0; }

@media (max-width: 767px) {
    .quote-form-header { padding: 24px 20px; }
    .quote-form-body { padding: 24px 20px; }
    .quote-form-footer { padding: 16px 20px; }
}

/* ===== BLOG FEATURED ===== */
.featured-post-inner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}
.featured-post-inner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-post-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-post-inner:hover .featured-post-img img { transform: scale(1.04); }
.featured-post-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #e6f0ff, #fff5eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}
.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange-gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.cat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.featured-post-body { padding: 28px; }
.post-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.post-meta span { font-size: 0.8rem; color: var(--gray-light); font-weight: 500; }
.featured-post-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.8rem; transition: var(--transition); }
.featured-post-inner:hover .featured-post-title { color: var(--primary); }
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 8px;
}

/* ===== BLOG SIDEBAR ===== */
.blog-sidebar-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: var(--radius);
    padding: 24px;
}
.sidebar-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
    color: var(--dark);
}
.sidebar-cat-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--dark-soft);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}
.sidebar-cat-link:hover, .sidebar-cat-link.active {
    background: var(--primary-light);
    color: var(--primary);
}
.sidebar-cat-link span {
    background: var(--lighter);
    color: var(--gray);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.sidebar-cat-link.active span { background: var(--primary); color: #fff; }

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--lighter);
    text-decoration: none;
    transition: var(--transition);
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item:hover { padding-left: 4px; }
.recent-post-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}
.recent-post-title { font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
.recent-post-date { font-size: 0.75rem; color: var(--gray-light); margin-top: 4px; }

.blog-cta-card {
    background: var(--primary-gradient);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

/* ===== BLOG ARTICLE ===== */
.blog-article { line-height: 1.9; color: var(--dark-soft); }
.blog-article h2 { font-size: 1.6rem; margin: 2rem 0 1rem; color: var(--dark); }
.blog-article h3 { font-size: 1.3rem; margin: 1.5rem 0 0.8rem; color: var(--dark); }
.blog-article p { margin-bottom: 1.2rem; }
.blog-article ul, .blog-article ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.blog-article li { margin-bottom: 0.5rem; }
.blog-article strong { color: var(--dark); }
.blog-article a { color: var(--primary); font-weight: 600; }

/* Author box */
.author-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--lighter);
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Pagination */
.page-link {
    border: 2px solid var(--lighter);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}
.page-link:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--lighter);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.8; font-style: italic; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.accordion-button {
    background: var(--white);
    color: var(--dark);
    font-size: 0.95rem;
    padding: 18px 24px;
}
.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(30%) sepia(100%) saturate(500%) hue-rotate(200deg); }
.accordion-body { padding: 16px 24px 20px; background: var(--white); }

/* ===== RUHSAT GUIDE ===== */
.ruhsat-guide-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 90px;
}
.ruhsat-guide-header {
    background: #e8f4fd;
    color: #2b6cb0;
    padding: 14px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    border-bottom: 1px solid #bee3f8;
}
.ruhsat-guide-body { padding: 20px; }
.ruhsat-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--lighter);
}
.ruhsat-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.ruhsat-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark-soft);
}
.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== CONTACT CARD UPDATE ===== */
.contact-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto;
}
.contact-card { text-align: center; }

/* ===== ADMIN STAT CARD ===== */
.stat-card {
    border-radius: 16px;
    padding: 24px;
    color: #fff;
}

/* ===== LEGEND PULSE ===== */
@keyframes legendPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 currentColor; opacity: 1; }
    50% { transform: scale(1.3); box-shadow: 0 0 0 5px transparent; opacity: 0.7; }
}
.legend-pulse {
    animation: legendPulse 1.8s ease-in-out infinite;
    display: inline-block;
}
.ruhsat-legend-item { align-items: center; }
