/* NON-CRITICAL CSS - Load after page render */

/* ========== UTILITY CLASSES ========== */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.w-100 {
    width: 100% !important;
}

/* ========== BUTTON ENHANCEMENTS ========== */
.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: var(--transition-slow);
}

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

/* ========== LOGO ENHANCEMENTS ========== */
.logo {
    position: relative;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    transform: translateY(-3px);
}

.logo:focus-within img {
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
    border-radius: 4px;
    filter: drop-shadow(0 4px 12px rgba(218, 165, 32, 0.3));
}

.home-page .logo:hover img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 30px rgba(218, 165, 32, 0.15));
}

header.transparent .logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* ========== NAVIGATION ENHANCEMENTS ========== */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background-color: var(--secondary);
}

.mobile-menu-btn {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background-color: var(--light);
    color: var(--primary-dark);
}

.mobile-menu-btn[aria-expanded="true"] {
    color: var(--primary-dark);
    background-color: var(--light-gray);
}

/* ========== BREADCRUMB ENHANCEMENTS ========== */
.breadcrumb-link:hover {
    transform: translateX(2px);
}

.breadcrumb-link:hover i {
    transform: translateX(-2px);
    color: var(--secondary);
}

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

.breadcrumb-link:hover::after {
    width: 100%;
}

@keyframes breadcrumb-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.breadcrumb-link:hover i {
    animation: breadcrumb-pulse 0.6s ease;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-slides {
    position: relative;
    height: 100%;
    flex: 1;
    margin-bottom: var(--space-xl);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-slider-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 10;
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px);
    pointer-events: none;
    z-index: -1;
}

/* ========== SECTIONS ========== */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xxl);
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin: var(--space-xxl) 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.service-icon {
    margin-bottom: var(--space-lg);
    color: var(--secondary);
    font-size: 2.5rem;
}

.service-card h3 {
    margin-bottom: var(--space-md);
}

.service-card p {
    margin-bottom: var(--space-lg);
    color: var(--gray);
    line-height: 1.6;
}

/* ========== ABOUT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content p {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-xl);
    gap: var(--space-md);
}

.stat {
    text-align: center;
    flex: 1;
}

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

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

.about-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

/* ========== FAQ SECTION ========== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: var(--space-lg);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--primary);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question:focus {
    outline: 2px solid var(--secondary);
    outline-offset: -2px;
}

.faq-question[aria-expanded="true"] {
    background: var(--light);
    color: var(--primary-dark);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--gray);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer.active {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials {
    position: relative;
    min-height: 300px;
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.testimonial-content {
    margin-bottom: var(--space-xl);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-content::before {
    top: -20px;
    left: -10px;
}

.testimonial-content::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    border-top: 1px solid var(--light-gray);
    padding-top: var(--space-lg);
}

.author-name {
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-size: 1.1rem;
}

.author-company {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.testimonial-prev:hover:not(:disabled),
.testimonial-next:hover:not(:disabled),
.testimonial-prev:focus:not(:disabled),
.testimonial-next:focus:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-prev:disabled,
.testimonial-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    gap: var(--space-md);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-dot:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: var(--space-lg);
}

.contact-item {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-item:hover::after {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 38, 37, 0.1);
    border-color: var(--secondary-light);
}

.contact-item h4 {
    transition: all 0.3s ease;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item:hover h4 {
    color: var(--primary);
}

.contact-item h4 i {
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.contact-item:hover h4 i {
    color: var(--secondary);
}

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

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.map-container {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    border: 1px solid var(--light-gray);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-note {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
    text-align: center;
}

.map-note a {
    color: var(--primary);
    text-decoration: none;
}

.map-note a:hover {
    text-decoration: underline;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    color: var(--primary);
}

.form-group label i {
    margin-right: var(--space-sm);
    color: var(--secondary);
    width: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 38, 37, 0.1);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

input:valid:not(:placeholder-shown),
select:valid,
textarea:valid:not(:placeholder-shown) {
    border-color: #28a745 !important;
}

/* ========== CHECKBOX GROUP ========== */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.checkbox-item:hover {
    border-color: var(--secondary-light);
    background: var(--light);
    transform: translateX(3px);
}

.checkbox-item:has(input:checked) {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
    box-shadow: 0 3px 10px rgba(218, 165, 32, 0.15);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--primary);
    position: relative;
    z-index: 2;
}

.checkbox-item input[type="checkbox"]:checked {
    accent-color: var(--secondary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    flex: 1;
    position: relative;
    z-index: 2;
}

.checkbox-label i {
    color: var(--gray);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.checkbox-item:hover .checkbox-label i {
    color: var(--primary);
}

.checkbox-item:has(input:checked) .checkbox-label {
    color: var(--primary-dark);
    font-weight: 600;
}

.checkbox-item:has(input:checked) .checkbox-label i {
    color: var(--secondary);
}

/* Checkmark animation */
.checkbox-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(218, 165, 32, 0.1),
            transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.checkbox-item:has(input:checked)::after {
    left: 100%;
}

/* Pulse effect on checked */
@keyframes checkbox-pulse {
    0% {
        box-shadow: 0 3px 10px rgba(218, 165, 32, 0.15);
    }

    50% {
        box-shadow: 0 3px 15px rgba(218, 165, 32, 0.25);
    }

    100% {
        box-shadow: 0 3px 10px rgba(218, 165, 32, 0.15);
    }
}

.checkbox-item:has(input:checked) {
    animation: checkbox-pulse 2s infinite;
}

/* ========== MULTIPLE SELECT ========== */
select[multiple] {
    min-height: 120px;
    padding: 0.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: inherit;
}

select[multiple]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 38, 37, 0.1);
    outline: none;
}

select[multiple] option {
    padding: 0.5rem 0.75rem;
    margin: 0.125rem 0;
    border-radius: 4px;
    transition: all 0.2s ease;
}

select[multiple] option:hover {
    background-color: var(--light);
}

select[multiple] option:checked {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-section p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
}

.footer-section ul li i {
    margin-right: var(--space-sm);
    color: var(--secondary);
    width: 16px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    padding: var(--space-xs) 0;
    border-radius: 2px;
    transition: var(--transition);
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--white);
    text-decoration: underline;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover,
.social-links a:focus {
    background: var(--secondary);
    transform: translateY(-2px);
    outline: 2px solid var(--white);
    outline-offset: 2px;
    text-decoration: none;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 10001;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.back-to-top:focus {
    outline: 3px solid rgba(218, 165, 32, 0.5);
    outline-offset: 3px;
}

.back-to-top i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

@keyframes backToTopPulse {
    0% {
        box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(218, 165, 32, 0.5);
    }

    100% {
        box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
    }
}

.back-to-top.visible {
    animation: backToTopPulse 2s infinite;
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1rem;
    z-index: 10000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}
#acceptCookies {
    border: 1px solid var(--secondary);
}

#rejectCookies {
    border: 1px solid var(--primary);
}

.cookie-info {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.cookie-info-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cookie-info-link:hover,
.cookie-info-link:focus {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(218, 165, 32, 0.3);
    text-decoration: none;
    outline: 2px solid var(--secondary-light);
    outline-offset: 2px;
}

.cookie-info-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(218, 165, 32, 0.2);
}

/* Pulsirajući efekt za hover */
.cookie-info-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(218, 165, 32, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.cookie-info-link:hover::after {
    width: 100%;
    height: 100%;
}

/* Ikonica (opcionalno) */
.cookie-info-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* ========== INTRO SECTION ========== */
.intro-section {
    padding: 4rem 0;
    background: var(--light);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark);
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.highlight-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.intro-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.intro-image:hover {
    transform: translateY(-5px);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* ========== PROCESS STEPS ========== */
.process-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.process-steps li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: var(--space-xl);
    counter-increment: step-counter;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Domine Variable', serif;
}

/* ========== BENEFITS GRID ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.benefit-item {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2em;
    box-shadow: var(--shadow);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(218, 165, 32, 0.1),
            transparent);
    transition: left 0.7s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.benefit-item:hover h4 {
    color: var(--primary);
    transform: translateX(5px);
}

.benefit-item h4 {
    transition: all 0.3s ease;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item h4 i {
    color: var(--secondary);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover h4 i {
    transform: rotate(10deg) scale(1.1);
    color: var(--primary);
}

@keyframes pulse-glow {
    0% {
        box-shadow: var(--shadow);
    }

    50% {
        box-shadow: 0 5px 20px rgba(218, 165, 32, 0.2);
    }

    100% {
        box-shadow: var(--shadow);
    }
}

.benefit-item:hover {
    animation: pulse-glow 2s infinite;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: var(--space-xxl) 0;
}

.cta-banner h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-banner .btn {
    background-color: var(--secondary);
    color: var(--dark);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-banner .btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

/* ========== SERVICE FAQ ========== */
.service-faq {
    background: var(--light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xxl);
}

.service-faq h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--primary);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--space-xs);
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .intro-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: var(--space-xl);
        gap: 0;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        border-radius: var(--border-radius);
        font-size: 1rem;
        white-space: normal;
        text-align: left;
    }

    .nav-link.active::after {
        left: var(--space-md);
        right: var(--space-md);
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
        gap: 0.25rem;
    }

    .breadcrumb-link {
        padding: 0.25rem;
    }

    .breadcrumb-current {
        padding: 0.25rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 0.25rem;
    }

    .logo:hover img {
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
        transform: translateY(-2px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero {
        padding: 5rem 0 5rem;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-content {
        padding-bottom: 50px;
    }

    .hero-slider-nav {
        bottom: 0px;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }

    .section {
        padding: 3rem 0;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .intro-text h2 {
        font-size: 1.9rem;
    }

    .highlight-item {
        justify-content: center;
    }

    .intro-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image {
        padding-bottom: 75%;
        order: -1;
    }

    .stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .process-steps li {
        padding-left: 2.5rem;
        margin-bottom: var(--space-lg);
    }

    .process-steps li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: var(--space-xl);
        margin: var(--space-xl) 0;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }

    .service-faq {
        padding: var(--space-lg);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-info-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top i {
        font-size: 1.25rem;
    }

    .testimonial-nav {
        gap: var(--space-md);
        flex-wrap: wrap;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }

    .testimonial-dots {
        gap: var(--space-xs);
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial {
        padding: var(--space-xl) var(--space-lg);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: 2.5rem 0;
    }

    .service-card,
    .testimonial {
        padding: var(--space-lg);
    }

    .hero {
        padding: 4rem 0 4rem;
        min-height: 450px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero-slider-nav {
        bottom: 0px;
        gap: 15px;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cookie-consent {
        padding: var(--space-md);
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-section ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .process-steps li {
        padding-left: 2rem;
    }

    .process-steps li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.9rem;
    }

    .intro-text h2 {
        font-size: 1.7rem;
    }
}

/* ========== HIGH CONTRAST SUPPORT ========== */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .service-card {
        border: 2px solid var(--dark);
    }

    .nav-link.active {
        border: 2px solid var(--primary);
        background: transparent;
    }

    .testimonial {
        border: 2px solid var(--dark);
    }

    .benefit-item {
        border: 2px solid var(--dark);
    }

    .contact-item {
        border: 2px solid var(--dark);
    }

    .cookie-info-link {
        border: 3px solid var(--secondary);
        font-weight: 700;
    }

    .cookie-info-link:hover {
        background-color: var(--dark);
        color: var(--white);
    }
}

/* ========== REDUCED MOTION SUPPORT ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .btn::before {
        display: none;
    }

    .benefit-item::before {
        display: none;
    }

    .contact-item::after {
        display: none;
    }

    .logo:hover img {
        transform: none;
        filter: none;
    }

    .back-to-top {
        animation: none !important;
    }

    .checkbox-item:has(input:checked) {
        animation: none !important;
    }

    .cookie-info-link {
        transition: none;
    }

    .cookie-info-link:hover {
        transform: none;
    }

    .cookie-info-link::after {
        display: none;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .no-print {
        display: none !important;
    }

    .hero {
        background: var(--white) !important;
        color: var(--dark) !important;
        padding: 2rem 0 !important;
    }

    .hero h1 {
        color: var(--dark) !important;
    }

    .btn {
        display: none !important;
    }

    .testimonial-nav,
    .back-to-top,
    .cookie-consent {
        display: none !important;
    }

    .service-card,
    .testimonial {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    a {
        color: var(--dark) !important;
        text-decoration: underline !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    .breadcrumbs {
        background: none;
        border-bottom: 1px solid #ccc;
    }

    .breadcrumb-link {
        color: var(--dark);
    }

    .breadcrumb-current {
        background: none;
        color: var(--dark);
        font-weight: bold;
    }
}