
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #111827;
    color: #F9FAFB;
}

.accent-color { color: #F97316 !important; }
.bg-accent { background-color: #F97316 !important; }
.hover-bg-accent:hover { background-color: #EA580C !important; }
.border-accent { border-color: #F97316 !important; }

.orange-color {
    color: #F97316;
}

a:hover {
    color: #F97316;
}

.no-orange {
    color: #F9FAFB !important;
}

.scale-btn:hover {
    transform: scale(1.05);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.page-header {
    background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)), url('/static/images/o_nas.jpg') no-repeat center center;
    background-size: cover;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    padding-bottom: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #374151;
}

.timeline-item::after {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F97316;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #F97316;
    color: white;
    font-weight: bold;
}

.case-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay {
    transition: opacity 0.3s ease;
}
.modal-container {
    transition: transform 0.3s ease;
}
.swiper-button-next, .swiper-button-prev {
    color: black !important;
}
.swiper-pagination-bullet-active {
    color: black !important;
    background: black !important;
}

/* Services Dropdown Custom Overrides */
.services-dropdown {
    width: 280px !important;
    min-width: 280px !important;
    background-color: #111827 !important;
    border: 1px solid #374151 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
}

.group:hover .services-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.services-dropdown a {
    white-space: nowrap !important;
    display: block !important;
    border-bottom: 1px solid #1f2937 !important; /* Divider lines */
}

.services-dropdown a:last-child {
    border-bottom: none !important; /* Remove last divider */
}

/* Advantage items icon/text spacing */
.advantage-item {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important; /* 20px gap for clear visual separation */
}

/* Bulletproof spacing overrides for CTA and Trust sections */
.cta-section {
    padding-top: 4.5rem !important; /* 72px */
    padding-bottom: 4.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    display: block !important;
}

.trust-section {
    padding-top: 6rem !important; /* 96px */
    padding-bottom: 6rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    display: block !important;
}

/* CTA Card Paddings: p-10 (40px) on mobile, md:p-24 (96px) on desktop */
.cta-card {
    padding: 2.5rem !important; /* 40px */
}

@media (min-width: 768px) {
    .cta-card {
        padding: 6rem !important; /* 96px */
    }
}

/* Spacing and styles for direct CTA buttons to fix gap-3 and display issues */
.cta-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important; /* matches gap-3 (12px) */
}

/* WhatsApp specific styling fallback */
.btn-whatsapp {
    background-color: #16a34a !important; /* bg-green-600 */
    color: #ffffff !important;
}
.btn-whatsapp:hover {
    background-color: #15803d !important; /* bg-green-700 */
}

/* Telegram specific styling fallback */
.btn-telegram {
    background-color: #2563eb !important; /* bg-blue-600 */
    color: #ffffff !important;
}
.btn-telegram:hover {
    background-color: #1d4ed8 !important; /* bg-blue-700 */
}

/* Inline contact links spacing (footer section) */
.contact-link-inline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important; /* matches gap-2 (8px) */
}

/* Premium section separator */
.section-separator {
    border: 0 !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, #374151 50%, transparent) !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
}

/* Bulletproof layout utility fallbacks */
.py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Center text inside header navigation links and mobile/dropdown menus */
.sticky-header a, 
.sticky-header button, 
.services-dropdown a, 
#mobile-menu a {
    text-align: center !important;
}

/* Honeypot field for spam prevention */
.hidden-honeypot {
    display: none !important;
}