/* Professional Theme Styles */
.hero-pro {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Global Presence Bar */
.bg-gradient-to-r.from-gray-800.to-gray-900 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Countries Ticker Animation */
.countries-ticker {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.countries-scroll {
    display: inline-block;
    animation: scroll-left 35s linear infinite;
}

.country-item {
    display: inline-block;
    margin-right: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.countries-ticker:hover .countries-scroll {
    animation-play-state: paused;
}

/* Mobile Responsive for Global Bar */
@media (max-width: 1024px) {
    .country-item {
        margin-right: 1.5rem;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .countries-ticker {
        margin: 0 8px;
    }
    
    .country-item {
        margin-right: 1rem;
        font-size: 10px;
    }
    
    .countries-scroll {
        animation-duration: 25s;
    }
}

@media (max-width: 640px) {
    .country-item {
        margin-right: 0.75rem;
        font-size: 9px;
    }
    
    .countries-scroll {
        animation-duration: 20s;
    }
}

/* Hide ticker on very small screens */
@media (max-width: 480px) {
    .countries-ticker {
        display: none;
    }
    
    /* Center the physical presence on small mobile */
    .bg-gradient-to-r.from-gray-800.to-gray-900 .container-pro > div {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Keep global presence bar visible on mobile */
    .bg-gradient-to-r.from-gray-800.to-gray-900 {
        display: block !important;
    }
    
    /* Hide contact details bar on mobile */
    .bg-gradient-to-r.from-blue-600.to-blue-800 {
        display: none !important;
    }
    
    /* Hide middle section on mobile */
    .bg-white.py-4.border-b {
        display: none !important;
    }
    
    /* Mobile navbar adjustments */
    header .container-pro {
        padding: 0 20px;
    }
    
    header .flex.items-center.justify-between {
        padding: 16px 0;
    }
    
    /* Ensure mobile menu button is visible */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Hide desktop navigation */
    .hidden.lg\\:flex {
        display: none !important;
    }
    
    /* Mobile logo adjustments */
    .lg\\:hidden .flex.items-center h1 {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    .lg\\:hidden .flex.items-center p {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .hero-pro {
        padding: 20px 0 40px;
    }
    
    .heading-xl {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .text-lead {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-pro .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .hero-pro .flex-col {
        gap: 0.75rem !important;
    }
    
    .hero-pro .px-8 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .hero-pro .py-4 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .hero-pro {
        padding: 15px 0 30px;
    }
    
    .heading-xl {
        font-size: 1.75rem !important;
    }
    
    .hero-pro .text-3xl {
        font-size: 1.5rem !important;
    }
}

.container-pro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1600px) {
    .container-pro {
        max-width: 1600px;
        padding: 0 60px;
    }
}

@media (min-width: 1920px) {
    .container-pro {
        max-width: 1800px;
        padding: 0 80px;
    }
}

.section-pro {
    padding: 100px 0;
}

/* Enhanced grid layouts for better space usage */
.grid-enhanced {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-enhanced {
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .grid-enhanced {
        gap: 4rem;
    }
}

/* Professional spacing for large screens */
@media (min-width: 1600px) {
    .section-pro {
        padding: 120px 0;
    }
    
    .grid-enhanced {
        gap: 5rem;
    }
}

.heading-xl {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.heading-lg {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.heading-md {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #64748b;
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-pro {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline-pro {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pro:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.card-pro {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-pro {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-icon-pro {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-title-pro {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-desc-pro {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    font-size: 0.9rem;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.gradient-navy {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.gradient-light {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 2.5rem;
    }
    
    .hero-pro {
        padding: 80px 0 60px;
    }
    
    .section-pro {
        padding: 60px 0;
    }
}
/* Professional Layout Enhancements */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1400px) {
    .content-wrapper {
        gap: 6rem;
    }
}

/* Side panels for better space utilization */
.side-panel {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* Enhanced service cards for wider layouts */
@media (min-width: 1400px) {
    .service-card-pro {
        padding: 2.5rem;
    }
    
    .service-icon-pro {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .service-title-pro {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Professional spacing adjustments */
@media (min-width: 1600px) {
    .hero-pro {
        padding: 140px 0 100px;
    }
    
    .heading-xl {
        font-size: 4rem;
    }
    
    .heading-lg {
        font-size: 3rem;
    }
    
    .text-lead {
        font-size: 1.375rem;
    }
}

/* Ultra-wide screen optimizations */
@media (min-width: 1920px) {
    .hero-pro {
        padding: 160px 0 120px;
    }
    
    .section-pro {
        padding: 140px 0;
    }
    
    .heading-xl {
        font-size: 4.5rem;
    }
    
    .grid-enhanced {
        gap: 6rem;
    }
}
/* Innovative Navigation Styles */
.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.1);
}

.nav-text {
    font-size: 14px;
    font-weight: 600;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover .nav-indicator {
    width: 80%;
}

/* Service Dropdown Styles */
.service-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-dropdown-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

/* Product Dropdown Styles */
.product-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.product-dropdown-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-badge.new {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Quick Action Buttons */
.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-action-btn.call {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-action-btn.call:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* CTA Button */
.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .cta-shine {
    left: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
}

.mobile-menu-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #374151;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    padding: 20px;
    space-y: 4px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    margin-bottom: 4px;
}

.mobile-nav-item:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.mobile-nav-item i {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

.mobile-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    margin-left: 32px;
    margin-top: 8px;
    padding-left: 16px;
    border-left: 2px solid #e5e7eb;
}

.mobile-submenu-item {
    display: block;
    padding: 8px 12px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.mobile-submenu-item:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.mobile-submenu-item.special {
    color: #f59e0b;
    font-weight: 600;
}

.mobile-cta-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.mobile-cta-btn.call {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.mobile-cta-btn.consultation {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.mobile-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-item {
        padding: 10px 12px;
    }
    
    .nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-content {
        padding: 16px;
    }
    
    .mobile-nav-item {
        padding: 10px 12px;
    }
}
/* Network Animation Styles */
.network-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.network-canvas {
    width: 100%;
    height: 100%;
    pointer-events: auto;
    opacity: 0.8;
}

/* Hero section adjustments for network theme */
.hero-pro {
    position: relative;
}

.hero-pro .container-pro {
    position: relative;
    z-index: 10;
}

/* Enhance network visibility */
@media (max-width: 768px) {
    .network-canvas {
        opacity: 0.5;
    }
}

/* Network theme enhancements */
.hero-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Animated pulse effect for network nodes */
@keyframes networkPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Additional network styling */
.network-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(139, 92, 246, 0.02) 100%);
    z-index: 3;
    pointer-events: none;
}
/* Service Logo Cards */
.service-logo-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.service-label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    display: block;
}

/* Individual service colors */
.service-logo-card.sap .service-logo {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.service-logo-card.sap:hover {
    border-color: #0066cc;
}

.service-logo-card.web .service-logo {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.service-logo-card.web:hover {
    border-color: #3b82f6;
}

.service-logo-card.app .service-logo {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.service-logo-card.app:hover {
    border-color: #10b981;
}

.service-logo-card.marketing .service-logo {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.service-logo-card.marketing:hover {
    border-color: #f59e0b;
}

.service-logo-card.security .service-logo {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.service-logo-card.security:hover {
    border-color: #ef4444;
}

.service-logo-card.erp .service-logo {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.service-logo-card.erp:hover {
    border-color: #8b5cf6;
}

/* SAP Text Styling */
.sap-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 14px;
    fill: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-logo-card {
        padding: 16px;
    }
    
    .service-logo {
        width: 50px;
        height: 50px;
    }
    
    .service-label {
        font-size: 11px;
    }
}
/* Contact Page Styles - Horizontal Layout */

/* Offices Horizontal Layout */
.offices-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.office-card-horizontal {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border: 2px solid #e0e7ff;
    transition: all 0.3s ease;
}

.office-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.office-header-horizontal {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e7ff;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 15px;
}

.office-flag-large {
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.office-title-large {
    font-size: 20px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.office-subtitle-large {
    font-size: 14px;
    color: #3730a3;
    font-weight: 600;
}

.office-details-horizontal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-detail-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.office-detail-horizontal i {
    font-size: 18px;
    margin-top: 1px;
    width: 20px;
    color: #d97706;
}

.detail-label-horizontal {
    display: block;
    font-weight: 800;
    color: #92400e;
    font-size: 13px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value-horizontal {
    display: block;
    color: #451a03;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}
    font-size: 13px;
    line-height: 1.4;
}

/* Quick Actions Horizontal */
.quick-actions-horizontal {
    text-align: center;
    margin-top: 40px;
}

.quick-actions-horizontal-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-quick-btn-horizontal {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-quick-btn-horizontal.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.contact-quick-btn-horizontal.call {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.contact-quick-btn-horizontal.consultation {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.contact-quick-btn-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Full Width Contact Form */
.contact-form-full-width {
    padding: 60px 0;
}

.contact-form-wide {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.form-grid-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group-wide {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label-wide {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-size: 16px;
}

.form-input-wide {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-input-wide:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn-wide {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.form-submit-btn-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offices-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .office-card-horizontal {
        padding: 30px 20px;
    }
    
    .quick-actions-horizontal-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-quick-btn-horizontal {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-grid-wide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wide {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-actions-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .contact-form-section,
    .office-section {
        padding: 24px;
    }
    
    .section-heading {
        font-size: 24px;
    }
}

/* Expertise Section */
.expertise-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    border-color: #3b82f6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.expertise-card.sap {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.expertise-card.sap:hover {
    border-color: #d97706;
}

.expertise-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.expertise-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.expertise-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.expertise-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Story Section */
.success-stat {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.success-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 18px;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Trust Cards */
.trust-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: #3b82f6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.trust-icon.certified {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-icon.experience {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.trust-icon.clients {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.trust-icon.support {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.trust-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #e5e7eb;
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #1e293b;
    line-height: 1.7;
    margin: 20px 0 32px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 18px;
    display: flex;
    gap: 4px;
}
/* Trust Building Section */
.trust-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.trust-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 20px;
}

.trust-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: white;
    border-color: #e2e8f0;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    color: white;
    font-size: 16px;
}

.trust-item-icon.certified {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-item-icon.experience {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.trust-item-icon.clients {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.trust-item-icon.support {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.trust-item-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

/* Expertise Section */
.expertise-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.expertise-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.expertise-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.expertise-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.expertise-content p {
    font-size: 12px;
    color: #64748b;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 24px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stats-section .section-title {
    color: white;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #1e293b;
    line-height: 1.6;
    margin: 20px 0;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 14px;
    color: #64748b;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 14px;
}

.office-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-card:hover::before {
    opacity: 1;
}

.office-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.office-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.office-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.office-flag {
    font-size: 36px;
    margin-right: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.office-detail-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.office-detail-item:hover {
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.office-detail-item i {
    width: 24px;
    margin-right: 20px;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 16px;
}

.office-detail-item > div {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.detail-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
}

/* Enhanced Contact Form */
#contactForm {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

#contactForm h2 {
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Quick Action Buttons */
.contact-quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.contact-quick-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-quick-btn.call {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-quick-btn.consultation {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.contact-quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Side Panel */
.side-panel {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.side-panel h3 {
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 12px;
}

.side-panel h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* Form Enhancements */
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

#contactForm input:hover,
#contactForm select:hover,
#contactForm textarea:hover {
    border-color: #cbd5e1;
}

#contactForm button[type="submit"] {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    position: relative;
    overflow: hidden;
}

#contactForm button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#contactForm button[type="submit"]:hover::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .expertise-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-section,
    .expertise-section,
    .stats-section,
    .testimonial-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .office-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .office-flag {
        font-size: 32px;
        margin-right: 16px;
    }
    
    .office-detail-item {
        padding: 14px;
    }
    
    .office-detail-item i {
        width: 20px;
        margin-right: 16px;
    }
    
    .detail-value {
        font-size: 14px;
    }
    
    .contact-quick-btn {
        padding: 12px 16px;
    }
}
