﻿/* 
 * ROYALMEDIA - Custom ExcellentWebWorld Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5; /* Premium Indigo */
    --primary-light: #818cf8;
    --primary-rgb: 79, 70, 229;
    --secondary: #06b6d4; /* Cyan */
    --accent: #e31e24; /* Premium Red */
    --accent-hover: #c4191f;
    
    --bg-light: #f1f5f9; /* Ultra-light Silver */
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    
    --border-radius: 20px;
    --border-radius-lg: 32px;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(20px);
    
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 40px 80px -20px rgba(0, 0, 0, 0.08);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Contrast Helper */
    --royal-primary: #4f46e5;
    --royal-dark: #0f172a;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--primary-hover);
}

/* Typography Helpers */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 98, 255, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 166, 0, 0.3);
}

/* Sections */
.section {
    padding: 120px 0;
}

.bg-gradient-light {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

/* Updated Premium Service Card */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    padding: 0;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    /* Removed rotation perspective */
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary);
}

/* Card Arrow Icon */
.card-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-modern:hover .card-arrow {
    background-color: var(--primary);
    color: #fff;
}

/* Header Navbar */
.navbar-custom {
    padding: 15px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.navbar-custom .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
}

.navbar-custom .nav-link:hover {
    color: var(--primary);
}

/* Royal Grid */
.royal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Pricing Cards Premium Style */
.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
    border: 2px solid var(--primary);
}

.pricing-card .card-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.pricing-card .card-badge.bg-success {
    background: var(--secondary) !important;
}

.card-price-container {
    margin: 2rem 0;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.discount-badge {
    background: rgba(219, 39, 119, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.current-price .currency { font-size: 1.5rem; color: var(--primary); font-weight: 700; }
.current-price .amount { font-size: 3rem; color: var(--text-dark); font-weight: 800; letter-spacing: -0.05em; }
.current-price .period { font-size: 1rem; color: var(--text-muted); }

/* Hero Typography */
.hero-title-premium {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-royal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-royal-primary {
    background: var(--royal-primary);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(26, 98, 255, 0.25);
}

.btn-royal-primary:hover {
    transform: translateY(-3px);
    background: #004ecc;
    box-shadow: 0 15px 35px rgba(26, 98, 255, 0.35);
}

.btn-royal-dark {
    background: var(--royal-dark);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.btn-royal-dark:hover {
    transform: translateY(-3px);
    background: #000;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-dark) !important;
}

.glass-effect:hover {
    background: #fff !important;
    transform: translateY(-3px);
}

/* Hero Section for Inner Pages */
.inner-page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 98, 255, 0.3), transparent);
}

.page-hero-txt {
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-hover);
}

.flaticon-next {
    font-size: 0.6rem;
}

.current-page {
    color: var(--text-dark);
    font-weight: 600;
}

/* Service Details */
.service-details {
    padding: 80px 0;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i {
    color: #10b981;
    font-size: 1rem;
}

/* Blog List */
.blog-card {
    background: var(--royal-glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--royal-glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-meta i {
    margin-right: 6px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

/* Blog Detail */
.blog-detail {
    padding: 80px 0;
}

.blog-detail-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detail-img img {
    width: 100%;
    height: auto;
}

.blog-detail-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 20px;
    margin-bottom: 24px;
}

.blog-detail-content li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Categories */
.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 98, 255, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-input {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.contact-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 98, 255, 0.1);
}

.contact-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
}

.contact-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 98, 255, 0.1);
}

.contact-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(26, 98, 255, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.method-icon.email {
    background: linear-gradient(135deg, rgba(26, 98, 255, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary);
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    color: #25d366;
}

.method-icon.location {
    background: linear-gradient(135deg, rgba(255, 77, 42, 0.1), rgba(255, 77, 42, 0.05));
    color: #ff4d2a;
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.method-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

.method-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.method-content a:hover {
    color: var(--primary-hover);
    gap: 10px;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: left;
    padding-right: 40px;
}

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .hero-subtitle {
        margin: 0 auto 32px;
    }
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.trust-item i {
    color: #10b981;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 98, 255, 0.1) 0%, rgba(26, 98, 255, 0.8) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.9;
}

.service-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    z-index: 10;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon-container {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1.5px solid rgba(26, 98, 255, 0.2);
    border-radius: 50px;
}

.service-link:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    gap: 12px;
}

/* Hero Container Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-right {
        order: -1;
    }
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInRight 1s ease 0.4s forwards;
    opacity: 0;
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(26, 98, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    background: var(--bg-light);
    font-family: inherit;
}

.hero-form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 98, 255, 0.1);
}

.hero-form-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.hero-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 98, 255, 0.3);
}

.form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

.form-footer i {
    color: #10b981;
    margin-right: 6px;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-img .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-card-meta i {
    margin-right: 6px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #4f46e5;
    gap: 12px;
}

/* Blog List Layout */
.blog-list-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.blog-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-list-item-img {
    width: 120px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-item-content {
    flex: 1;
}

.blog-list-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-list-item-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-list-item-meta i {
    margin-right: 6px;
}

/* Blog Detail */
.blog-detail-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-detail-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 30px 0 16px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 20px;
    margin-bottom: 24px;
}

.blog-detail-content li {
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.7;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.blog-detail-content code {
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.blog-detail-content pre {
    background: var(--bg-dark);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 24px;
}

.blog-detail-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Service Detail */
.service-detail-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-features li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-features li i {
    color: #10b981;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 98, 255, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 98, 255, 0.4);
    color: #fff;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

/* Mobile First - Small Devices */
@media (max-width: 575.98px) {
    .service-container,
    .blog-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-content,
    .blog-content {
        padding-right: 0;
    }
    
    .service-sidebar,
    .blog-sidebar {
        position: relative;
        top: 0;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-hero,
    .blog-hero,
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .blog-main-image,
    .service-main-image {
        border-radius: 16px;
    }
}

/* Medium Devices - Tablets */
@media (min-width: 576px) and (max-width: 991.98px) {
    .service-container,
    .blog-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content,
    .blog-content {
        padding-right: 0;
    }
    
    .service-sidebar,
    .blog-sidebar {
        position: relative;
        top: 0;
    }
}

/* Large Devices - Desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-container,
    .blog-container {
        gap: 40px;
    }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .glass-card:hover,
    .related-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-whatsapp-large:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .service-hero,
    .blog-hero,
    .contact-hero,
    .service-sidebar,
    .blog-sidebar,
    .related-posts,
    .related-services {
        display: none !important;
    }
    
    .service-container,
    .blog-container {
        display: block;
    }
    
    .service-content,
    .blog-content {
        width: 100%;
        padding: 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .glass-card,
    .sidebar-card {
        border: 2px solid #000;
    }
    
    .btn-primary {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   HERO & PRICING SECTION STYLES
   ============================================ */
.hero-title-premium {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-right-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-price-container {
    margin: 24px 0;
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.discount-badge {
    background: #fef2f2;
    color: #ef4444;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
    text-decoration: none;
    display: inline-block;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.current-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* ============================================
   PROJECTS PORTAFOLIO STYLES
   ============================================ */
.projects-section {
    padding: 100px 0;
    background: #fcfdfe;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 98, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-content {
    padding: 24px;
    flex-grow: 1;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: #fdfefe;
}

.blog-featured {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-item-image {
    width: 120px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-item-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--royal-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stat-item {
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: #fafafa;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-position {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   TECH LOGOS SECTION
   ============================================ */
.tech-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.tech-title {
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.tech-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f9fa;
    border-radius: 50px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tech-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.tech-logo i {
    font-size: 1.5rem;
}

/* ============================================
   HERO V2 - TYPEWRITER + CANVAS BG
   ============================================ */
#heroSection {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 80px;
    background: #f8faff;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content-wrap {
    position: relative;
    z-index: 10;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 98, 255, 0.08);
    border: 1px solid rgba(26, 98, 255, 0.2);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.hero-main-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-main-title .static-text {
    display: block;
    color: var(--text-dark);
}

.hero-main-title .typewriter-wrap {
    display: block;
    min-height: 1.2em;
}

.hero-main-title .typed-word {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-title .cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--primary);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    -webkit-text-fill-color: var(--primary);
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.btn-callback {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text-dark) !important;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.btn-callback:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(26, 98, 255, 0.15);
}

/* Hero Pricing Cards V2 */
.hero-pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.hero-price-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-price-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.hero-price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(26, 98, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.hero-card-badge {
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-card-badge.blue {
    background: var(--primary);
}

.hero-price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-price-original {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.hero-price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.hero-price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-bottom: 4px;
}

/* Countdown Timer */
.countdown-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    gap: 4px;
    align-items: center;
}

.countdown-block {
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 8px;
    padding: 4px 8px;
    min-width: 36px;
    text-align: center;
}

.countdown-block .num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.countdown-block .unit {
    font-size: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.countdown-sep {
    color: var(--accent);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-card-btns {
    display: flex;
    gap: 10px;
}

.btn-card-primary {
    flex: 1;
    text-align: center;
    background: var(--primary);
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card-primary:hover {
    background: #004ecc;
    transform: translateY(-2px);
}

.btn-card-primary.accent {
    background: var(--accent);
}

.btn-card-primary.accent:hover {
    background: var(--accent-hover);
}

.btn-card-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-card-wa:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* ============================================
   TECH SLIDER (AFTER HERO)
   ============================================ */
.tech-slider-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.tech-slider-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
}

.slider-track-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track-wrapper::before,
.slider-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.slider-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.slider-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.slider-track {
    display: flex;
    gap: 32px;
    animation: slideInfinite 35s linear infinite;
    width: max-content;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tech-logo-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #f8faff;
    border: 1px solid rgba(26, 98, 255, 0.06);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-logo-pill:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(26, 98, 255, 0.1);
    border-color: rgba(26, 98, 255, 0.2);
    transform: translateY(-2px);
}

.tech-logo-pill img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tech-logo-pill i {
    font-size: 1.3rem;
}

.tech-logo-pill span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   SERVICE CARDS V2 â€” CREATIVE OVERLAY STYLE
   ============================================ */
.service-card-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.service-card-v2 .sc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v2:hover .sc-bg {
    transform: scale(1.08);
}

.service-card-v2 .sc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.75) 60%, rgba(15,23,42,0.95) 100%);
    transition: opacity 0.4s ease;
}

.service-card-v2:hover .sc-overlay {
    background: linear-gradient(180deg, rgba(26, 98, 255, 0.3) 0%, rgba(15,23,42,0.85) 100%);
}

.service-card-v2 .sc-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-v2 .sc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    transition: all 0.4s ease;
}

.service-card-v2 .sc-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.service-card-v2 .sc-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all 0.4s ease;
    opacity: 0;
}

.service-card-v2:hover .sc-desc {
    max-height: 80px;
    margin-top: 10px;
    opacity: 1;
}

.service-card-v2 .sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-card-v2:hover .sc-link {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PROJECT CARDS V2
   ============================================ */
.project-card-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    display: block;
    text-decoration: none;
}

.project-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-v2:hover img {
    transform: scale(1.08);
}

.project-card-v2 .pc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-v2:hover .pc-overlay {
    opacity: 1;
}

.project-card-v2 .pc-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-v2:hover .pc-tag {
    opacity: 1;
}

.project-card-v2 .pc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card-v2:hover .pc-content {
    transform: translateY(0);
    opacity: 1;
}

.project-card-v2 .pc-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.project-card-v2 .pc-client {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.project-card-v2 .pc-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-v2:hover .pc-arrow {
    opacity: 1;
}

/* ============================================
   BLOG V2 - DYNAMIC FEATURED + SIDEBAR
   ============================================ */
.blog-v2-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

@media (max-width: 991px) {
    .blog-v2-grid {
        grid-template-columns: 1fr;
    }
}

.blog-featured-v2 {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    text-decoration: none;
}

.blog-featured-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.blog-featured-v2 .bfv2-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.blog-featured-v2 .bfv2-body {
    padding: 32px;
}

.blog-featured-v2 .bfv2-cat {
    display: inline-block;
    background: rgba(26, 98, 255, 0.08);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.blog-featured-v2 .bfv2-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-featured-v2 .bfv2-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-featured-v2 .bfv2-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-mini-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-mini-card:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-mini-img {
    width: 90px;
    height: 75px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-mini-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-mini-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.blog-mini-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ============================================
   STATS V2 - ANIMATED COUNT-UP
   ============================================ */
.stats-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8f0ff 50%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.stats-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 98, 255, 0.08), transparent 70%);
    border-radius: 50%;
}

.stats-v2::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06), transparent 70%);
    border-radius: 50%;
}

.stat-card-v2 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.stat-card-v2 .stat-icon-v2 {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.stat-icon-v2.blue {
    background: linear-gradient(135deg, rgba(26, 98, 255, 0.1), rgba(26, 98, 255, 0.05));
    color: var(--primary);
}

.stat-icon-v2.red {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    color: var(--accent);
}

.stat-icon-v2.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.stat-icon-v2.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.stat-num-v2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.04em;
}

.stat-label-v2 {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   CALLBACK MODAL
   ============================================ */
.callback-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.callback-modal-overlay.active {
    display: flex;
}

.callback-modal {
    background: #fff;
    border-radius: 28px;
    padding: 48px;
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.callback-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.callback-modal-close:hover {
    background: var(--text-dark);
    color: #fff;
}

.callback-modal h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.callback-modal p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.callback-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-dark);
}

.callback-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 98, 255, 0.08);
}

.callback-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.callback-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 98, 255, 0.3);
}

/* ============================================
   TESTIMONIALS V2 - SLIGHTLY IMPROVED
   ============================================ */
.testimonial-card-v2 {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.testimonial-card-v2::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 6rem;
    line-height: 1;
    color: rgba(26, 98, 255, 0.06);
    font-family: Georgia, serif;
    font-weight: 900;
}

.testimonial-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.test-rating {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.test-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 28px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(26, 98, 255, 0.15);
}

.test-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.test-position {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* ============================================
   FOOTER V2 - WITH PERSON IMAGE + WAVES
   ============================================ */
.footer-wave-top {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: -2px;
}

.footer-v2 {
    background: linear-gradient(135deg, #060d1f 0%, #0f172a 50%, #0a1628 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-v2-canvas {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
}

.footer-v2-glow-1 {
    position: absolute;
    top: -100px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 98, 255, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.footer-v2-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.footer-person-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    pointer-events: none;
    opacity: 0.15;
    filter: grayscale(30%);
}

.footer-person-wrap img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-v2 .footer-brand-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.footer-v2 .f-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-v2 .f-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.footer-v2 .f-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.footer-v2 .f-col-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-v2 .f-link {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    text-decoration: none;
    display: block;
    line-height: 2.4;
    transition: all 0.2s ease;
}

.footer-v2 .f-link:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-v2 .f-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.footer-v2 .f-contact-row i {
    color: var(--primary);
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-v2 .f-social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-v2 .f-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-v2 .f-divider {
    border-color: rgba(255,255,255,0.06);
    margin: 60px 0 28px;
}

.footer-v2 .f-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    padding-bottom: 30px;
}

/* ============================================
   TOP BAR GLASSMORPHISM
   ============================================ */
.top-bar {
    background: rgba(6, 13, 31, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* ============================================
   NAVBAR GLASSMORPHISM ENHANCED
   ============================================ */
.main-header {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(40px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08) !important;
}

/* reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HERO V6 Ã¢â‚¬â€ BENTO GRID & HAZLOMEJOR STYLE
   ============================================= */
:root {
    --primary: #0f172a; /* Navy Blue Text */
    --primary-light: #1e293b;
    --primary-rgb: 15, 23, 42;
    --accent: #DC2626; /* Royal Red */
    --accent-hover: #B91C1C;
    --bg-light: #f9fafb; /* Ultra light gray airflow */
}

/* Base resets for this view */
body {
    background-color: var(--bg-light);
    color: #475569;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }

/* Section Pill Format */
.section-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}
.section-pill i {
    margin-right: 8px;
    color: var(--accent);
    font-size: 1rem;
}

/* Bento Styling Utilities */
.bento-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(220, 38, 38, 0.3);
}

/* Framer Motion style reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
#heroSection {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 30px 0 60px;
    background: #ffffff; /* Pure white */
}
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.25; /* Subtle dots */
    pointer-events: none;
}
.hero-right-container {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-floating-image {
    position: absolute;
    max-width: 80%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
    animation: floatImg 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatImg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Hero Mini Bento Cards */
.hero-mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);    
    border-radius: 20px;
    padding: 20px;
    width: 290px;
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite alternate;
}
.card-top-left { top: 50px; left: 0; animation-delay: 0s; }
.card-bottom-right { bottom: 50px; right: 0; animation-delay: 1.5s; }

@keyframes floatCard {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-10px) scale(1.02); }
}

.hmc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.hmc-title { font-size: 0.85rem; font-weight: 800; color: var(--primary); }
.hmc-badge { background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 800; padding: 4px 8px; border-radius: 6px; }
.hmc-precio-label { font-size: 0.7rem; font-weight: 600; color: #64748b; text-transform: uppercase; margin-top: 8px; }
.hmc-price { font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1.1; letter-spacing: -0.03em; }
.hmc-links { display: flex; gap: 8px; margin-top: 16px; }
.hmc-btn-black { background: var(--primary); color: #fff !important; font-size: 0.8rem; font-weight: 600; padding: 10px 12px; border-radius: 8px; text-decoration: none; flex: 1; text-align: center; transition: all 0.2s; }
.hmc-btn-black:hover { background: var(--primary-light); }
.hmc-btn-green { background: #fee2e2; color: var(--accent) !important; font-size: 0.8rem; font-weight: 700; padding: 10px 12px; border-radius: 8px; text-decoration: none; flex: 1; text-align: center; transition: all 0.2s; border: 1px solid rgba(220, 38, 38, 0.2); }
.hmc-btn-green:hover { background: var(--accent); color: #fff !important; transform: scale(1.05); }

/* Infinite Marquee */
.marquee-section {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.marquee-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

.marquee-content {
    display: flex;
    animation: marquee-scroll 40s linear infinite;
    gap: 24px;
    padding-left: 24px;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: var(--bg-light);
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid #e2e8f0;
}
.marquee-item i { font-size: 1.4rem; }

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Bento Grid */
.bento-services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
}
.bento-item-service {
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}
.bento-item-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220,38,38,0.08);
    border-color: rgba(220,38,38,0.2);
}
.srv-img-wrap {
    height: 240px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.srv-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}
.bento-item-service:hover .srv-img { transform: scale(1.08); }
.srv-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bento-item-service h3 { font-size: 1.5rem; color: var(--primary); font-weight: 800; margin-bottom: 12px; line-height: 1.25; }
.bento-item-service p { font-size: 0.95rem; color: #64748b; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.bento-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.bento-link i { margin-left: 8px; transition: transform 0.3s; color: var(--accent); }
.bento-link:hover { color: var(--accent); }
.bento-link:hover i { transform: translateX(6px); }

/* Projects Bento Grid */
.bento-projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 350px;
    gap: 24px;
}
.bento-item-project {
    position: relative;
    padding: 0;
    display: block;
    text-decoration: none;
}
.bento-item-project img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-item-project:hover img { transform: scale(1.05); }
.bp-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
}
.bp-tag { align-self: flex-start; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 100px; margin-bottom: 12px; }
.bp-title { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.bp-desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 0; opacity: 0; transform: translateY(10px); transition: all 0.4s; }
.bento-item-project:hover .bp-desc { opacity: 1; transform: translateY(0); }

/* Windows Explorer Mockup Top Bar */
.bp-win-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 36px;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}
.bp-win-top i { color: #64748b; font-size: 0.8rem; transition: color 0.2s; }
.bp-win-top i.fa-xmark { font-size: 0.95rem; }
.bp-win-top i:hover { color: #0f172a; }
.bp-win-top i.fa-xmark:hover { color: #ef4444; }
.bp-win-top::before {
    content: '';
    position: absolute;
    left: 16px;
    width: 60px;
    height: 6px;
    border-radius: 10px;
    background: #cbd5e1;
}

/* Footer Override for Tentativo */
footer { background-color: var(--bg-light) !important; color: #475569 !important; border-top: 1px solid #e2e8f0; }
footer h5, footer h4, .footer-widget-title { color: var(--primary) !important; font-weight: 800 !important; }
footer p, footer li a { color: #475569 !important; }
footer .social-icons a { background-color: #e2e8f0 !important; color: #0f172a !important; }
footer img.footer-logo { filter: brightness(0) invert(0) !important; mix-blend-mode: multiply; opacity: 0.8; }
.footer-bottom { border-top: 1px solid #e2e8f0 !important; color: #64748b !important; }

/* Buttons */
.btn-primary-bento {
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    padding: 14px 32px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    border: none;
}
.btn-primary-bento:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(15,23,42,0.15); color: #fff; }
.btn-accent-bento {
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    padding: 14px 32px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    border: none;
}
.btn-accent-bento:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3); color: #fff; }


 . h e r o - i n t e r n a l   { 
         p a d d i n g :   1 2 0 p x   0   6 0 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f a f c   0 % ,   # e 2 e 8 f 0   1 0 0 % ) ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 . h e r o - i n t e r n a l - c a n v a s   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         p o i n t e r - e v e n t s :   n o n e ; 
         z - i n d e x :   0 ; 
 } 
 . h e r o - i n t e r n a l   . c o n t a i n e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   1 0 ; 
 } 
  
 
 . h e r o - i n t e r n a l   { 
         p a d d i n g :   1 6 0 p x   0   8 0 p x ;   / *   I n c r e a s e d   t o p   p a d d i n g   t o   a v o i d   m e n u   o v e r l a p   * / 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f f f f f   0 % ,   # f 1 f 5 f 9   1 0 0 % ) ;   / *   L i g h t e r ,   c l e a n e r   b a c k g r o u n d   * / 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 . h e r o - i n t e r n a l - c a n v a s   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         p o i n t e r - e v e n t s :   n o n e ; 
         z - i n d e x :   0 ; 
         o p a c i t y :   0 . 8 ;   / *   M a k e   p a r t i c l e s   m o r e   v i s i b l e   * / 
 } 
  
 
 / *   E l e g a n t   S e r v i c e   C a r d s   E n h a n c e m e n t   * / 
 . b e n t o - i t e m - s e r v i c e   { 
         b a c k g r o u n d :   # f f f f f f ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ,   b o x - s h a d o w   0 . 4 s   e a s e ; 
 } 
 . b e n t o - i t e m - s e r v i c e : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x )   s c a l e ( 1 . 0 2 ) ; 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 2 2 0 ,   3 8 ,   3 8 ,   0 . 1 ) ; 
         b o r d e r - c o l o r :   r g b a ( 2 2 0 ,   3 8 ,   3 8 ,   0 . 2 ) ; 
 } 
 . b e n t o - i t e m - s e r v i c e   . s r v - b o d y   h 3   { 
         f o n t - s i z e :   1 . 3 5 r e m ; 
         f o n t - w e i g h t :   8 0 0 ; 
         c o l o r :   # 0 f 1 7 2 a ; 
 } 
 
 / *   B e a u t i f u l   W i n d o w   M o c k u p   f o r   P r o j e c t s   * / 
 . p r o j e c t - m o c k u p - h e a d e r   { 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         p a d d i n g :   1 2 p x   1 5 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         b o r d e r - r a d i u s :   1 2 p x   1 2 p x   0   0 ; 
 } 
 . m o c k u p - d o t s   s p a n   { 
         d i s p l a y :   i n l i n e - b l o c k ; 
         w i d t h :   1 2 p x ; 
         h e i g h t :   1 2 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         m a r g i n - r i g h t :   6 p x ; 
 } 
 . m o c k u p - d o t s   s p a n : n t h - c h i l d ( 1 )   {   b a c k g r o u n d :   # f f 5 f 5 6 ;   }   / *   C l o s e   * / 
 . m o c k u p - d o t s   s p a n : n t h - c h i l d ( 2 )   {   b a c k g r o u n d :   # f f b d 2 e ;   }   / *   M i n   * / 
 . m o c k u p - d o t s   s p a n : n t h - c h i l d ( 3 )   {   b a c k g r o u n d :   # 2 7 c 9 3 f ;   }   / *   M a x   * / 
 . m o c k u p - u r l   { 
         b a c k g r o u n d :   # f f f f f f ; 
         p a d d i n g :   4 p x   1 5 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         c o l o r :   # 6 4 7 4 8 b ; 
         m a r g i n - l e f t :   1 5 p x ; 
         f l e x - g r o w :   1 ; 
         t e x t - a l i g n :   l e f t ; 
         b o x - s h a d o w :   i n s e t   0   1 p x   3 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         f o n t - f a m i l y :   ' S e g o e   U I ' ,   s y s t e m - u i ,   s a n s - s e r i f ; 
 } 
  
 
