/* 
==============================================
SIAPET SPA - Main Stylesheet
Author: Gonzalo Ramírez
==============================================
*/

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary: #001B5E;
    --primary-dark: #001345;
    --primary-light: #0099CC;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-family-heading: 'Montserrat', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== NAVIGATION STYLES ===== */
/* Dropdown funciona con Bootstrap nativo en móvil, hover en desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: 0 8px 25px rgba(0, 27, 94, 0.15);
        border-radius: 8px;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown-item {
        padding: 12px 20px;
        color: var(--gray-700);
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
        transform: translateX(5px);
    }
    
    .navbar-nav .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .navbar-nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ===== DROPDOWN MÓVIL ===== */
@media (max-width: 991px) {
    /* Dropdown móvil */
    .navbar-nav .dropdown-menu {
        width: calc(100% - 30px) !important;
        max-width: 280px !important;
        margin: 10px 15px 0 15px !important;
        background-color: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    /* Items del dropdown */
    .navbar-nav .dropdown-item {
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link.dropdown-toggle {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.dropdown-toggle:hover {
    color: var(--primary) !important;
}

/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family-body);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

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

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

img {
    max-width: 100%;
}

ul {
    list-style: none;
    padding-left: 0;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hover-effect {
    transition: var(--transition);
}

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

.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn-hover-effect:hover:before {
    width: 100%;
}

.rounded-lg {
    border-radius: 10px;
}

.section-badge {
    display: inline-block;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.section-divider {
    position: relative;
    height: 1px;
    background-color: var(--gray-300);
    width: 80px;
    margin: 0 auto 2rem;
}

.section-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 0 10px;
}

.section-divider span i {
    color: var(--primary);
}

.btn-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* ===== HEADER ===== */
header {
    transition: var(--transition);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    padding: 8px 0;
    color: var(--white);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.top-info-list li {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.top-info-list li i {
    margin-right: 6px;
    font-size: 0.9rem;
}

.top-info-list li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-info-list li a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.top-social-links a {
    color: var(--white);
    margin-left: 12px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Main Navigation */
header .navbar {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1030; /* Asegura que el menú esté por encima del slider */
    background-color: var(--white);
}

.navbar-brand img.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover img.logo {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: 20px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
}

.nav-font-improved .nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
}

.navbar-nav .nav-link .nav-icon {
    margin-right: 6px;
    font-size: 0.9rem;
    color: var(--primary);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

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

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

.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px;
    margin-top: 15px;
    border-top: 3px solid var(--primary);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 5px;
    transition: var(--transition);
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.btn-hover-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-hover-effect:hover:before {
    width: 100%;
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 27, 94, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link:after {
        display: none;
    }
    
    .header-buttons {
        margin-top: 15px;
        text-align: center;
    }
    
    .header-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    background-color: var(--white);
    position: relative;
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.05);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-features {
    margin-bottom: 2rem;
}

.hero-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.hero-features li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.hero-image-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    z-index: 1;
}

.hero-badge-container {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 3;
}

.hero-badge-item {
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}

.service-card-top {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

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

.service-card-bg-shape {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.service-features li i {
    margin-right: 0.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-preview {
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.05);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.about-image-container {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.85rem;
}

.about-image-shape {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 10px;
    z-index: -1;
}

.about-stats {
    margin-bottom: 2rem;
}

.stat-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== METHODOLOGY SECTION ===== */
.methodology {
    background-color: var(--white);
}

.methodology-timeline {
    position: relative;
    z-index: 1;
}

.methodology-step {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 86, 179, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.methodology-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== CLIENTS SECTION ===== */
.clients-logos {
    margin-bottom: 3rem;
}

.client-logo-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 120px;
    transition: var(--transition);
}

.client-logo {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo-container:hover .client-logo {
    filter: grayscale(0);
    opacity: 1;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: rgba(0, 86, 179, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.testimonial-meta h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-meta p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== LATEST PROJECTS ===== */
.latest-projects {
    background-color: var(--white);
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
}

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

.project-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-top-left-radius: 10px;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.project-meta span {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.project-meta span i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-shape-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/footer-pattern.png');
    opacity: 0.03;
    pointer-events: none;
}

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

.text-primary-light {
    color: var(--primary-light);
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-newsletter h5 {
    font-weight: 600;
}

.footer-subscribe-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 50px;
}

.footer-subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-form .btn {
    border-radius: 50px;
    padding: 0.75rem 1rem;
    min-width: 46px;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact .icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 153, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.footer-contact .icon-box i {
    color: var(--primary-light);
    font-size: 1rem;
}

.footer-contact .content {
    flex: 1;
    padding-top: 8px;
}

.footer-contact .content a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-contact .content a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 0.75rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.footer-bottom-links li {
    margin-left: 1.5rem;
    display: inline-block;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Footer Credits - Difundir Pymes */
.footer-credits {
    background-color: rgba(0, 27, 94, 0.05);
    border-top: 1px solid rgba(0, 27, 94, 0.1);
    border-bottom: 1px solid rgba(0, 27, 94, 0.1);
}

.created-by p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.created-by-link {
    color: #0099CC;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.created-by-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.created-by-link i {
    font-size: 0.8rem;
    margin-left: 3px;
    transition: var(--transition);
}

.created-by-link:hover i {
    transform: translateX(2px);
}

/* ===== SERVICE FEATURES LIST ===== */
.service-features {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-features li:hover::before {
    transform: scale(1.2);
}

/* ===== CAROUSEL INDICATORS WITH NUMBERS ===== */
.carousel-indicators button {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    margin: 0 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
}

.carousel-indicators button.active {
    background-color: var(--primary) !important;
    border-color: var(--white) !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 9999; /* Aumentado para asegurar que esté por encima de otros elementos */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

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

/* Clase adicional para forzar visibilidad en caso necesario */
.back-to-top.force-show {
    opacity: 1 !important;
    visibility: visible !important;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-info-card p, .contact-info-card p a {
    color: var(--gray-600);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

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

/* Contact Form Styles */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.title-separator {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    position: relative;
    margin-bottom: 20px;
}

.title-separator span {
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-dark);
    top: 0;
    left: 0;
}

.contact-form .form-control {
    border-radius: 0 8px 8px 0;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact-form .input-group-text {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px 0 0 8px;
    width: 45px;
    display: flex;
    justify-content: center;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.map-container {
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hover-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
}

.btn-hover-effect:hover:before {
    left: 100%;
}

/* Schedule Meeting Section */
.schedule-meeting-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    overflow: hidden;
}

.bg-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMwMDAwMDAiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djZoNnYtNmgtNnptNi02aDZ2LTZoLTZ2NnptLTYgMGg2di02aC02djZ6bTYgNnY2aDZ2LTZoLTZ6Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.5;
}

.calendar-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.calendar-demo {
    background: white;
    border-radius: 10px;
}

.calendar-table th {
    color: var(--primary);
    font-weight: 600;
}

.calendar-table td {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-table td:hover:not(:empty) {
    background-color: rgba(0, 27, 94, 0.1);
    border-radius: 50%;
}

.calendar-table td.today {
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

/* ===== PAGE HEADER ===== */
.page-header {
    height: 300px;
    background-color: var(--primary);
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 27, 94, 0.9), rgba(0, 153, 204, 0.8));
    z-index: 1;
}

.page-header .container {
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--white);
}

.breadcrumb {
    background-color: transparent;
    margin-top: 2rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

/* ===== SERVICES PAGE ===== */
.services-intro-image {
    position: relative;
    z-index: 1;
}

.services-intro-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.services-intro-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--primary);
}

.service-detail {
    padding: 80px 0;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-detail-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-detail-features li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.02);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.25rem;
    }
    .hero {
        min-height: auto;
        padding: 150px 0 100px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 70px;
    }
    .section-title {
        font-size: 2rem;
    }
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: var(--shadow);
        margin-top: 1rem;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .hero {
        text-align: center;
        padding: 120px 0 80px;
    }
    .hero-features li {
        justify-content: center;
    }
    .hero-cta {
        justify-content: center;
    }
    .about-image-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .methodology-step {
        margin-bottom: 2rem;
    }
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.5rem;
    }
    .btn {
        padding: 0.6rem 1.25rem;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 15px;
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
        font-size: 1.5rem;
    }
}

/* ===== ESTILOS ESPECÍFICOS DE CONTACTO ===== */

/* Diferenciación de secciones */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

/* Sección de información de contacto */
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 27, 94, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(108, 117, 125, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 27, 94, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 27, 94, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-info-card p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
}

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

.contact-info-card a:hover {
    color: var(--secondary);
}

/* Sección del formulario */
.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    position: relative;
    padding: 80px 0;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 27, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Sección FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    border-top: 1px solid #dee2e6;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="faq-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23000000" opacity="0.03"/><circle cx="15" cy="15" r="0.5" fill="%23000000" opacity="0.02"/><circle cx="45" cy="45" r="0.5" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="60" height="60" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.5;
}

.faq-section .section-heading h2 {
    color: #2c3e50;
    position: relative;
}

.faq-section .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.accordion-header {
    border-radius: 12px;
}

.accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 12px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 27, 94, 0.2);
}

.accordion-body {
    background: #ffffff;
    padding: 25px;
    color: #6c757d;
    line-height: 1.6;
}

/* Separadores entre secciones */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    margin: 0;
    border: none;
}

/* Títulos de sección mejorados */
.section-title {
    position: relative;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Contenedor del formulario moderno */
.modern-form-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Inputs flotantes */
.floating-input-group,
.floating-select-group,
.floating-textarea-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-input,
.floating-select,
.floating-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 27, 94, 0.1);
    transform: translateY(-2px);
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 8px;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 4px;
}

.floating-textarea-group .floating-label {
    top: 25px;
    transform: none;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-select:focus + .floating-label,
.floating-select:not([value=""]) + .floating-label,
.floating-textarea:focus + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    transform: none;
}

/* Borde animado */
.input-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.floating-input:focus ~ .input-border,
.floating-select:focus ~ .input-border,
.floating-textarea:focus ~ .input-border {
    width: 100%;
}

/* Checkbox personalizado */
.custom-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark i {
    color: #ffffff;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.custom-checkbox-input:checked + .custom-checkbox-label .checkmark {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.custom-checkbox-input:checked + .custom-checkbox-label .checkmark i {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.privacy-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Botón de envío moderno */
.modern-submit-btn {
    position: relative;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 27, 94, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 27, 94, 0.4);
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-submit-btn.loading .btn-text {
    opacity: 0;
}

.modern-submit-btn.loading .btn-loading {
    opacity: 1;
}

/* Efectos de hover para inputs */
.floating-input-group:hover .floating-input,
.floating-select-group:hover .floating-select,
.floating-textarea-group:hover .floating-textarea {
    border-color: rgba(0, 27, 94, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Animación de entrada */
.modern-form-container {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments para formulario */
@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-section::before,
    .contact-form-section::after {
        display: none;
    }
    
    .modern-form-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .floating-input,
    .floating-select,
    .floating-textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .floating-label {
        font-size: 14px;
        left: 16px;
    }
    
    .floating-input:focus + .floating-label,
    .floating-input:not(:placeholder-shown) + .floating-label,
    .floating-select:focus + .floating-label,
    .floating-select:not([value=""]) + .floating-label,
    .floating-textarea:focus + .floating-label,
    .floating-textarea:not(:placeholder-shown) + .floating-label {
        font-size: 11px;
        left: 12px;
    }
}

/* ===== SECTION TITLES AND ELEMENTS ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.3);
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.section-title.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.section-divider span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.3);
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    margin: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ===== SERVICE CARDS ===== */
.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
    text-align: center;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: center;
}

.service-features li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.service-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.btn-link:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 27, 94, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* ===== SECTION STYLES ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 27, 94, 0.2);
    transition: var(--transition);
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 27, 94, 0.3);
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.section-title::before {
    display: none !important;
}

.text-gradient {
    color: var(--primary);
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */
/* Breadcrumb */
.breadcrumb-section {
    border-bottom: 1px solid #e9ecef;
}

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

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

/* Service Hero */
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Service Description */
.service-description.bg-light {
    background: #f8f9fa !important;
}

.service-description-content {
    padding-right: 2rem;
}

.service-highlights .highlight-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: 10px;
}

.service-highlights .highlight-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 27, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 1.2rem;
}

.highlight-item h6 {
    color: var(--dark);
    font-weight: 600;
}

.service-stats-inline {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.stat-inline h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.stat-inline small {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-description-image img {
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 27, 94, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.service-description-image:hover .image-overlay {
    opacity: 1;
}

.service-description-image:hover img {
    transform: scale(1.05);
}

.overlay-content i {
    transition: var(--transition);
}

.image-overlay:hover .overlay-content i {
    transform: scale(1.1);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.service-stats .stat-item h3 {
    font-size: 2.5rem;
    color: white;
}

.service-stats .stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Service Feature Cards */
.service-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

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

.service-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-feature-card .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-feature-card h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-feature-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.product-highlights .highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.product-highlights .highlight-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.product-price {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.currency {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
}

.price-note {
    color: var(--gray-600);
}

.product-actions .btn {
    font-weight: 600;
    padding: 0.875rem 1.5rem;
}

.additional-actions {
    text-align: center;
}

.additional-actions .btn-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
}

.additional-actions .btn-link:hover {
    color: var(--primary);
}

/* Product Tabs */
.product-tabs {
    border-bottom: 2px solid #e9ecef;
}

.product-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray-600);
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.product-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary-light);
}

.product-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

/* Specifications */
.spec-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
}

.spec-title {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.spec-table {
    border-radius: 8px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:nth-child(even) {
    background: #f8f9fa;
}

.spec-label {
    font-weight: 500;
    color: var(--gray-700);
}

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

/* Features */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .step-icon i {
    color: white;
}

.process-step h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefit-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: 10px;
}

.benefit-item:hover {
    background: #f8f9fa;
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
}

.benefit-item h6 {
    color: var(--dark);
    font-weight: 600;
}

/* Technology Cards */
.tech-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
}

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

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 1.8rem;
    color: white;
}

.tech-card h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-section .accordion-item {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-section .accordion-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.faq-section .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: white;
}

.faq-section .accordion-body {
    padding: 2rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* FAQ Lists */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.faq-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Response Times */
.response-times {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.time-item:last-child {
    border-bottom: none;
}

.time-item strong {
    color: var(--dark);
}

.time-item span {
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Pricing Options */
.pricing-options {
    margin: 1.5rem 0;
}

.pricing-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.pricing-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.pricing-item h6 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-item p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Certifications */
.certifications {
    margin: 1.5rem 0;
}

.cert-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.cert-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.warranty-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.warranty-info h6 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.warranty-info ul {
    list-style: none;
    padding: 0;
}

.warranty-info li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.warranty-info li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.9rem;
}

/* Predictive Process */
.predictive-process {
    margin: 1.5rem 0;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.process-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.process-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.process-content h6 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-content p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Coverage Areas */
.coverage-areas {
    margin: 1.5rem 0;
}

.area-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.area-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

/* Contact CTA Section */
.contact-cta-section {
    background: #f8f9fa;
}

.contact-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    margin-top: 2rem;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 27, 94, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-form .form-label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafbfc;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 27, 94, 0.1);
    background: white;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    padding-left: 0;
}

.contact-form .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-form .form-check-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.contact-form .btn-primary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Form Validation Styles */
.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 1.38 1.38 3.72-3.72.94.94-4.66 4.66z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4m0-2.4L5.8 7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-form .form-control:focus.is-valid,
.contact-form .form-select:focus.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form .form-control:focus.is-invalid,
.contact-form .form-select:focus.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Contact Info Footer */
.contact-info-footer {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item-small {
    padding: 1rem 0.5rem;
}

.info-item-small i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.info-item-small h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.info-item-small p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin: 0;
}

/* Service CTA */
.service-cta {
    position: relative;
    overflow: hidden;
}

.service-cta .btn {
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .service-cta .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .service-stats .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .service-feature-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .process-step {
        padding: 1.5rem 0.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto 1rem;
    }
    
    .tech-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-description-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .service-stats-inline {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .stat-inline h4 {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        margin-bottom: 1rem;
    }
    
    .faq-section .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .time-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-form .form-label {
        font-size: 0.9rem;
    }
    
    .contact-form .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-info-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .info-item-small {
        padding: 0.75rem 0.25rem;
        margin-bottom: 1rem;
    }
    
    .info-item-small h6 {
        font-size: 0.9rem;
    }
    
    .info-item-small p {
        font-size: 0.8rem;
    }
}

.section-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    position: relative;
}

.section-divider span {
    background: white;
    padding: 0 20px;
    color: var(--primary);
    font-size: 1.25rem;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.2);
    transition: var(--transition);
}

.section-divider:hover span {
    transform: rotate(360deg);
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-divider::before,
    .section-divider::after {
        max-width: 50px;
    }
}
