/* ===== CSS VARIABLES ===== */
:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --secondary: #1D4ED8;
    --accent: #60A5FA;
    --dark: #0f172a;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    width: 160px;
    height: auto;
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .btn-primary-custom {
    padding: 10px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* ===== BUTTONS ===== */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary-custom {
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    padding: 10px 26px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233B82F6;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%231D4ED8;stop-opacity:0.1"/></linearGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23g)"/><circle cx="80" cy="40" r="3" fill="url(%23g)"/><circle cx="40" cy="80" r="2" fill="url(%23g)"/><circle cx="90" cy="90" r="2" fill="url(%23g)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(14, 165, 233, 0.1);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(245, 158, 11, 0.1);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== DEMO FORM ===== */
.demo-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.demo-form h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.demo-form h3 i {
    color: var(--accent);
}

/* ===== FORM CONTROLS ===== */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICE CARDS ===== */
.services {
    background: var(--light);
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.service-card.featured {
    background: var(--gradient-dark);
    border: none;
}

.service-card.featured h4,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured p {
    opacity: 0.8;
}

.service-card.featured .service-icon {
    background: var(--white);
    color: var(--primary);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-feature h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.about-feature p {
    margin: 0;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stats-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    bottom: -30px;
    left: -30px;
}

.stats-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.stats-card p {
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.why-us .section-title h2,
.why-us .section-title p {
    color: var(--white);
}

.why-us .section-title p {
    opacity: 0.8;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.why-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===== BLOG SECTION ===== */
.blog {
    background: var(--light);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.blog-content {
    padding: 30px;
}

.blog-content .date {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-content h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h4 {
    color: var(--primary);
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-read-more:hover {
    gap: 15px;
    color: var(--primary-dark);
}

/* ===== COMPLIANCE SECTION ===== */
.compliance {
    background: var(--light);
    position: relative;
}

/* Compliance Stat Cards */
.compliance-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
}

.compliance-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.compliance-stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.compliance-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.compliance-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 6px;
}

/* Compliance Table */
.compliance-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.compliance-table-header {
    background: var(--gradient);
    color: var(--white);
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compliance-table-header i {
    font-size: 1.2rem;
}

.compliance-table thead {
    background: #f1f5f9;
}

.compliance-table thead th {
    color: var(--dark);
    font-weight: 600;
    padding: 16px 20px;
    border: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.compliance-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border-color: #f1f5f9;
    font-size: 0.95rem;
}

.compliance-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.compliance-total-row {
    background: #f8fafc;
    border-top: 2px solid var(--border-color);
}

.compliance-source-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Legacy table-modern support */
.table-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.table-modern thead {
    background: var(--gradient);
}

.table-modern thead th {
    color: var(--white);
    font-weight: 600;
    padding: 20px;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table-modern tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border-color: #f1f5f9;
}

.table-modern tbody tr:hover {
    background: #f8fafc;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light);
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 25px;
}

.contact-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.disclaimer-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.2rem;
}

.disclaimer h6 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.disclaimer p {
    color: #1e3a5f;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-dark);
    padding: 120px 0 80px;
    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,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.pricing-card.featured {
    background: var(--gradient-dark);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured * {
    color: var(--white);
}

.pricing-card .badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-card.featured .price {
    color: var(--accent);
}

.pricing-card .duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card.featured ul li {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card ul li i {
    color: var(--success);
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.info-card h5 i {
    color: var(--primary);
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    background: var(--white);
}

.content-section.alt {
    background: var(--light);
}

.content-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-box h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-box h4 {
    font-weight: 600;
    color: var(--dark);
    margin: 25px 0 15px;
}

.content-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 20px;
}

.content-box ul li {
    margin-bottom: 10px;
}

/* ===== TEAM CARD ===== */
.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-card .avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--white);
}

.team-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card .credentials {
    background: var(--light);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.team-card .credentials p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== PAYMENT SECTION ===== */
.payment-card {
    background: var(--gradient);
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    text-align: center;
}

.payment-card h4 {
    font-weight: 700;
    margin-bottom: 25px;
}

.payment-details {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    color: var(--dark);
    text-align: left;
}

.payment-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.payment-details .detail-row:last-child {
    border-bottom: none;
}

.payment-details .label {
    color: var(--text-muted);
    font-weight: 500;
}

.payment-details .value {
    color: var(--dark);
    font-weight: 600;
}

.upi-box {
    background: var(--light);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.upi-box p {
    margin: 10px 0;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--dark);
}

/* ===== KYC FORM ===== */
.kyc-form {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.kyc-form h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.file-upload {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.file-upload i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.file-upload p {
    color: var(--text-muted);
    margin: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== ALERTS ===== */
.alert-custom {
    border-radius: 16px;
    padding: 20px 25px;
    border: none;
}

.alert-warning-custom {
    background: #fef3c7;
    color: #92400e;
}

.alert-info-custom {
    background: #dbeafe;
    color: #1e40af;
}

.alert-danger-custom {
    background: #fee2e2;
    color: #991b1b;
}

/* ===== RESPONSIVE ===== */

/* XXL - Large desktops (1400px+) */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .service-card {
        padding: 45px 35px;
    }

    .compliance-stat-number {
        font-size: 3rem;
    }

    .footer {
        padding: 100px 0 40px;
    }
}

/* XL - Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .compliance-stat-card {
        padding: 28px 20px;
    }
}

/* LG - Large tablets / Small desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .navbar-brand img {
        width: 150px !important;
    }

    .compliance-stat-card {
        padding: 24px 18px;
    }

    .compliance-stat-number {
        font-size: 2.2rem;
    }
}

/* MD - Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .demo-form {
        margin-top: 50px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .navbar .btn-primary-custom {
        margin-top: 15px;
        margin-left: 10px;
    }

    .navbar-brand img {
        width: 130px !important;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image {
        margin-bottom: 40px;
    }

    /* Compliance */
    .compliance-stat-card {
        padding: 22px 16px;
    }

    .compliance-stat-number {
        font-size: 2rem;
    }

    .compliance-stat-label {
        font-size: 0.85rem;
    }

    .compliance-table thead th {
        padding: 14px 16px;
        font-size: 0.75rem;
    }

    .compliance-table tbody td {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer .col-lg-4,
    .footer .col-lg-3 {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }
}

/* SM - Small tablets / Large phones (576px - 767px) */
@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        text-align: center;
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .top-bar .col-md-6:first-child {
        margin-bottom: 8px;
    }

    .top-bar .col-md-6:first-child a {
        display: inline-block;
        margin-bottom: 4px;
        font-size: 0.8rem;
    }

    .top-bar .me-4 {
        margin-right: 10px !important;
    }

    .top-bar .btn-whatsapp {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        width: 120px !important;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-link {
        margin: 2px 0;
        padding: 10px 15px;
        border-radius: 8px;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(59, 130, 246, 0.08);
    }

    .navbar .nav-link::after {
        display: none;
    }

    .navbar .btn-primary-custom {
        margin: 10px 0 5px;
        width: 100%;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero p {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .section-badge {
        margin-bottom: 15px;
    }

    .demo-form {
        margin-top: 35px;
        padding: 25px 18px;
    }

    .demo-form h3 {
        font-size: 1.2rem;
    }

    /* Floating Shapes */
    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-card h4 {
        font-size: 1.15rem;
    }

    /* About Section */
    .about-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-content .section-badge {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }

    .about-feature i {
        margin: 0 auto 15px;
    }

    .stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        text-align: center;
    }

    /* Prevent AOS horizontal overflow */
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        overflow: visible !important;
    }

    .hero,
    .services,
    .about,
    .why-us,
    .compliance,
    .contact {
        overflow: hidden;
    }

    /* Why Choose Us */
    .why-card {
        padding: 25px 20px;
    }

    .why-card i {
        font-size: 2.5rem;
    }

    .why-card h4 {
        font-size: 1.1rem;
    }

    /* Blog Section */
    .blog-img {
        height: 150px;
        font-size: 3rem;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h4 {
        font-size: 1.1rem;
    }

    /* Compliance */
    .compliance-stat-card {
        padding: 20px 16px;
    }

    .compliance-stat-number {
        font-size: 1.8rem;
    }

    .compliance-stat-icon {
        font-size: 1.6rem;
    }

    .compliance-table-header {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .compliance-table thead th {
        padding: 12px 14px;
        font-size: 0.72rem;
    }

    .compliance-table tbody td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    /* Disclaimer */
    .disclaimer {
        padding: 20px;
        gap: 15px;
    }

    .disclaimer-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .disclaimer p {
        font-size: 0.85rem;
    }

    /* Table Modern */
    .table-modern thead th {
        padding: 15px 10px;
        font-size: 0.75rem;
    }

    .table-modern tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    /* Contact Cards */
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
        text-align: center;
    }

    .footer h5 {
        margin-top: 30px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Content Box */
    .content-box {
        padding: 25px;
    }

    .content-box h3 {
        font-size: 1.3rem;
    }

    /* KYC Form */
    .kyc-form {
        padding: 30px 20px;
    }

    /* Pricing Cards */
    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }

    /* Scroll to Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Buttons */
    .btn-primary-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* XS - Small phones (< 576px) */
@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Top Bar */
    .top-bar {
        padding: 6px 0;
        font-size: 0.75rem;
    }

    .top-bar .col-md-6:first-child a {
        font-size: 0.75rem;
    }

    .top-bar .btn-whatsapp {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    /* Navbar */
    .navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        width: 100px !important;
    }

    .navbar-collapse {
        padding: 12px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero .gap-3 {
        gap: 8px !important;
    }

    .demo-form {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .demo-form h3 {
        font-size: 1.1rem;
    }

    .demo-form h6 {
        font-size: 0.85rem;
    }

    .demo-form small {
        font-size: 0.75rem;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* Service Cards */
    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        border-radius: 15px;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* About */
    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-feature i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Why Cards */
    .why-card {
        padding: 20px 15px;
    }

    .why-card i {
        font-size: 2rem;
    }

    .why-card h4 {
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Blog */
    .blog-img {
        height: 120px;
        font-size: 2.5rem;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h4 {
        font-size: 1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    /* Compliance */
    .compliance-stat-card {
        padding: 16px 12px;
    }

    .compliance-stat-number {
        font-size: 1.5rem;
    }

    .compliance-stat-icon {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .compliance-stat-label {
        font-size: 0.75rem;
    }

    .compliance-table-wrapper {
        border-radius: 12px;
    }

    .compliance-table-header {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .compliance-table thead th {
        padding: 8px 6px;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .compliance-table tbody td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }

    .compliance-source-dot {
        width: 8px;
        height: 8px;
    }

    /* Disclaimer */
    .disclaimer {
        flex-direction: column;
        padding: 16px 14px;
        gap: 10px;
    }

    .disclaimer-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .disclaimer h6 {
        font-size: 0.85rem;
    }

    .disclaimer p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    /* Contact */
    .contact-card {
        padding: 22px 15px;
    }

    .contact-card i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-card h4 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
        word-break: break-word;
    }

    /* Table Modern */
    .table-modern {
        font-size: 0.8rem;
    }

    .table-modern thead th {
        padding: 12px 8px;
        font-size: 0.7rem;
    }

    .table-modern tbody td {
        padding: 10px 8px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-brand img {
        width: 100px !important;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-top: 25px;
    }

    .footer-links li a {
        font-size: 0.85rem;
        padding: 3px 0;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card h4 {
        font-size: 1.2rem;
    }

    /* Content Box */
    .content-box {
        padding: 20px 15px;
    }

    .content-box h3 {
        font-size: 1.2rem;
    }

    .content-box h4 {
        font-size: 1.1rem;
    }

    .content-box p {
        font-size: 0.9rem;
    }

    /* KYC Form */
    .kyc-form {
        padding: 25px 15px;
    }

    .file-upload {
        padding: 20px;
    }

    .file-upload i {
        font-size: 2rem;
    }

    /* Payment */
    .payment-card {
        padding: 25px 15px;
    }

    .payment-details {
        padding: 20px 15px;
    }

    .payment-details .detail-row {
        flex-direction: column;
        gap: 4px;
    }

    /* Team Card */
    .team-card {
        padding: 30px 20px;
    }

    .team-card .avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    /* Scroll Top */
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }

    /* Buttons */
    .btn-primary-custom {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-whatsapp {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Info Cards */
    .info-card {
        padding: 22px 18px;
    }

    .info-card h5 {
        font-size: 1rem;
    }

    /* Floating shapes - hide on small phones */
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

/* XXS - Extra small devices (< 375px) */
@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .top-bar {
        font-size: 0.7rem;
        padding: 5px 0;
    }

    .top-bar .col-md-6:first-child a {
        font-size: 0.7rem;
    }

    .navbar-brand img {
        width: 85px !important;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.25rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    .demo-form {
        padding: 18px 12px;
    }

    .demo-form h3 {
        font-size: 1rem;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .compliance-stat-card {
        padding: 14px 10px;
    }

    .compliance-stat-number {
        font-size: 1.3rem;
    }

    .compliance-stat-label {
        font-size: 0.7rem;
    }

    .btn-primary-custom {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .btn-whatsapp {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .about-content h2 {
        font-size: 1.25rem;
    }

    .why-card h4 {
        font-size: 0.95rem;
    }

    .contact-card h4 {
        font-size: 0.95rem;
    }

    .footer-desc {
        font-size: 0.8rem;
    }

    .footer-links li a {
        font-size: 0.8rem;
    }
}

/* ===== UTILITIES ===== */
.bg-gradient-custom {
    background: var(--gradient);
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.rounded-custom {
    border-radius: 20px;
}
