:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 0.5rem;
    --shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,0.175);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i { font-size: 1.75rem; }

.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: var(--gray-700); font-weight: 500; padding: 0.5rem 0; position: relative; }
.nav-menu a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
}

.btn-phone:hover { background: #157347; color: var(--white); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0b3d91 0%, #0d6efd 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 700px; margin: 0 auto 2rem; }

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero .btn-light {
    background: var(--white);
    color: var(--primary);
}

.hero .btn-light:hover { background: var(--gray-100); }

.hero .btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero .btn-outline-light:hover { background: var(--white); color: var(--primary); }

/* Services Grid */
.services-section { padding: 4rem 0; background: var(--gray-100); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card .icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; }

/* Features */
.features-section { padding: 4rem 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.feature-item p { color: var(--gray-600); font-size: 0.95rem; }

/* Process */
.process-section { padding: 4rem 0; background: var(--gray-100); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: process;
}

.process-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.process-item::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-item i { font-size: 2.5rem; color: var(--primary); margin: 1rem 0; }
.process-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-item p { color: var(--gray-600); font-size: 0.9rem; }

/* References */
.references-section { padding: 4rem 0; }

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reference-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.reference-card .stars { color: var(--warning); margin-bottom: 0.75rem; }
.reference-card p { color: var(--gray-700); margin-bottom: 1rem; font-style: italic; }
.reference-card .author { font-weight: 600; }
.reference-card .author span { color: var(--gray-600); font-weight: 400; font-size: 0.9rem; }

/* Blog */
.blog-section { padding: 4rem 0; background: var(--gray-100); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover { transform: translateY(-3px); }

.blog-card .blog-image {
    height: 200px;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 3rem;
}

.blog-card .blog-content { padding: 1.5rem; }
.blog-card .blog-meta { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }

/* FAQ */
.faq-section { padding: 4rem 0; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--dark);
}

.faq-question i { transition: var(--transition); }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }

.faq-answer p { color: var(--gray-600); }

/* CTA Buttons Fixed */
.fixed-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.fixed-cta a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    transition: var(--transition);
}

.fixed-cta a:hover { transform: scale(1.05); }

.cta-phone { background: var(--success); }
.cta-whatsapp { background: #25d366; }

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i { color: var(--primary); }

.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--gray-400); }
.footer-col ul li a:hover { color: var(--white); }

.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social a:hover { background: var(--primary); }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact i { color: var(--primary); margin-top: 0.25rem; }

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--gray-500); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--white); }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-weight: 400; cursor: pointer; }
.checkbox-label input { width: auto; }

/* Contact Page */
.contact-section { padding: 4rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--gray-600); margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-detail i {
    width: 48px;
    height: 48px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-detail p { margin: 0; color: var(--gray-700); }

.contact-map {
    background: var(--gray-200);
    border-radius: var(--radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    margin-top: 2rem;
}

/* Page Content */
.page-content { padding: 3rem 0; }
.page-content h2, .page-content h3 { margin-bottom: 1rem; color: var(--dark); }
.page-content p { margin-bottom: 1rem; color: var(--gray-700); }
.page-content ul, .page-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }

/* Service Detail */
.service-hero { padding: 3rem 0; background: var(--gray-100); text-align: center; }
.service-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.service-hero p { max-width: 700px; margin: 0 auto; color: var(--gray-600); }

.service-detail { padding: 3rem 0; }
.service-detail h2 { font-size: 1.75rem; margin: 2rem 0 1rem; }
.service-detail h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.service-detail p { color: var(--gray-700); margin-bottom: 1rem; }
.service-detail ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.service-detail ul li { margin-bottom: 0.5rem; color: var(--gray-700); }

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sub-service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.sub-service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.sub-service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.sub-service-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; }

/* Blog */
.blog-detail { padding: 3rem 0; }
.blog-detail h1 { font-size: 2rem; margin-bottom: 1rem; }
.blog-meta { color: var(--gray-500); margin-bottom: 2rem; }
.blog-detail img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-detail h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.blog-detail h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }

/* Breadcrumb */
.breadcrumb-nav { background: var(--gray-100); padding: 1rem 0; }
.breadcrumb { display: flex; list-style: none; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--gray-400); }
.breadcrumb a { color: var(--primary); font-size: 0.9rem; }
.breadcrumb .active { color: var(--gray-600); font-size: 0.9rem; }

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
}

.mobile-nav { flex: 1; padding: 1rem; }
.mobile-nav a {
    display: block;
    padding: 0.875rem 0;
    color: var(--gray-800);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-footer { padding: 1rem; border-top: 1px solid var(--gray-200); }

/* 404 Page */
.page-404 {
    padding: 6rem 0;
    text-align: center;
}

.page-404 h1 { font-size: 6rem; color: var(--primary); line-height: 1; }
.page-404 h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.page-404 p { color: var(--gray-600); margin-bottom: 2rem; }

/* Thank You */
.thank-you {
    padding: 6rem 0;
    text-align: center;
}

.thank-you i { font-size: 4rem; color: var(--success); margin-bottom: 1rem; }
.thank-you h1 { margin-bottom: 1rem; }
.thank-you p { color: var(--gray-600); margin-bottom: 2rem; }

/* References Page */
.references-page { padding: 3rem 0; }
.references-list { display: grid; gap: 1.5rem; }

/* Blog Page */
.blog-page { padding: 3rem 0; }
.blog-categories { margin-bottom: 2rem; }
.blog-categories a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.blog-categories a:hover, .blog-categories a.active { background: var(--primary); color: var(--white); }

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-success { background: #d1e7dd; color: #0f5132; border: 1px solid #badbcc; }
.alert-danger { background: #f8d7da; color: #842029; border: 1px solid #f5c2c7; }
.alert-warning { background: #fff3cd; color: #664d03; border: 1px solid #ffecb5; }
.alert-info { background: #cff4fc; color: #055160; border: 1px solid #b6effb; }

/* ============================================
   MODERN HOME PAGE STYLES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-title {
    margin-bottom: 1rem;
}

/* Modern Hero */
.hero-modern {
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0d6efd 100%);
    color: var(--white);
    padding: 7rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(13, 202, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.6);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll a span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Modern Services */
.services-modern { padding: 6rem 0; background: var(--gray-100); }

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card-modern {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0dcaf0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.1);
}

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

.service-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, #0dcaf0 100%);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card-modern h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark);
}

.service-card-modern p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.service-card-modern:hover .service-link {
    gap: 0.75rem;
}

/* Why Us */
.why-us { padding: 6rem 0; background: var(--white); }

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-image { position: relative; }

.image-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-placeholder {
    font-size: 8rem;
    color: var(--gray-400);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-card strong { display: block; font-size: 1rem; }
.floating-card span { font-size: 0.85rem; color: var(--gray-600); }

.features-list { display: grid; gap: 1.25rem; margin-top: 2rem; }

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: var(--gray-100);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #0dcaf0);
    color: var(--white);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item-modern h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.feature-item-modern p { color: var(--gray-600); font-size: 0.9rem; }

/* Modern Process */
.process-modern { padding: 6rem 0; background: linear-gradient(135deg, #0a192f 0%, #112240 100%); color: var(--white); }

.process-modern .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #0dcaf0;
}

.process-modern .section-title { color: var(--white); }

.process-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.process-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.process-num {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    line-height: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #0dcaf0);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.process-card-modern h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.process-card-modern p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Modern References */
.references-modern { padding: 6rem 0; background: var(--white); }

.referencesSwiper { padding-bottom: 3rem; }

.referencesSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
}

.referencesSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.reference-card-modern {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.reference-card-modern:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.reference-card-modern .stars {
    color: var(--warning);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reference-card-modern .quote {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reference-card-modern .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong { display: block; font-size: 1rem; color: var(--dark); }
.author-info span { font-size: 0.85rem; color: var(--gray-600); }

/* Modern Blog */
.blog-modern { padding: 6rem 0; background: var(--gray-100); }

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card-modern {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.blog-image-wrap { position: relative; }

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 3rem;
}

.blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-body { padding: 1.5rem; }

.blog-meta-modern {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-card-modern h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-modern h3 a { color: var(--dark); }
.blog-card-modern h3 a:hover { color: var(--primary); }

.blog-card-modern p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover { gap: 0.75rem; }

/* Modern FAQ */
.faq-modern { padding: 6rem 0; background: var(--white); }

.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.faq-list-modern { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item-modern {
    background: var(--gray-100);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    background: var(--gray-200);
}

.faq-question-modern {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--dark);
}

.faq-question-modern i {
    transition: transform 0.3s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item-modern.active .faq-question-modern i {
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer-modern p {
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0dcaf0 100%);
    color: var(--white);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.faq-cta-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.faq-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-cta-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.faq-cta-card .btn-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Modern CTA */
.cta-modern { padding: 4rem 0; background: var(--gray-100); }

.cta-card {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    border-radius: 1.5rem;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: var(--white);
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-content p {
    opacity: 0.85;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* SEO Content */
.seo-content { padding: 4rem 0; background: var(--white); }

.seo-card {
    background: var(--gray-100);
    border-radius: 1rem;
    padding: 3rem;
}

.seo-card h2 { margin-bottom: 1.5rem; color: var(--dark); }
.seo-card p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }

/* Swiper Custom */
.swiper-pagination { bottom: 0 !important; }

/* Responsive Modern */
@media (max-width: 991px) {
    .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .blog-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-card { flex-direction: column; text-align: center; }
    .cta-content { text-align: center; }
    .cta-content p { margin: 0 auto 1rem; }
}

@media (max-width: 767px) {
    .hero-modern { padding: 5rem 0 3rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .process-grid-modern { grid-template-columns: 1fr; }
    .blog-grid-modern { grid-template-columns: 1fr; }
    .cta-card { padding: 2rem; }
    .services-grid-modern { grid-template-columns: 1fr; }
    .seo-card { padding: 1.5rem; }
}

