:root {
    --primary: #1a3a6f;
    --secondary: #f8b400;
    --accent: #e74c3c;
    --light: #f9f9f9;
    --dark: #2c3e50;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --icon-color: var(--primary);
}

/* Replace universal selector with specific elements */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, 
header, nav, section, footer, button, input, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    margin-right: 8px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    font-weight: 400;
    position: relative;
    font-size: 0.9rem;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 60px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(26, 58, 111, 0.8), rgba(26, 58, 111, 0.8)), url('../images/fokus.jpg') no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(26, 58, 111, 0.8), rgba(26, 58, 111, 0.8)), url('../images/beres.jpg') no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(26, 58, 111, 0.8), rgba(26, 58, 111, 0.8)), url('../images/legalitas.jpg') no-repeat center center/cover;
}
.slide:nth-child(4) {
    background: linear-gradient(rgba(26, 58, 111, 0.8), rgba(26, 58, 111, 0.8)), url('../images/hk3.jpg') no-repeat center center/cover;
}
.slide:nth-child(5) {
    background: linear-gradient(rgba(26, 58, 111, 0.8), rgba(26, 58, 111, 0.8)), url('../images/devcollector.jpg') no-repeat center center/cover;
}

/* Modern Slider Navigation */
.slider-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 5;
    text-align: left;
    animation: fadeInUp 1s ease;
    color: var(--white);
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* About Section */
.about {
    background-color: var(--light);
    padding: 40px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.about-text {
    flex: 1;
    width: 100%;
    padding: 0 15px;
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Awards Section */
.awards {
    background-color: var(--white);
    padding: 40px 0;
}

.awards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.award-item {
    background-color: var(--light);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.award-item img {
    margin-bottom: 12px;
    max-height: 60px;
    width: auto;
    margin: 0 auto;
}

.award-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.award-item p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Services Section */
.services-swiper {
    padding: 15px 0 30px;
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    padding-bottom: 15px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: auto;
}

.service-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: var(--white);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.service-img {
    height: 150px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 12px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

/* Services Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(26, 58, 111, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary);
}

/* Process Section */
.process {
    background-color: var(--light);
    padding: 40px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 25px;
    gap: 25px;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 2px;
    height: calc(100% - 50px);
    background-color: var(--secondary);
    z-index: 1;
}

.step {
    text-align: left;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    padding: 40px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-swiper {
    padding: 20px;
    width: 100%;
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    padding: 10px;
}

.testimonial {
    background-color: var(--light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    font-size: 0.9rem;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '"';
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content:before {
    top: -10px;
    left: -3px;
}

.testimonial-content:after {
    bottom: -20px;
    right: -3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--primary);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(26, 58, 111, 0.8), rgba(26, 58, 111, 0.8)), url('../images/about.png') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 50px 15px;
}

.cta h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: var(--light);
    padding: 40px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.contact-details {
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-icon i {
    color: var(--white);
    font-size: 16px;
}

.contact-text h4 {
    color: var(--primary);
    margin-bottom: 3px;
    font-size: 1rem;
}

.contact-text p, 
.contact-text a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-text a:hover {
    color: var(--secondary);
}

.contact-map {
    flex: 1;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-about {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 30px;
    margin-right: 8px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.social-media {
    display: flex;
    gap: 8px;
}

.social-media a {
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.social-media a:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.footer-links {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 6px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-column a:hover {
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

/* Mobile Menu */
#mainNav ul {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

#mainNav ul.active {
    display: flex;
}

#mainNav ul li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#mainNav ul li:last-child {
    border-bottom: none;
}

#mainNav ul li a {
    font-size: 1rem;
    display: block;
}

/* Desktop View */
@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
    
    #mainNav ul {
        display: flex;
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
    }
    
    #mainNav ul li {
        margin-left: 15px;
        padding: 0;
        border-bottom: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}