:root {
    /* Palette */
    --primary-bg: #0a1f3d;      /* Azul muy oscuro */
    --primary-light: #152c52;   /* Azul medio */
    --brand-green: #2ecc71;     /* Verde vibrante */
    --brand-green-hover: #27ae60;

    --text-body: #666666;
    --text-heading: #1a1a1a;

    --bg-light: #f9fbfd;        /* Blanco humo muy sutil */

    /* Typography */
    --font-headings: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* UI Utils */
    --card-radius: 16px;
    --btn-radius: 50px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.12);
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--text-heading);
    font-weight: 700;
}

/* --- Utilidades de Patrones --- */

/* Puntos oscuros para fondo claro (Sección Servicios) */
.bg-dots-dark {
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Puntos claros para fondo oscuro (Footer/Hero) */
.bg-dots-light {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Recorte diagonal para imágenes */
.img-diagonal-clip {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 85%);
    border-radius: 0 !important;
}

/* --- Navbar Moderno --- */
.navbar {
    background-color: var(--primary-bg) !important;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-headings);
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.8rem;
    color: white !important;
}

.brand-dot {
    color: var(--brand-green);
    font-size: 2rem;
    line-height: 0;
    vertical-align: sub;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 0.8rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-green);
    transition: width 0.3s;
}

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

.nav-link:hover, .nav-link.active {
    color: white !important;
}

.btn-client-access {
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: var(--btn-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-client-access:hover {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-client-access {
    background-color: var(--brand-green);
    border: 2px solid var(--brand-green);
    color: white;
    border-radius: var(--btn-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}
.btn-client-access:hover {
    background-color: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

/* --- Hero Section --- */
.hero-section {
    background-image: linear-gradient(135deg, rgba(10, 31, 61, 0.95) 0%, rgba(10, 31, 61, 0.85) 100%),
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover, 20px 20px, cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    color: white;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.btn-modern {
    border-radius: var(--btn-radius);
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: var(--font-headings);
}

.btn-modern-primary {
    background-color: var(--brand-green);
    border: 2px solid var(--brand-green);
    color: white;
}

.btn-modern-primary:hover {
    background-color: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    color: white;
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-modern-outline:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.iso-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 50px;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.iso-badge i { margin-right: 8px; font-size: 1.1em;}

/* --- Servicios (Estilo Claro Moderno) --- */
.section-header {
    margin-bottom: 4rem;
}

.sub-title {
    color: var(--brand-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

/* Tarjeta Blanca Moderna */
.service-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--card-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 204, 113, 0.3);
}

/* Efecto de borde superior verde al hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #f0fdf4; /* Verde muy claro */
    color: var(--brand-green);
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background-color: var(--brand-green);
    color: white;
    transform: rotateY(180deg);
}

.service-card:hover .icon-box i {
    display: inline-block;
    transform: rotateY(-180deg); /* Counter rotate icon */
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-bg);
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s;
}

.read-more-link:hover { color: var(--brand-green); }
.read-more-link i { margin-left: 5px; transition: 0.3s; }
.read-more-link:hover i { margin-left: 10px; }


/* --- About Section --- */
.img-rounded-custom {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-hover);
}

.list-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-heading);
}

.list-check li::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* --- Stats Section Modernizada (Glassmorphism) --- */
.stats-modern-section {
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
    padding: 80px 0;
    position: relative;
    background-attachment: fixed;
}

/* Overlay oscuro para legibilidad */
.stats-modern-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 31, 61, 0.85);
}

.glass-stats-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-modern-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-modern-item p {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Separadores verticales para desktop */
.stat-divider {
    border-right: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
    .stat-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2rem; margin-bottom: 2rem; }
    .stat-modern-item h2 { font-size: 2.8rem; }
}

/* --- Contacto --- */
.contact-card-wrapper {
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.contact-sidebar {
    background-color: var(--primary-bg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-sidebar::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--brand-green);
    border-radius: 50%;
    opacity: 0.05;
}

.contact-icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    margin-right: 15px;
    flex-shrink: 0;
}

.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #e1e5eb;
    background-color: #f9fafb;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: white;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #adb5bd; /* Texto general más claro (gris medio-claro) */
    font-size: 0.9rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--brand-green);
    transform: translateY(-3px);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7); /* Enlaces mucho más visibles */
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--brand-green);
    padding-left: 5px;
    color: white;
    opacity: 1;
}

/* =================================================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE SERVICIOS
   ================================================================= */

/* --- Inner Hero Section (Más corta que el home) --- */
.hero-inner {
    background-image: linear-gradient(135deg, rgba(10, 31, 61, 0.95) 0%, rgba(10, 31, 61, 0.85) 100%),
                      radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2015&q=80');
    background-size: cover, 20px 20px, cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 80px; /* Padding reducido respecto al home */
    color: white;
    position: relative;
    text-align: center;
}

.breadcrumb-custom {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--brand-green);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

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

/* --- Tarjetas de Servicio Detalladas --- */
.service-card-detail {
    background: white;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--card-radius);
    padding: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-detail:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,31,61,0.6) 100%);
}

.service-icon-float {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.service-body {
    padding: 2.5rem 2rem 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--brand-green);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* --- Botón "Pill" Outline --- */
.btn-pill-outline {
    border: 2px solid var(--primary-bg);
    color: var(--primary-bg);
    border-radius: var(--btn-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

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

/* Utility class para letter-spacing */
.ls-2 {
    letter-spacing: 2px;
}

/* =================================================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE DETALLE DE SERVICIO
   ================================================================= */

/* --- Hero Section Detalle --- */
.hero-detail {
    background-image: linear-gradient(to right, rgba(10, 31, 61, 0.95) 0%, rgba(10, 31, 61, 0.8) 100%),
                      url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    color: white;
    position: relative;
}

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

.breadcrumb-detail .breadcrumb-item.active {
    color: var(--brand-green);
    font-weight: 600;
}

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

/* --- Contenido Principal --- */
.content-area img {
    border-radius: var(--card-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.feature-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--brand-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.feature-box i {
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: -2px;
}

/* --- Sidebar Widgets --- */
.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-green);
}

.service-list-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-widget li a {
    display: block;
    padding: 12px 0;
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-list-widget li a:hover,
.service-list-widget li a.active {
    color: var(--primary-bg);
    font-weight: 700;
    padding-left: 10px;
    border-bottom-color: var(--brand-green);
}

.service-list-widget li a i {
    font-size: 0.8rem;
}

.btn-download {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-heading);
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-download:hover {
    background: white;
    border-color: var(--brand-green);
    color: var(--brand-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control-sidebar {
    background: var(--bg-light);
    border: 1px solid #eee;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.form-control-sidebar:focus {
    background: white;
    border-color: var(--brand-green);
    box-shadow: none;
}

/* =================================================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE CONTACTO
   ================================================================= */

/* --- Hero Simple --- */
.hero-simple {
    background-color: var(--primary-bg);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-lead {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Unified Contact Card --- */
.contact-wrapper {
    margin-top: -80px; /* Overlay effect */
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.contact-info-panel {
    background-color: var(--primary-bg);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.info-content h6 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.contact-form-panel {
    padding: 3rem 1rem;
    background: white;
}

/* Material Floating Inputs */
.form-floating > .form-control,
.form-floating > .form-select {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.form-floating > label {
    padding-left: 0;
    color: #999;
}

.btn-send {
    background-color: var(--primary-bg);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-send:hover {
    background-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* --- Full Width Map --- */
.full-width-map {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(100%) contrast(1.2); /* Estilo monocromático elegante */
    transition: 0.3s;
}

.full-width-map:hover {
    filter: grayscale(0%); /* Color al pasar el mouse */
}

/* Custom rule to remove border from content-area card */
.content-area .card {
    border: none !important;
}

body {
    background-color: rgba(0, 0, 0, 0.025) !important;
}

@media (max-width: 991px) {
    .contact-info-panel {
        display: none;
    }

    .hero-contact .hero-title {
        font-size: 28px !important;
    }

    .hero-contact .hero-lead {
        display: none;
    }

    #app .container {
        padding: 0px !important;
    }

    #app .header h2,
    #app .header p,
    #app .card .card-header,
    #app .form-title h3 {
        display: none;
    }

    .hero-simple {
        padding: 100px 0 73px;
    }
    .contact-form-panel {
        padding: 0rem 0rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .navbar-expand-lg .navbar-collapse.show {
        padding-bottom: 30px !important;
    }

    .navbar-expand-lg .navbar-collapse .nav-item {
        padding: 10px 0;
    }

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

    .hero-section {
        padding: 95px 8px 65px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .btn-modern {
        padding: 0.6rem 1.0rem;
    }

    .py-5 {
        padding-top: 2px !important;
    }

    .contact-info-panel {
        display: none;
    }

    .hero-contact .hero-title {
        font-size: 22px !important;
    }

    .hero-contact .hero-lead {
        display: none;
    }

    #app .container {
        padding: 0px !important;
    }

    #app .header h2,
    #app .header p,
    #app .card .card-header,
    #app .form-title h3 {
        display: none;
    }

    .hero-simple {
        padding: 78px 0 28px;
    }
    .contact-form-panel {
        padding: 0rem 0rem;
    }
}
