:root {
    --primary-color: #0A0A0A;
    --secondary-color: #2563eb;
    --accent-color: #3b82f6;
    --text-color: #171717;
    --text-light: #737373;
    --bg-light-navlink: #e3dddd;
    --bg-light: #FAFAFA;
    --border-color: #E5E5E5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--white);
}

/* Top Bar - Minimized */
.top-bar {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.top-bar a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 24px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--text-color);
}

.top-bar i {
    margin-right: 6px;
    font-size: 12px;
}

/* Navbar - Ultra Clean */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 70px;
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    position: relative;
}

.navbar-nav .nav-link::after {
    display: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: var(--bg-light-navlink);
    color: var(--text-color);
}

/* Hero Section - Homepage (large) */
.hero-section {
    background:
        linear-gradient(135deg,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(30, 30, 30, 0.80) 50%,
            rgba(20, 20, 20, 0.85) 100%),
        url('assets/images/1ab-1024x496.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background-color: #FFFFFF;
    color: #0A0A0A;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-cta:hover {
    background-color: transparent;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.hero-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section - Inner Pages (smaller, cleaner) */
.hero-section.hero-inner {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section.hero-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-custom a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-custom a:hover {
    color: var(--secondary-color);
}

.breadcrumb-custom span {
    color: var(--text-light);
}

.breadcrumb-custom .current {
    color: var(--text-color);
    font-weight: 600;
}

/* Inner Hero Titles */
.hero-title-inner {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle-inner {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
}

/* Info Cards - Modern Grid */
.info-cards {
    padding: 80px 0;
    background-color: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    border-color: var(--text-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.info-card i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-card strong {
    color: var(--text-color);
    font-weight: 600;
}

.info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-block;
    margin-top: 12px;
}

.info-card a:hover {
    color: var(--primary-color);
}

/* Section Titles - Minimal */
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-text .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-text .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Services Section - Card Grid */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
}

.service-icon i {
    font-size: 32px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    border-color: var(--text-light);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    color: var(--primary-color);
    gap: 10px;
}

/* Testimonials - Minimal Slider */
#testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

.testimonial-icon i {
    font-size: 36px;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary-color);
    width: 24px;
    border-radius: 4px;
}

/* Mission & Vision */
#misija {
    padding: 100px 0;
    background-color: var(--white);
}

#misija .p-5 {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 40px !important;
    transition: all 0.3s ease;
}

#misija .p-5:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

#misija h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

#misija p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.content-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

.content-text p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Brand List - Minimal Pills */
.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.brand-list-column {
    flex: 1 1 200px;
    min-width: 180px;
}

.brand-list-column ul {
    list-style: none;
    padding: 0;
}

.brand-list-column li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.brand-list-column li:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Moto Section */
.moto-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin-top: 60px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.moto-section h6 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 700;
}

.moto-section img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 36px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption span {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* Contact Cards */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-detail strong i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.contact-detail span,
.contact-detail a {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: var(--secondary-color);
}

.working-hours {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.working-hours p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.working-hours strong {
    color: var(--text-color);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--white);
}

.map-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.map-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.map-iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer - Clean */
footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top - Minimal */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
    display: flex;
}

/* Vision Section (for misija-i-vizija.html) */
.vision-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin-top: 60px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.vision-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.vision-text p {
    margin-bottom: 20px;
}

.moto-box {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.moto-box img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--white);
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card a {
    display: block;
    width: 100%;
}

/* Data Section (for podaci.html) */
.data-section {
    padding: 80px 0;
    background-color: var(--white);
}

.data-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
}

.data-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.data-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.data-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-light);
}

.data-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.data-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.data-item span {
    display: block;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

/* PDF Download Box */
.pdf-download {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 60px;
    transition: all 0.3s ease;
}

.pdf-download:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pdf-download .icon-box {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid var(--border-color);
}

.pdf-download .icon-box i {
    font-size: 40px;
    color: #ef4444;
}

.pdf-download h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.pdf-download p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pdf-download a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.pdf-download a:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Gallery Card (for sertifikati.html) */
.gallery-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    border-color: var(--text-light);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.gallery-card .gallery-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-card .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-card .gallery-caption {
    padding: 20px;
    text-align: center;
}

.gallery-card .gallery-caption p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-section.hero-inner {
        padding: 100px 0 60px;
    }

    .info-cards {
        padding: 60px 0;
        margin-top: -20px;
    }

    .about-section,
    .services-section,
    .blog-section,
    #testimonials,
    #misija,
    .map-section,
    .content-section,
    .gallery-section,
    .contact-section,
    .partners-section,
    .data-section {
        padding: 60px 0;
    }

    .testimonials-wrapper {
        padding: 0 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .brand-list {
        flex-direction: column;
        gap: 12px;
    }

    .breadcrumb-custom {
        font-size: 13px;
        gap: 8px;
    }

    .vision-section,
    .moto-section {
        padding: 40px 24px;
    }

    .partner-card {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        gap: 0;
        padding: 16px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px;
    }
}