/* DESSOP Home Page Styles - Inspired by ♥ */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --dessop-primary: #dc2626;
    --dessop-secondary: #000000;
    --dessop-tertiary: #ffffff;
    --dessop-accent: #dc2626;
    --dessop-text-dark: #000000;
    --dessop-text-light: #6c757d;
    --dessop-bg-light: #f8f9fa;
    --dessop-white: #ffffff;
    --dessop-black: #000000;
    
    /* Typography */
    --font-primary: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Navbar Fixed Styles - Ensures header stays visible */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    height: 80px;
}

/* Scroll offset for fixed navbar */
section {
    scroll-margin-top: 100px;
}

/* Alternative scroll offset for specific sections if needed */
#nosotros, #servicios, #email-empresarial, #tecnologias, #contacto {
    scroll-margin-top: 100px;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Add padding to body to compensate for fixed navbar */
body {
    padding-top: 80px;
}

/* Ensure main content doesn't overlap with fixed navbar */
main {
    position: relative;
    z-index: 1;
}

/* Responsive navbar adjustments */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 65px;
    }
    
    .navbar {
        padding: 0.25rem 0;
        background-color: #ffffff !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .logo-navbar {
        height: 50px;
    }
    
    /* Menú colapsable móvil */
    .navbar-collapse {
        background-color: #ffffff !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        padding: 0.75rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 0;
        margin: 0;
        list-style: none;
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        color: var(--dessop-text-dark) !important;
        font-weight: 400;
        background-color: transparent !important;
        border: none !important;
        margin-bottom: 0;
        transition: color 0.2s ease;
        border-radius: 0 !important;
        position: relative;
        text-decoration: none !important;
        display: block;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: transparent !important;
        color: var(--dessop-primary) !important;
        text-decoration: none !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Botón hamburguesa limpio */
    .navbar-toggler {
        border: none !important;
        border-radius: 0 !important;
        /* padding: 0.5rem !important; */
        background-color: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
    
    .navbar-toggler:hover {
        background-color: rgba(220, 38, 38, 0.08) !important;
        border-radius: 4px;
    }
    
    .navbar-toggler:active {
        background-color: rgba(220, 38, 38, 0.12) !important;
    }
    
    /* El icono hamburguesa usa el estilo original de Bootstrap */
    
    /* Botón CTA en menú móvil - como texto normal */
    .navbar-nav .btn {
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 0.75rem 1rem !important;
        font-weight: 400;
        width: 100%;
        text-align: center;
        background-color: transparent !important;
        border: none !important;
        color: var(--dessop-text-dark) !important;
        box-shadow: none !important;
        text-decoration: none !important;
        display: block;
        position: relative;
        transition: color 0.2s ease;
    }
    
    .navbar-nav .btn-danger {
        background-color: transparent !important;
        color: var(--dessop-text-dark) !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .btn-danger:hover {
        background-color: transparent !important;
        color: var(--dessop-primary) !important;
        text-decoration: none !important;
        transform: none;
        box-shadow: none !important;
    }
}

/* Padding adicional para contenido en dispositivos pequeños */
@media (max-width: 576px) {
    .container-xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar .container-xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Espaciado adicional para contenido */
    section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Global Typography with Google Sans Flex */
body {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-highlight {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.6));
    }
}

.service-title {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Logo Styles */
.logo-navbar {
    height: 55px;
    width: auto;
    max-width: 250px;
    transition: all var(--transition-normal);
    filter: brightness(1);
}

.logo-navbar:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-footer {
    height: 60px;
    width: auto;
    max-width: 250px;
    transition: all var(--transition-normal);
    filter: brightness(0.9);
}

.logo-footer-large {
    height: 100px !important;
    max-width: 350px !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

/* Hero Logo Styles */
.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1)) 
            drop-shadow(0 0 15px rgba(220, 38, 38, 0.15)) 
            drop-shadow(0 0 25px rgba(220, 38, 38, 0.1));
    animation: float 3s ease-in-out infinite;
}

/* .hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 15px 40px rgba(220, 38, 38, 0.10))
            drop-shadow(0 0 15px rgba(220, 38, 38, 0.10))
            drop-shadow(0 0 25px rgba(220, 38, 38, 0.05))
            drop-shadow(0 0 35px rgba(255, 255, 255, 0.05));
} */

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

/* Responsive adjustments for hero logo */
@media (max-width: 991.98px) {
    .hero-logo {
        max-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-logo {
        max-height: 250px;
    }
}

/* Service Cards Styles - Pricing Card Style */
.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #dc2626;
}

/* Service Card Header */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.service-badge {
    background: rgba(220, 38, 38, 0.1);
    color: var(--dessop-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-badge {
    background: #1f2937;
    color: white;
    transform: scale(1.05);
}

/* Service Card Content */
.service-card .service-icon-wrapper,
.service-card .service-badge,
.service-card .service-title,
.service-card .service-description {
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-card .service-icon-wrapper {
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
}

.service-title {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #dc2626;
}

.service-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #4b5563;
}

/* Service Card Footer */
.service-link {
    background: transparent;
    color: #6b7280;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0;
    margin-top: auto;
    font-size: 0.875rem;
    display: block;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover .service-link {
    background: #dc2626;
    color: white;
    font-weight: 600;
}

/* Pricing Badge Styles */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    z-index: 11;
    margin-bottom: 1.5rem;
}

/* Price Amount Styles */
.price-amount {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    line-height: 1.1;
}

.price-currency {
    font-size: .75rem !important;
    font-weight: 700 !important;
}

.price-period {
    font-size: .75rem !important;
    font-weight: 600 !important;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .service-card {
        padding: 1.75rem;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon-wrapper svg {
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Enhanced Experience Section Styles */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle svg {
    color: var(--dessop-tertiary) !important;
}

.icon-circle:hover {
    transform: scale(1.1);
    background-color: var(--dessop-primary) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.icon-circle:hover svg {
    color: white !important;
}

.stats-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15) !important;
    border-color: var(--dessop-primary);
}

.stats-card .stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stats-card .stats-icon svg {
    color: var(--dessop-primary);
}

.stats-card:hover .stats-icon {
    background: var(--dessop-primary);
    transform: scale(1.1);
}

.stats-card:hover .stats-icon svg {
    color: white !important;
}

.stats-card h4 {
    font-size: 2rem;
    transition: color 0.3s ease;
}

/* Badge styles */
.badge {
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.badge.bg-danger.bg-opacity-10 {
    background: rgba(220, 38, 38, 0.1) !important;
    border: 1px solid rgba(220, 38, 38, 0.3) !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.4);
}

/* Button enhancements */
.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

/* Hero Section Enhancements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--dessop-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.hero-badge svg {
    color: var(--dessop-primary);
    filter: drop-shadow(0 0 3px rgba(220, 38, 38, 0.3));
}

.hero-check-icon {
    width: 24px;
    height: 24px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-check-icon svg {
    color: var(--dessop-primary);
    width: 12px;
    height: 12px;
}

.logo-footer:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Responsive Logo Adjustments */
@media (max-width: 991.98px) {
    /* Hide hero logo section on mobile and tablet */
    .hero-section .col-lg-5.text-center.animate-on-scroll {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .logo-navbar {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-footer {
        height: 50px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .logo-navbar {
        height: 35px;
        max-width: 120px;
    }
    
    .logo-footer {
        height: 45px;
        max-width: 150px;
    }
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dessop-text-dark);
    background-color: var(--dessop-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dessop-text-dark);
}

.display-1 { font-size: 5rem; font-weight: 700; line-height: 1.1; }
.display-2 { font-size: 4.5rem; font-weight: 700; line-height: 1.1; }
.display-3 { font-size: 4rem; font-weight: 700; line-height: 1.2; }
.display-4 { font-size: 3.5rem; font-weight: 600; line-height: 1.2; }
.display-5 { font-size: 3rem; font-weight: 600; line-height: 1.2; }

/* Navbar Styles */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--dessop-primary) !important;
}

.navbar-nav .nav-link {
    font-weight: normal;
    padding: 0.75rem 1rem !important;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Navbar Button Styles */
.navbar-nav .btn {
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    margin-left: 0.5rem;
    text-decoration: none !important;
}

.navbar-nav .btn-danger {
    background: var(--dessop-primary) !important;
    border: 2px solid var(--dessop-primary) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.navbar-nav .btn-danger:hover {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    color: white !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #ff8a65 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(255, 107, 53, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(255, 107, 53, 0.5);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--dessop-primary);
    color: var(--dessop-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--dessop-primary);
    color: white;
    transform: translateY(-2px);
}

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

.rounded-pill {
    border-radius: 50px !important;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 120px;
    /* background: linear-gradient(135deg, #e31e24 0%, #000000 85%); */
    background: linear-gradient(0deg, #bd1d1d 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.hero-section .container-xl {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: none;
    height: 100%;
}

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

.project-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.project-card .card-body {
    padding: 2rem;
}

.project-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dessop-primary);
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dessop-text-dark);
}

.project-description {
    color: var(--dessop-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dessop-primary) 0%, var(--dessop-accent) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #ff8a65 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dessop-text-dark);
}

.service-description {
    color: var(--dessop-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: var(--dessop-bg-light);
    padding: 100px 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--dessop-primary) 0%, var(--dessop-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-weight: 600;
    color: var(--dessop-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dessop-text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dessop-text-dark);
}

.testimonial-info small {
    color: var(--dessop-text-light);
    font-weight: normal;
}

/* Tech Stack */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dessop-primary);
}

.tech-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: var(--dessop-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    background: var(--dessop-secondary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.cta-section .container-xl {
    position: relative;
    z-index: 2;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-primary { color: var(--dessop-primary) !important; }
.bg-primary { background-color: var(--dessop-primary) !important; }
.border-primary { border-color: var(--dessop-primary) !important; }

.hover-opacity-100:hover { opacity: 1 !important; }

/* Override Bootstrap defaults to prevent blue colors */
.btn-primary {
    background-color: var(--dessop-primary) !important;
    border-color: var(--dessop-primary) !important;
    color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--dessop-primary) !important;
    border-color: var(--dessop-primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--dessop-primary) !important;
    border-color: var(--dessop-primary) !important;
    color: white !important;
}

/* Ensure all links use DESSOP colors */
a {
    color: var(--dessop-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #b91c1c;
    text-decoration: none;
}

/* Override any blue text or backgrounds */
.text-info,
.text-blue,
.bg-info,
.bg-blue {
    color: var(--dessop-primary) !important;
    background-color: var(--dessop-primary) !important;
}

/* Ensure form controls use DESSOP colors */
.form-control:focus,
.form-select:focus {
    border-color: var(--dessop-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25) !important;
}

/* Override any remaining Bootstrap blue elements */
.btn-info,
.btn-outline-info,
.alert-info,
.badge-info,
.bg-info {
    background-color: var(--dessop-primary) !important;
    border-color: var(--dessop-primary) !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-section { padding: 100px 0 80px; }
    .display-3 { font-size: 3rem; }
    .display-4 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-section { padding: 80px 0 60px; }
    .stat-number { font-size: 2.5rem; }
    .service-card, .project-card, .testimonial-card { margin-bottom: 2rem; }
    .tech-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .service-card { padding: 2rem 1.5rem; }
    .project-card .card-body { padding: 1.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
}

/* Methodology Section - Light Background Version */
.methodology-card {
    background: white;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.methodology-card:hover {
    background: white;
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.methodology-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

.methodology-card:hover .methodology-number {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;

}

.methodology-icon svg {
    color: #dc2626;
    transition: all 0.3s ease;
}

.methodology-card:hover .methodology-icon {
    background: #dc2626;
    transform: scale(1.05);
}

.methodology-card:hover .methodology-icon svg {
    color: white;
}

.methodology-title {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.methodology-card:hover .methodology-title {
    color: #dc2626;
}

.methodology-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.methodology-card:hover .methodology-desc {
    color: #374151;
}

.methodology-cta {
    background: white;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.methodology-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
}

.methodology-cta h3 {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.75rem;
}

.methodology-cta p {
    color: #6b7280;
}

.methodology-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.methodology-cta-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.methodology-benefit-compact {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.methodology-benefit-compact:hover {
    transform: translateY(-3px);
}

.methodology-benefit-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.methodology-benefit-compact:hover .methodology-benefit-icon-small {
    background: #dc2626;
    transform: scale(1.1);
}

.methodology-benefit-icon-small svg {
    color: #dc2626;
    transition: color 0.3s ease;
}

.methodology-benefit-compact:hover .methodology-benefit-icon-small svg {
    color: white;
}

.methodology-benefit-compact h6 {
    color: #1f2937;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.methodology-benefit-compact:hover h6 {
    color: #dc2626;
}

.methodology-benefit-compact p {
    font-size: 0.8rem;
}

.btn-outline-danger:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Responsive adjustments for compact methodology */
@media (max-width: 768px) {
    .methodology-cta {
        padding: 2rem 1.5rem;
    }
    
    .methodology-cta h3 {
        font-size: 1.5rem;
    }
    
    .methodology-cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .methodology-benefit-compact {
        padding: 0.75rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .methodology-benefit-icon-small {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Responsive adjustments for methodology */
@media (max-width: 768px) {
    .methodology-card {
        padding: 2rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .methodology-icon {
        width: 70px;
        height: 70px;
    }
    
    .methodology-title {
        font-size: 1.15rem;
    }
    
    .methodology-desc {
        font-size: 0.9rem;
    }
    
    .methodology-cta {
        padding: 2rem 1.5rem;
    }
}

/* Email Options Accordion Styles */
.accordion-button {
    background-color: white;
    color: var(--dessop-text-dark);
    border: none;
    padding: 1.5rem;
    box-shadow: none;
    border-radius: 12px 12px 0 0;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--dessop-primary);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--dessop-primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.75rem !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

/* Domain Price Cards */
.domain-price-card {
    background: #f8f9fa;
    border: 1px solid rgba(220, 38, 38, 0.1) !important;
    transition: all var(--transition-normal);
}

.domain-price-card:hover {
    border-color: var(--dessop-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.domain-extension .badge {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Integration Options */
.integration-icon-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.integration-option:hover .integration-icon-white {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.integration-option:hover h4 {
    color: var(--dessop-primary) !important;
}

/* Office 365 Icon Styling - Original Microsoft Colors */
.office365-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.microsoft-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    width: 28px;
    height: 28px;
}

.ms-square {
    width: 13px;
    height: 13px;
}

.ms-red {
    background-color: #F25022; /* Microsoft Red */
}

.ms-green {
    background-color: #7FBA00; /* Microsoft Green */
}

.ms-blue {
    background-color: #00A4EF; /* Microsoft Blue */
}

.ms-yellow {
    background-color: #FFB900; /* Microsoft Yellow */
}

.office-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #0078d4;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 8px;
    border: 2px solid white;
}

/* Google Workspace Icon Styling - Original Google Colors */
.google-workspace-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Hybrid Solution Icon Styling - cPanel Style */
.hybrid-solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hybrid-logo-simple {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effects for simple style icon */
.integration-option:hover .hybrid-logo-simple {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.integration-option:hover .hybrid-logo-simple svg circle {
    transition: all 0.3s ease;
}

/* Responsive accordion styles */
@media (max-width: 768px) {
    .integration-icon-white {
        width: 70px;
        height: 70px;
    }
    
    .integration-icon-white svg {
        width: 35px;
        height: 35px;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-button small {
        display: block;
        margin-top: 0.25rem;
        margin-left: 0 !important;
    }
}

/* Technology Cards Styles */
.tech-card {
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--dessop-primary) !important;
}

.tech-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.tech-card:hover .tech-icon {
    background: rgba(220, 38, 38, 0.1);
    transform: scale(1.05);
}

.tech-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tech-category {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.tech-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(220, 38, 38, 0.1);
    color: var(--dessop-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.feature-tag:hover {
    background: var(--dessop-primary);
    color: white;
}

/* Additional Technologies Styles */
.tech-additional {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.additional-tech {
    padding: 1rem;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.additional-tech:hover {
    background: rgba(220, 38, 38, 0.02);
}

.additional-tech h6 {
    margin-bottom: 0.5rem;
}

/* Tech CTA Styles */
.tech-cta {
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #b91c1c 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #b91c1c 100%);
}

/* Responsive Tech Cards */
@media (max-width: 768px) {
    .tech-card {
        margin-bottom: 1.5rem;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-title {
        font-size: 1.1rem;
    }
    
    .tech-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Contact Form Styles */
.contact-form-wrapper {
    transition: all var(--transition-normal);
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all var(--transition-fast);
    font-size: 14px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--dessop-primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
    transform: translateY(-1px);
}

.contact-form .form-label {
    color: var(--dessop-text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

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

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

.contact-form .form-check-input:focus {
    border-color: var(--dessop-primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
}

.contact-form .btn-danger {
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #b91c1c 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.contact-form .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Contact Info Styles */
.contact-info-card {
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-item h6 {
    color: var(--dessop-text-dark);
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-item a {
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--dessop-primary) !important;
}

/* Quick Contact Card */
.quick-contact-card {
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(1.5);
    pointer-events: none;
    z-index: 0;
}

.quick-contact-card .btn {
    border-radius: 6px;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    color: #000000 !important;
}

.whatsapp-btn svg {
    fill: #000000;
    transition: fill var(--transition-fast);
}

.whatsapp-btn:hover {
    color: #ffffff !important;
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

.whatsapp-btn:hover svg {
    fill: #ffffff;
}

.quick-contact-card .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.quick-contact-card .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.quick-contact-card h6,
.quick-contact-card p {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form .form-control,
    .contact-form .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

/* Animation for form elements */
.contact-form .row > div {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.contact-form .row > div:nth-child(1) { animation-delay: 0.1s; }
.contact-form .row > div:nth-child(2) { animation-delay: 0.2s; }
.contact-form .row > div:nth-child(3) { animation-delay: 0.3s; }
.contact-form .row > div:nth-child(4) { animation-delay: 0.4s; }
.contact-form .row > div:nth-child(5) { animation-delay: 0.5s; }
.contact-form .row > div:nth-child(6) { animation-delay: 0.6s; }
.contact-form .row > div:nth-child(7) { animation-delay: 0.7s; }
.contact-form .row > div:nth-child(8) { animation-delay: 0.8s; }
.contact-form .row > div:nth-child(9) { animation-delay: 0.9s; }
.contact-form .row > div:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Captcha Styles */
.captcha-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6 !important;
}

.captcha-question {
    font-size: 16px;
    color: var(--dessop-text-dark);
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-fast);
}

.captcha-question:hover {
    color: var(--dessop-primary);
}

.captcha-container input {
    text-align: center;
    font-weight: bold;
    color: var(--dessop-primary);
}

.captcha-container input:focus {
    border-color: var(--dessop-primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
}

/* Color Captcha Styles */
.color-captcha {
    min-height: 32px;
}

.captcha-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.captcha-circle:hover {
    transform: scale(1.1);
    border-color: #6b7280;
}

.captcha-circle.selected {
    border-color: #dc2626;
    border-width: 3px;
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

.captcha-circle.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.captcha-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6 !important;
    transition: all 0.3s ease;
}

.captcha-container:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Extra Small Button for Captcha Refresh */
.btn-xs {
    font-size: 0.7rem;
    line-height: 1;
    border-radius: 4px;
    min-width: auto;
    white-space: nowrap;
}

.btn-xs svg {
    margin-right: 2px !important;
}

.btn-xs .small {
    font-size: 0.65rem;
}

/* Footer Styles with Sophisticated Gradient */
footer.bg-danger {
    background: linear-gradient(135deg, var(--dessop-primary) 0%, #b91c1c 25%, #7f1d1d 75%, #1f2937 100%) !important;
    position: relative;
    overflow: hidden;
}

footer.bg-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    pointer-events: none;
}

.hover-text-white:hover {
    color: white !important;
    transition: color 0.3s ease;
}

footer a:hover {
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

footer .text-white-50:hover {
    color: rgba(255,255,255,0.9) !important;
}

/* Interest Links Styles */
footer .col-lg-2 svg {
    transition: all 0.3s ease;
    opacity: 0.7;
}

footer .col-lg-2 a:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

footer .col-lg-2 li {
    transition: all 0.3s ease;
}

footer .col-lg-2 li:hover {
    transform: translateX(3px);
}

/* Enhanced Footer Text Visibility */
footer .text-dark {
    color: #212529 !important;
}

footer .text-dark:hover {
    color: #000000 !important;
}

footer a.text-dark {
    opacity: 1;
}

footer a.text-dark:hover {
    opacity: 1;
    transform: translateY(-1px);
    color: var(--dessop-primary) !important;
}

/* Footer with Hero Section Background */
footer.bg-gradient-light {
    background: linear-gradient(180deg, #bd1d1d 0%, #000000 100%) !important;
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--dessop-primary);
}

footer.bg-gradient-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

/* Customs Highlight Integration in About Section - Enhanced */
.customs-highlight {
    transition: all var(--transition-normal);
}

.customs-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.customs-icon-main {
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.customs-highlight:hover .customs-icon-main {
    background: rgba(220, 38, 38, 0.15);
    transform: scale(1.05);
}

.customs-feature-item {
    transition: all var(--transition-normal);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.customs-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.2);
}

.customs-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all var(--transition-normal);
}

.customs-feature-item:hover .customs-feature-icon {
    background: rgba(220, 38, 38, 0.15);
    transform: scale(1.1);
}

.customs-badges .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
}

.customs-process-list small {
    font-size: 0.75rem;
}

.customs-benefits .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 0.75rem;
}

/* Responsive adjustments for enhanced customs section */
@media (max-width: 768px) {
    .customs-highlight {
        margin-bottom: 1.5rem;
        padding: 1rem !important;
    }
    
    .customs-icon-main {
        width: 60px;
        height: 60px;
    }
    
    .customs-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .customs-badges .badge,
    .customs-benefits .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        margin-bottom: 0.5rem !important;
    }
    
    .customs-process-list small {
        font-size: 0.7rem;
    }
    
    .customs-feature-item {
        margin-bottom: 1rem;
        padding: 0.75rem !important;
    }
}

footer.bg-gradient-light .container-xl {
    position: relative;
    z-index: 2;
}
