* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-copper: #C17E57;
    --primary-dark: #2C3E50;
    --accent-light: #E8B59A;
    --bg-light: #F8F9FA;
    --text-dark: #1a202c;
    --text-light: #718096;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

/* Scroll margin za anchor linkove - da header ne prekriva sadržaj */
h1[id], h2[id], h3[id], h4[id], section[id] {
    scroll-margin-top: 110px;
}

/* Header - Ultra Modern */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Single Adaptive Navigation */
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-copper);
    transition: width 0.3s;
}

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

.nav-link:hover {
    color: var(--primary-copper);
}

.nav-link.active {
    color: var(--primary-copper);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

/* Desktop: Hover to open dropdown */
@media (min-width: 969px) {
    .nav-item:hover .nav-arrow {
        transform: rotate(180deg);
    }

    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    padding: 10px;
}

/* Mega Menu - Desktop only */
.mega-menu {
    min-width: 850px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 20px;
}

.nav-item:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

@media (min-width: 969px) {
    .mega-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item span:last-child {
    white-space: nowrap;
}

.mega-menu-highlight {
    background: transparent;
    border: 2px solid var(--primary-copper);
    font-weight: 600;
    color: var(--primary-copper);
    position: relative;
}

.mega-menu-highlight::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
}

.mega-menu-highlight:hover {
    background: linear-gradient(135deg, rgba(193, 126, 87, 0.05) 0%, rgba(193, 126, 87, 0.08) 100%);
    border-color: var(--primary-copper);
}

/* Active menu item */
.dropdown-item.active {
    background: linear-gradient(135deg, rgba(193, 126, 87, 0.12) 0%, rgba(193, 126, 87, 0.18) 100%);
    border-color: rgba(193, 126, 87, 0.3);
    color: var(--primary-copper);
    font-weight: 600;
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, rgba(193, 126, 87, 0.15) 0%, rgba(193, 126, 87, 0.22) 100%);
    border-color: var(--primary-copper);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(193, 126, 87, 0.1) 0%, rgba(193, 126, 87, 0.15) 100%);
    color: var(--primary-copper);
}

.dropdown-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.dropdown-item:hover .dropdown-icon {
    background: var(--primary-copper);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

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

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero - Minimal & Modern */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 76px 0 95px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hero directly after header (without breadcrumb) - homepage */
header + .hero {
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(193, 126, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    width: 1050px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: -10px !important; /* margin-bottom: 18px; */
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-text-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-copper);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-text-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 2px solid rgba(193, 126, 87, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero h2 {
    font-size: 36px;
    color: var(--primary-copper);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1;
}

.hero p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-copper);
    color: white;
    padding: 16px 36px;
    /*border: none;*/
    border: 1px solid #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(193, 126, 87, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(193, 126, 87, 0.4);
    background: #a86944;
}

/* Services Overview - Modern Grid */
.services-overview {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f0f2f4 0%, #e8ebed 100%);
    border-top: 1px solid rgba(193, 126, 87, 0.15);
}

.services-overview > * {
    max-width: 1400px; /* 1400px */
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-header h3 {
    font-size: 30px;
    color: var(--primary-copper);
    font-weight: 500;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Modern Slider */
.services-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    cursor: grab;
    touch-action: manipulation;
    user-select: none;
}

.slider-container:active {
    cursor: grabbing;
}

.service-slide {
    min-width: calc(33.333% - 20px);
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #e0e4e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-slide:hover {
    border-color: var(--primary-copper);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
    background: white;
}

.service-slide-link {
    text-decoration: none;
    color: inherit;
    position: relative;
    pointer-events: auto;
}

.service-slide-link::after {
    content: "→";
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--primary-copper);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-slide-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.service-slide-link:hover h4 {
    color: var(--primary-copper);
}

.service-slide .icon {
    font-size: 48px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-slide h3,
.service-slide h4 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

/* Specifični stilovi za seo-optimizacija.php - kartice bez opisa */
.service-slide.service-slide-title-only {
    align-items: center;
}

.service-slide.service-slide-title-only .service-content {
    display: flex;
    align-items: center;
}

.service-slide.service-slide-title-only h3,
.service-slide.service-slide-title-only h4 {
    margin: 0;
}

/* Modern info box styling */
.modern-info-box {
    position: relative;
}

.modern-info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.2) !important;
    border-left-width: 5px !important;
}

.modern-info-box:hover > div:nth-child(2) {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(193, 126, 87, 0.35) !important;
}

.modern-info-box:hover > div:first-child {
    opacity: 1;
    width: 120px;
    height: 120px;
}

.modern-info-box:hover > div:last-child {
    transform: translateX(5px);
}

/* Desktop styles for info boxes */
.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.modern-info-box {
    padding: 28px;
}

/* Mobile styles for info boxes */
@media (max-width: 768px) {
    /* Grid container - force single column and larger gap */
    div[class="info-boxes-grid"],
    div.info-boxes-grid,
    .subpage-section div.info-boxes-grid,
    .subpage-container div.info-boxes-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        display: grid !important;
    }
    
    /* Box styling - reduce padding */
    div[class="modern-info-box"],
    div.modern-info-box,
    .subpage-section div.modern-info-box,
    .subpage-container div.modern-info-box {
        padding: 20px !important;
    }
    
    /* Hide icons */
    div[class="box-icon"],
    div.box-icon,
    .subpage-section div.box-icon,
    .subpage-container div.box-icon {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

.service-slide p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.dot:hover::after {
    border-color: var(--primary-copper);
    opacity: 0.3;
}

.dot.active {
    background: var(--primary-copper);
    width: 40px;
    border-radius: 7px;
}

.slider-nav-btn {
    background: white;
    border: 2px solid #e5e7eb;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    color: var(--primary-dark);
}

.slider-nav-btn:hover {
    border-color: var(--primary-copper);
    background: var(--primary-copper);
    color: white;
    transform: scale(1.1);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-counter {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

/* Mobile slider controls - hide dots, show larger arrows below */
@media (max-width: 768px) {
    .slider-dots {
        display: none !important;
    }
    
    .slider-counter {
        display: none !important;
    }
    
    .slider-controls {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .slider-controls .slider-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
        font-weight: bold;
        border-width: 3px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .slider-controls .slider-nav-btn:hover {
        box-shadow: 0 6px 18px rgba(193, 126, 87, 0.25);
    }
}

.slider-counter .current {
    color: var(--primary-copper);
    font-size: 18px;
}

/* SEO Audit - Striking Section */
.seo-audit {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2634 100%);
    padding: 80px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-audit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(193,126,87,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.audit-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.seo-audit h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.21em;
}

.seo-audit .audit-content > p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 50px;
    line-height: 1.7;
}

.audit-form {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

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

.form-group {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-copper);
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
}

.checkbox-group label {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-group label a {
    color: #c17e57;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    color: #a06745;
}

.submit-btn {
    background: var(--primary-copper);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #a86944;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 126, 87, 0.4);
}

/* Modern Content Sections */
.modern-content {
    background: var(--bg-light);
    padding: 80px 40px;
    border-top: 1px solid rgba(193, 126, 87, 0.1);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.content-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.content-card:last-child {
    margin-bottom: 0;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(193, 126, 87, 0.15);
}

.content-card-inner {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 380px;
}

.card-visual {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
}

.card-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-visual .icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.card-visual h4 {
    font-size: 22px;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-visual p strong {
    font-size: 22px;
    color: white;
    font-weight: 700;
    display: block;
    text-align: center;
}

.card-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-badge {
    display: inline-block;
    background: rgba(193, 126, 87, 0.1);
    color: var(--primary-copper);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.card-content h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.card-content h3 {
    font-size: 30px;
    color: var(--primary-copper);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content h3::before {
    content: '→';
    font-size: 20px;
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.7;
}

.card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.feature-item::before {
    content: '✓';
    color: var(--primary-copper);
    font-weight: bold;
    font-size: 18px;
}

.card-cta {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.modern-button {
    background: var(--primary-copper);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modern-button:hover {
    background: #a86944;
    transform: translateX(3px);
}

.modern-button.outline {
    background: transparent;
    color: var(--primary-copper);
    border: 2px solid var(--primary-copper);
}

.modern-button.outline:hover {
    background: var(--primary-copper);
    color: white;
}

/* Alternate Layout */
.content-card:nth-child(even) .content-card-inner {
    grid-template-columns: 1fr 350px;
}

.content-card:nth-child(even) .card-visual {
    order: 2;
}

.content-card:nth-child(even) .card-content {
    order: 1;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(193, 126, 87, 0.05) 0%, rgba(193, 126, 87, 0.1) 100%);
    border-radius: 16px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-copper);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #2d3748;
    padding: 80px 40px;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    margin-top: 0;
}

.cta-action-btn {
    display: inline-block;
    background: #0d9488;
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    border: 1px solid #ffffff;
}

.cta-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.6);
    background: #0f766e;
}

/* Glossary Section */
.glossary {
    background: white;
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.glossary-content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 40px;
}

.glossary-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 968px) {
    .glossary-list {
        grid-template-columns: 1fr;
    }
}

.glossary-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border-left: 4px solid var(--primary-copper);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.glossary-link-text {
    flex: 1;
    text-align: left;
}

.glossary-link-badges {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.glossary-link:hover {
    border-left-width: 6px;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(193, 126, 87, 0.15);
    color: var(--primary-copper);
}

/* Category Badges */
.category-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
    vertical-align: middle;
}

.badge-seo {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
}

.badge-ai {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.badge-marketing {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

/* Responsive adjustments for glossary links */
@media (max-width: 768px) {
    .glossary-content {
        padding: 0 20px;
    }
    
    .glossary-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .glossary-link-badges {
        align-self: flex-start;
    }
}

.glossary-term {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-copper);
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.glossary-term:hover {
    border-left-width: 6px;
    box-shadow: 0 4px 15px rgba(193, 126, 87, 0.1);
}

.glossary-term h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.glossary-term p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 40px;
    margin-top: 90px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.breadcrumbs-container {
    max-width: 1050px;
    margin: 0 auto;
    font-size: 14px;
    color: #718096;
}

.breadcrumbs-container a {
    color: var(--primary-copper);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-container a:hover {
    color: #a86944;
}

.breadcrumbs-container span {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Glossary Article (pojedinačni pojam) */
.glossary-article {
    padding: 60px 40px;
    background: #f8f9fa;
}

.glossary-article-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0;
}

.glossary-article-container ul li::marker {
    color: var(--primary-copper);
}

.glossary-article-container ul li {
    color: var(--text-dark);
}

.glossary-article-container .subpage-section-title {
    text-align: left;
    color: var(--primary-copper);
    margin-top: 40px;
}

.glossary-article h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: -10px !important; /* margin-bottom: 18px; */
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.glossary-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.glossary-category {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.glossary-letter {
    background: #f8f9fa;
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.glossary-definition {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-left: 4px solid var(--primary-copper);
    border-radius: 12px;
    margin-bottom: 40px;
}

.glossary-definition h2 {
    font-size: 20px;
    color: var(--primary-copper);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.glossary-definition p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.glossary-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.glossary-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-copper);
    margin: 30px 0 15px 0;
    line-height: 1.3;
}

.glossary-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.glossary-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.glossary-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.glossary-content ul li strong {
    color: var(--primary-dark);
}

.related-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    text-align: center;
}

.related-term {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--primary-copper);
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-copper);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-term:hover {
    background: var(--primary-copper);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 126, 87, 0.3);
}

.glossary h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.glossary-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0;
}


.letter-btn {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    min-width: 56px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.letter-btn.disabled {
    background: #f5f5f5;
    border: 1px solid #efefef;
    color: #d0d0d0;
    cursor: not-allowed;
    opacity: 0.5;
}

.letter-btn:hover:not(.disabled) {
    background: var(--primary-copper);
    border-color: var(--primary-copper);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 126, 87, 0.3);
}

.letter-btn.active {
    background: var(--primary-copper);
    border-color: var(--primary-copper);
    color: white;
    box-shadow: 0 3px 10px rgba(193, 126, 87, 0.3);
}

/* Services Hub Page */
.services-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-hub-card {
    background: white;
    padding: 40px 35px;
    border-radius: 12px;
    border: 2px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-hub-card:hover {
    border-color: var(--primary-copper);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
}

.service-hub-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-hub-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-hub-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.service-hub-link:hover h3 {
    color: var(--primary-copper);
}

.service-hub-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    flex-grow: 1;
}

.service-hub-arrow {
    position: absolute;
    bottom: 35px;
    right: 35px;
    font-size: 24px;
    color: var(--primary-copper);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-hub-link:hover .service-hub-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive - Services Hub */
@media (max-width: 1200px) {
    .services-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hub-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hub-container {
        padding: 0 20px;
    }
    
    .service-hub-card {
        padding: 30px 25px;
    }
}

/* SEO Services Grid */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.seo-service-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
}

.seo-service-card:hover {
    border-color: var(--primary-copper);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
}

.service-card-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.seo-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 20px 0;
}

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-service-card ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

.seo-service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-copper);
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 35px 30px;
    padding-top: 45px;
    border-radius: 12px;
    position: relative;
    border: 2px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
    overflow: visible;
}

.process-step:hover {
    border-color: var(--primary-copper);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(193, 126, 87, 0.3);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 20px 0 15px 0;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-copper);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Locations Grid */
.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 60px;
    position: relative;
}

.locations-container::before {
    display: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.locations-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.locations-column p {
    font-size: 15px;
    color: #4a5568;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.locations-column a {
    color: var(--primary-copper);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hidden locations */
.location-hidden {
    display: none !important;
}

/* Locations Title Styles */
.locations-title {
    user-select: none;
}

.locations-title:hover {
    opacity: 0.85;
}

.locations-title:hover .locations-arrow {
    color: var(--primary-copper);
}

/* Responsive - SEO Services */
@media (max-width: 968px) {
    .seo-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-container {
        padding: 0 20px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-service-card,
    .process-step,
    .benefit-card {
        padding: 25px 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Blog Page Styles */
.blog-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-link:hover .blog-card {
    border-color: var(--primary-copper);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-copper);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #718096;
}

.blog-date,
.blog-reading-time {
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-copper);
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-copper);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 8px;
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 12px 20px;
    background: white;
    border: 2px solid rgba(193, 126, 87, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary-copper);
    border-color: var(--primary-copper);
    color: white;
}

.pagination-btn.active {
    background: var(--primary-copper);
    border-color: var(--primary-copper);
    color: white;
}

.pagination-btn:disabled {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #a0a0a0;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-btn:disabled:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #a0a0a0;
}

.pagination-next {
    padding: 12px 25px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2332 100%);
    padding: 80px 40px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.newsletter-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 35px 0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-copper);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--primary-copper);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #a86944;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 126, 87, 0.4);
}

/* Responsive - Blog */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-container {
        padding: 0 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .blog-pagination {
        flex-wrap: wrap;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
}

/* Contact Page Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(193, 126, 87, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-copper);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(193, 126, 87, 0.15);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
}

.contact-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-copper);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #a86944;
}

.contact-info-card p {
    font-size: 15px;
    color: #718096;
    margin: 0;
}

.contact-location {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px !important;
}

/* Contact Form */
.contact-form-intro {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

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

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

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    line-height: 1.6;
}

.form-group-checkbox label a {
    color: var(--primary-copper);
    text-decoration: underline;
    font-weight: 600;
}

.form-group-checkbox label a:hover {
    color: #a86944;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(193, 126, 87, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 126, 87, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    padding: 0;
    border-radius: 12px;
    border-left: 4px solid var(--primary-copper);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(193, 126, 87, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-copper);
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 25px 25px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Responsive - Contact Page */
@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Footer - Modern & Clean */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 40px 40px;
    border-top: 3px solid var(--primary-copper);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-heading {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    font-weight: 800 !important;
    color: var(--primary-copper) !important;
    display: block !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    padding: 40px;
    border-radius: 16px;
}

.contact-box h4,
.footer-heading-box {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    font-weight: 800 !important;
    color: white !important;
    display: block !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.contact-box p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.contact-btn {
    background: white;
    color: var(--primary-copper);
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-card-inner {
        grid-template-columns: 1fr !important;
    }

    .card-visual {
        order: 1 !important;
        min-height: 300px;
    }

    .card-content {
        order: 2 !important;
        padding: 50px 40px;
    }

    .service-slide {
        min-width: calc(50% - 15px);
    }

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

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

    .card-features {
        grid-template-columns: 1fr;
    }

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

/* Desktop Navigation - Explicitly show above 1024px */
@media (min-width: 1025px) {
    .nav {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    /* Transform desktop nav into mobile nav */
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 30px 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        align-items: stretch;
    }

    .nav.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .nav-link {
        justify-content: space-between;
        padding: 15px 20px;
        font-weight: 600;
        font-size: 16px;
        border-radius: 12px;
        transition: none !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: var(--bg-light);
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(193, 126, 87, 0.08) 0%, rgba(193, 126, 87, 0.12) 100%);
        color: var(--primary-copper);
    }

    /* Mobile: Click to open dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu.active {
        max-height: 800px;
        padding-top: 10px;
        padding-left: 20px;
    }

    .mega-menu {
        min-width: auto;
        left: auto;
        transform: none;
        padding: 0;
    }

    .mega-menu-column {
        display: flex;
        flex-direction: column;
    }

    .dropdown-item {
        font-size: 15px;
        margin-bottom: 5px;
        color: var(--text-light);
    }

    .dropdown-item {
        transition: none !important;
    }

    .dropdown-item:active {
        background: rgba(193, 126, 87, 0.08);
    }

    .dropdown-item.active {
        background: linear-gradient(135deg, rgba(193, 126, 87, 0.12) 0%, rgba(193, 126, 87, 0.18) 100%);
        color: var(--primary-copper);
        font-weight: 600;
    }

    .hero {
        padding: 40px 0 60px 0;
    }

    /* Hero directly after header (without breadcrumb) - homepage mobile */
    header + .hero {
        margin-top: 50px;
    }

    .hero-content {
        padding: 0 20px;
        max-width: calc(100% - 40px);
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.00; /* line-height: 1.15; */
        letter-spacing: -1px;
        margin-bottom:5px !important; /* margin-bottom: 14px; */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text-content h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .hero-text-content p {
        font-size: 16px;
        margin-bottom: 26px;
        line-height: 1.5;
    }

    .hero-image-box {
        padding: 0;
    }

    .hero h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 26px;
        line-height: 1.5;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }

    .header-content {
        padding: 15px 20px;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 40px;
    }
    
    .hamburger span {
        background: var(--primary-dark) !important;
    }

    .services-overview {
        padding: 60px 20px;
    }

    .seo-audit,
    .modern-content {
        padding: 60px 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .cta-section p {
        font-size: 18px;
    }

    .cta-action-btn {
        padding: 18px 40px;
        font-size: 16px;
    }

    .glossary {
        padding: 60px 20px;
    }

    .alphabet-nav {
        gap: 8px;
    }

    .letter-btn {
        padding: 10px 12px;
        min-width: 42px;
        font-size: 14px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .service-slide {
        min-width: 100%;
    }

    .card-content {
        padding: 40px 30px;
    }

    .audit-form {
        padding: 40px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .card-cta {
        flex-direction: column;
    }

    .modern-button {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   Subpage Styles
   ======================================== */

/* Subpage Hero Section */
.subpage-hero {
    padding: 76px 40px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 90px;
}

.subpage-hero-container {
    max-width: 1050px;
    margin: 0 auto;
}

/* Universal H1 for Subpages */
.subpage-h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 18px 0;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

/* Subpage Content Grid */
.subpage-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

.subpage-text-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-copper);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1;
}

.subpage-text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Subpage Image Container */
.subpage-image-box {
    border-radius: 12px;
    overflow: hidden;
}

.subpage-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 2px solid rgba(193, 126, 87, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Subpage Standard Section */
.subpage-section {
    padding: 40px 40px;
}

.subpage-section-white {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.subpage-section-gray {
    background: linear-gradient(135deg, #f0f2f4 0%, #e8ebed 100%);
    border-top: 1px solid rgba(193, 126, 87, 0.15);
}

.subpage-section-dark {
    background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
}

/* Subpage Container Widths */
.subpage-container {
    max-width: 1200px; /* 1050px */
    margin: 0 auto;
}

.subpage-container-narrow {
    max-width: 1200px; /* 1050px */
    margin: 0 auto;
    padding: 0 20px;
}

.subpage-container-narrow h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.subpage-container-narrow h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 40px 0 20px 0;
    line-height: 1.4;
}

.subpage-container-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.subpage-container-narrow ul,
.subpage-container-narrow ol {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin: 25px 0;
    padding-left: 30px;
}

.subpage-container-narrow ul li,
.subpage-container-narrow ol li {
    margin-bottom: 12px;
}

.subpage-container-narrow strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.subpage-container-narrow em {
    font-style: italic;
    color: #666;
}

.subpage-container-narrow a {
    color: var(--primary-copper);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.subpage-container-narrow a:hover {
    color: #9d6a4a;
    text-decoration-thickness: 2px;
}

/* Intent Table Styles */
.intent-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.intent-table thead {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #b87d5a 100%);
    color: #fff;
}

.intent-table th {
    padding: 16px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.intent-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: #4a5568;
    vertical-align: top;
}

.intent-table tbody tr:last-child td {
    border-bottom: none;
}

.intent-table tbody tr:hover {
    background: #fafafa;
    transition: background 0.2s ease;
}

.intent-table td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Responsive table */
@media (max-width: 768px) {
    .intent-table {
        font-size: 14px;
    }
    
    .intent-table th,
    .intent-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .intent-table th:nth-child(2),
    .intent-table td:nth-child(2) {
        display: none; /* Sakrij "Namjera korisnika" kolonu na mobitelu */
    }
}

/* Process Steps Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.process-step {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
    border-color: var(--primary-copper);
    box-shadow: 0 8px 20px rgba(193, 126, 87, 0.15);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-copper) 0%, #b87d5a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(193, 126, 87, 0.3);
}

.step-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.process-step h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Responsive Process Steps */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .step-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .process-step h4 {
        font-size: 17px;
    }
    
    .process-step p {
        font-size: 14px;
    }
}

/* Mobile Responsive for Zagreb page tables and grids */
@media (max-width: 768px) {
    /* KPI Table */
    .kpi-table {
        font-size: 13px;
    }
    
    .kpi-table th,
    .kpi-table td {
        padding: 10px 8px !important;
        font-size: 13px !important;
    }
    
    /* SEO Audit Grid - make 1 column */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Subpage Section with Top Border */
.subpage-section-with-border {
    border-top: 1px solid #e5e7eb;
    padding-top: 60px;
}

/* Subpage Section with Gradient Top */
.subpage-section-gradient-top {
    position: relative;
    padding-top: 60px;
}

.subpage-section-gradient-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 40%, #f5f5f5 100%);
    pointer-events: none;
    z-index: 0;
}

.subpage-section-gradient-top > * {
    position: relative;
    z-index: 1;
}

/* Process Note Box */
.process-note {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-left: 4px solid var(--primary-copper);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(193, 126, 87, 0.08);
}

.process-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.process-note strong {
    color: var(--primary-dark);
}

/* SEO Process Grid */
.seo-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    position: relative;
}

.seo-process-item {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    position: relative;
}

/* Strelice uklonjene - ostaju samo brojevi */

/* Brojevi koraka */
.seo-process-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: var(--primary-copper);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-process-grid {
    counter-reset: step-counter;
}

.seo-process-item h3 {
    margin: 0 0 10px 0;
    padding-left: 45px;
    font-size: 17px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    min-height: 30px;
}

.seo-process-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .seo-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Tablet - strelice uklonjene */
}

@media (max-width: 768px) {
    .seo-process-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile - strelice uklonjene */
}

/* Process Flow - Infographic */
.process-flow {
    margin: 60px 0 0 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 2px solid #bae6fd;
}

.flow-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    padding: 15px 10px;
    background: #fff;
    border: 2px solid var(--primary-copper);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 126, 87, 0.2);
}

.flow-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-copper);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.flow-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.3;
}

.flow-arrow {
    font-size: 28px;
    color: var(--primary-copper);
    font-weight: 700;
    margin: 0 5px;
}

@media (max-width: 1024px) {
    .flow-container {
        gap: 10px;
    }
    
    .flow-step {
        min-width: 90px;
        padding: 12px 8px;
    }
    
    .flow-text {
        font-size: 12px;
    }
    
    .flow-arrow {
        font-size: 24px;
        margin: 0 3px;
    }
}

@media (max-width: 768px) {
    .process-flow {
        padding: 30px 20px;
    }
    
    .flow-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-step {
        min-width: 200px;
        max-width: 100%;
        padding: 15px 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 26px;
        margin: 0;
    }
}

/* Subpage Section Titles */
.subpage-section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-dark);
    margin: 0 0 35px 0;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
}

.subpage-section-title-white {
    color: #fff;
    margin: 0 0 25px 0;
}

.subpage-section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    margin: 0 auto 35px auto;
    text-align: center;
    max-width: 800px;
    font-weight: 500;
}

.subpage-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 auto 40px auto;
    text-align: center;
    max-width: 800px;
    font-weight: 500;
}

/* Subpage Content Box */
.subpage-content-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.subpage-content-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 25px 0;
}

.subpage-content-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
}

.subpage-content-box ul {
    margin: 0 0 25px 0;
    padding-left: 25px;
    color: #4a5568;
    line-height: 1.8;
}

.subpage-content-box ul li {
    margin-bottom: 10px;
}

.subpage-content-box ul:last-child {
    margin-bottom: 20px;
}

.subpage-content-box ul li:last-child {
    margin-bottom: 0;
}

/* Subpage Highlight Box */
.subpage-highlight-box {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(193, 126, 87, 0.3);
}

.subpage-highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.subpage-highlight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.98);
    margin: 0 0 15px 0;
}

.subpage-highlight-box .benefits {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 500;
}

/* Subpage Checkmark List */
.subpage-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.subpage-checklist-item {
    display: flex;
    gap: 18px;
    align-items: start;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.subpage-checklist-icon {
    font-size: 24px;
    color: var(--primary-copper);
    flex-shrink: 0;
}

.subpage-checklist-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Subpage Goal Box */
.subpage-goal-box {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-copper);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.subpage-goal-box p:first-child {
    font-size: 19px;
    line-height: 1.6;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0 0 12px 0;
}

.subpage-goal-box p:last-child {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Subpage Info Box */
.subpage-info-box {
    padding: 35px 40px;
}

.subpage-info-box p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 20px 0;
}

.subpage-info-box p:last-child {
    margin: 0;
}

/* Subpage Target Audience Section */
.subpage-audience-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid rgba(193, 126, 87, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.subpage-audience-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 30px 0;
    text-align: center;
}

.subpage-audience-item {
    margin-bottom: 25px;
}

.subpage-audience-item:last-child {
    margin-bottom: 0;
}

.subpage-audience-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-copper);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subpage-audience-item h4 span {
    font-size: 24px;
}

.subpage-audience-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 8px 28px;
}

.subpage-audience-item:last-child p {
    margin-bottom: 0;
}

/* Subpage Location Box */
.subpage-location-box {
    background: linear-gradient(135deg, var(--primary-copper) 0%, #a86944 100%);
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(193, 126, 87, 0.3);
    margin-bottom: 40px;
}

.subpage-location-box p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.98);
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.subpage-location-box strong {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* Subpage CTA */
.subpage-cta-center {
    text-align: center;
}

.subpage-cta-button {
    display: inline-block;
    background: var(--primary-copper);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(193, 126, 87, 0.4);
}

.subpage-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(193, 126, 87, 0.5);
    background: #a86944;
}

.subpage-cta-note {
    font-size: 14px;
    color: #718096;
    margin: 15px 0 0 0;
}

/* Responsive - Subpage */
@media (max-width: 968px) {
    .subpage-content-grid {
        grid-template-columns: 1fr;
    }
    
    .subpage-h1 {
        font-size: 36px;
    }
    
    .glossary-article h1 {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }
    
    .glossary-article-container {
        padding: 0 20px;
    }
    
    .subpage-section-title,
    .subpage-section-title-white {
        font-size: 30px;
    }
    
    .subpage-content-box h3,
    .subpage-highlight-box h3,
    .subpage-audience-box h3 {
        font-size: 20px;
    }
    
    .subpage-audience-item h4 {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .subpage-hero {
        padding: 76px 20px 50px;
    }
    
    .subpage-section {
        padding: 50px 20px;
    }
    
    .subpage-h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .subpage-section-title,
    .subpage-section-title-white {
        font-size: 26px;
    }
    
    .subpage-intro-text {
        font-size: 16px;
    }
    
    .subpage-content-box,
    .subpage-highlight-box,
    .subpage-audience-box {
        padding: 30px 20px;
    }
    
    .subpage-content-box h3,
    .subpage-highlight-box h3,
    .subpage-audience-box h3 {
        font-size: 19px;
    }
    
    .subpage-audience-item h4 {
        font-size: 16px;
    }
    
    .subpage-content-box ul {
        padding-left: 20px;
    }
}

/* ========================================
   Reviews Section
   ======================================== */

.reviews-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    overflow: hidden;
    width: 100%;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
}

.review-location {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.review-location a {
    color: var(--primary-copper);
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-location a:hover {
    text-decoration: underline;
    color: #8b5a3c;
}

.review-project {
    font-size: 13px;
    color: var(--primary-copper);
    margin: 4px 0 0 0;
    font-weight: 600;
    font-style: italic;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #ddd;
    font-size: 20px;
}

.star.filled {
    color: var(--primary-copper);
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    font-style: italic;
}

.review-nav {
    background: var(--primary-copper);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(193, 126, 87, 0.3);
}

.review-nav:hover {
    background: #a86944;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(193, 126, 87, 0.4);
}

.review-nav:active {
    transform: scale(0.95);
}

.review-nav span {
    display: block;
    line-height: 1;
    margin-top: -3px;
}

@media (max-width: 968px) {
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .reviews-title {
        font-size: 34px;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .reviews-slider-wrapper {
        gap: 15px;
    }
}

/* ========================================
   About Me Section
   ======================================== */

.about-me-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #faf8f6 0%, #fefefe 100%);
    border-top: 1px solid rgba(193, 126, 87, 0.12);
}

.about-me-container {
    max-width: 1260px;
    margin: 0 auto;
}

.about-me-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

.about-me-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: transparent;
    padding: 0;
    width: 100%;
    max-width: 280px;
}

.about-me-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.about-me-text {
    padding: 0;
}

.about-me-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-me-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-me-text p strong {
    color: var(--primary-copper);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .about-me-section {
        padding: 60px 20px;
    }
    
    .about-me-content {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
    
    .about-me-image {
        max-width: 240px;
    }
    
    .about-me-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-me-text p {
        font-size: 16px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-me-image {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .about-me-section {
        padding: 50px 20px;
    }
    
    .about-me-text h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .about-me-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .about-me-image {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-top: 90px;
}

.breadcrumb-container {
    width: 1050px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    padding: 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.breadcrumb-nav a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--primary-copper);
}

.breadcrumb-separator {
    color: #718096;
    user-select: none;
    font-weight: 400;
}

.breadcrumb-current {
    color: var(--primary-copper);
    font-weight: 600;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c17e57 0%, #a86944 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(193, 126, 87, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(193, 126, 87, 0.7);
}

@media (max-width: 968px) {
    .breadcrumb {
        margin-top: 70px;
    }

    .breadcrumb-container {
        max-width: calc(100% - 40px);
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

}

/* ===== SEO RESULTS SECTION ===== */
.seo-results-section {
    background: #fff;
    padding: 60px 20px;
}

.seo-results-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 32px;
    margin-bottom: 15px;
}

.seo-results-section > div > p {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.result-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.result-card h3 {
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.stat-comparison {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.stat-comparison > div {
    text-align: center;
}

.stat-comparison > div > div:first-child {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stat-comparison > div > div:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
}

.stat-comparison > div > div:last-child {
    font-size: 11px;
    color: #999;
}

.stat-comparison > div:nth-child(2) {
    display: flex;
    align-items: center;
    color: var(--primary-copper);
    font-size: 28px;
}

.growth-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.timeline-chart {
    position: relative;
    height: 145px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    padding-bottom: 30px;
}

/* ===== SEO RESULTS - VEĆI PRIKAZ ===== */
.seo-results-large-section {
    background: #f8f9fa;
    padding: 60px 20px;
    border-top: 2px solid #e9ecef;
}

.seo-results-large-section > div {
    max-width: 900px;
    margin: 0 auto;
}

.seo-results-large-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 32px;
    margin-bottom: 15px;
}

.seo-results-large-section > div > p {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.result-card-large {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.result-card-large h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.result-card-large .stat-comparison {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.result-card-large .stat-comparison > div > div:first-child {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.result-card-large .stat-comparison > div > div:nth-child(2) {
    font-size: 32px;
}

.result-card-large .stat-comparison > div > div:last-child {
    font-size: 12px;
    margin-top: 4px;
}

.result-card-large .stat-comparison > div:nth-child(2) {
    font-size: 36px;
    margin: 0 30px;
}

.result-card-large .growth-badge {
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-chart-large {
    position: relative;
    height: 280px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    padding-bottom: 40px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    /* Footer contact box fix */
    .contact-box {
        max-width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    
    .contact-box p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .footer-section {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        padding: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .result-card-large {
        padding: 25px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .timeline-chart {
        height: 180px;
        padding: 12px;
        padding-bottom: 35px;
        max-width: 100%;
    }
    
    .timeline-chart-large {
        height: 200px;
        max-width: 100%;
    }
    
    .stat-comparison > div > div:nth-child(2) {
        font-size: 20px;
    }
    
    .result-card-large .stat-comparison > div > div:nth-child(2) {
        font-size: 24px;
    }
    
    .growth-badge {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    /* Prevent horizontal scroll for results section */
    .seo-results-section {
        overflow-x: hidden !important;
    }
}

/* Responsive - Case Study Section */
@media (max-width: 968px) {
    .subpage-section div[style*="grid-template-columns: 1fr 420px"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        align-items: start !important;
    }
    
    /* Prilagodba grafikona za mobilne */
    #detailChart {
        height: 300px !important;
        max-width: 100% !important;
    }
    
    .subpage-section h3[style*="font-size: 22px"] {
        font-size: 18px !important;
    }
    
    /* Manji padding oko grafikona */
    .subpage-section div[style*="padding: 20px 15px"] {
        padding: 15px 10px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Prevent horizontal scroll */
    .subpage-section-gray {
        overflow-x: hidden !important;
    }
    
    .subpage-container-narrow {
        overflow-x: hidden !important;
    }
}

@media (max-width: 768px) {
    /* Smanjeni razmak kod bullet lista na tablet i mobile */
    .subpage-section .seo-bullet-list li[style*="margin-bottom: 12px"],
    .subpage-section .seo-bullet-list li {
        gap: 6px !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
    }
    
    .subpage-section .seo-bullet-list li > span:first-child {
        font-size: 18px !important;
    }
    
    /* Na tablet i mobile - jedna kolona umjesto dvije */
    .subpage-section div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 10px 0 !important;
    }
    
    .subpage-section .seo-bullet-list li[style*="margin-bottom: 0"] {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    #detailChart {
        height: 280px !important;
    }
    
    .subpage-section div[style*="padding: 20px 15px"] {
        padding: 12px 8px !important;
    }
    
    /* Još manji razmak kod bullet lista na mobile */
    .subpage-section .seo-bullet-list li[style*="margin-bottom: 12px"],
    .subpage-section .seo-bullet-list li {
        gap: 5px !important;
        margin-bottom: 6px !important;
        margin-top: 0 !important;
    }
    
    .subpage-section .seo-bullet-list li > span:first-child {
        font-size: 16px !important;
    }
    
    /* Na mobile - jedna kolona */
    .subpage-section div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 6px 0 !important;
    }
    
    .subpage-section .seo-bullet-list li[style*="margin-bottom: 0"] {
        margin-bottom: 0 !important;
    }
    
    /* Info boxes na small mobile */
    div[class="info-boxes-grid"],
    div.info-boxes-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    
    div[class="modern-info-box"],
    div.modern-info-box {
        padding: 18px !important;
    }
    
    div[class="box-icon"],
    div.box-icon {
        display: none !important;
    }
}

