:root {
    --primary: #1a56db;
    --primary-dark: #0e2a47;
    --primary-darker: #0a192f;
    --accent: #2d9cdb;
    --accent-light: #64ffda;
    --orange: #FF7A00;
    --orange-light: #ff9d42;
    --white: #FFFFFF;
    --light: #f0f7ff;
    --dark: #0a192f;
    --text: #e6f1ff;
    --light-text: #f8f9fa;
    --card-bg: rgba(10, 25, 47, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-y: auto; /* Omogućava vertikalno skrolovanje */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    position: relative;
    -webkit-overflow-scrolling: touch; /* Omogućava glatko skrolovanje na iOS */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 156, 219, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: -1;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden; /* Sprečava horizontalno skrolovanje */
}

/* Header with larger logo */
header {
    background: rgba(10, 25, 47, 0.95);
    color: var(--light-text);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-light);
    text-transform: uppercase;
    text-decoration: none;
    max-width: 80%;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.logo span {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--orange);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.95)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
    padding: 140px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
    padding: 0 10px;
}

.hero p {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--text);
    animation: fadeInUp 1.2s ease;
    padding: 0 10px;
}

.hero-image {
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-light);
    width: 95%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.4s ease;
    margin: 5px;
    text-align: center;
    width: 90%;
    max-width: 250px;
}

.orange-button {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4);
}

.white-button {
    background: linear-gradient(135deg, var(--white) 0%, #F0F0F0 100%);
    color: var(--primary-darker);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
}

.blue-button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 5px 25px rgba(45, 156, 219, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.6);
}

.white-button:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

.blue-button:hover {
    box-shadow: 0 10px 30px rgba(45, 156, 219, 0.6);
}

/* Actions Section */
.actions {
    padding: 60px 0;
    background: rgba(10, 25, 47, 0.8);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
    justify-items: center; /* Center cards on all devices */
}

.action-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.4s;
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
    max-width: 350px; /* Limit max width */
}

.action-card:hover {
    transform: translateY(-10px);
    background: rgba(26, 86, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--orange);
}

.action-card i {
    font-size: 3.5rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.action-card:hover i {
    transform: scale(1.2);
    color: var(--orange);
}

.action-card h3 {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.action-card p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    padding: 0 10px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--accent-light);
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 10px;
    justify-items: center; /* Center cards on all devices */
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 350px; /* Limit max width */
    transform: translateZ(0); /* Poboljšanje performansi za starije telefone */
    backface-visibility: hidden; /* Poboljšanje performansi za starije telefone */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 156, 219, 0.3);
    border-color: var(--orange);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    transform: translateZ(0); /* Poboljšanje performansi za starije telefone */
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.service-content {
    padding: 25px 15px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.service-content ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
    display: inline-block;
    max-width: 100%;
}

.service-content ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    font-size: 0.95rem;
    max-width: 100%;
    word-wrap: break-word;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-light);
    font-size: 1rem;
}

.service-content .cta-button {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: rgba(10, 25, 47, 0.8);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 10px;
    justify-items: center; /* Center cards on all devices */
}

.stat-card {
    text-align: center;
    padding: 30px 15px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.4s;
    width: 100%;
    max-width: 220px; /* Limit max width */
    transform: translateZ(0); /* Poboljšanje performansi za starije telefone */
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(26, 86, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-card .label {
    font-size: 1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Media Section */
.social {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    position: relative;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
    justify-items: center; /* Center cards on all devices */
}

.social-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.4s;
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 280px; /* Limit max width */
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(45, 156, 219, 0.3);
}

.social-card i {
    font-size: 3rem;
    color: var(--accent-light);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.social-card:hover i {
    transform: scale(1.2);
    color: var(--orange);
}

.social-card h3 {
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.social-card p {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.contact-info {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.contact-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(45, 156, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: var(--accent-light);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.email-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--orange);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 5px;
    font-size: 1rem;
}

.email-link:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: rgba(10, 25, 47, 0.95);
    color: var(--light-text);
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    padding: 0 15px;
}

.footer-column {
    padding: 10px;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-column p {
    margin-bottom: 15px;
    color: #a8b2d1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.footer-column ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-light);
    font-size: 1rem;
}

.footer-column ul li a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent-light);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8b2d1;
    font-size: 0.85rem;
    width: 100%;
    padding: 20px 15px 0;
}

/* SEO Enhancements */
.seo-section {
    background: rgba(10, 25, 47, 0.8);
    padding: 50px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.seo-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.seo-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.seo-content h2 {
    color: var(--accent-light);
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 20px;
}

.seo-content p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.keyword-tag {
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.keyword-tag:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo {
        font-size: 1.6rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    nav ul li a {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 130px 0 40px;
    }
    
    .service-icon {
        height: 160px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-darker);
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto; /* Omogući skrolovanje ako meni prelazi visinu ekrana */
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 120px 0 30px;
    }
    
    .logo span {
        display: none;
    }
    
    .actions-grid,
    .services-grid,
    .stats-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        height: 150px;
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column ul li::before {
        left: 10px;
    }
    
    /* Mobile-specific adjustments */
    .action-card,
    .service-card,
    .stat-card,
    .social-card {
        max-width: 90%; /* Reduced card width */
        margin: 0 auto 20px; /* Proper centering */
        padding: 20px 15px; /* Reduced padding */
    }
    
    .action-card h3,
    .service-card h3,
    .social-card h3 {
        font-size: 1.2rem; /* Smaller headings */
    }
    
    .action-card p,
    .social-card p {
        font-size: 0.85rem; /* Smaller text */
    }
    
    .service-card .service-content ul li {
        font-size: 0.85rem; /* Smaller list items */
    }
    
    .stat-card .number {
        font-size: 2rem; /* Smaller numbers */
    }
    
    .stat-card .label {
        font-size: 0.85rem; /* Smaller labels */
    }
    
    .action-card i {
        font-size: 3rem; /* Slightly smaller icons */
    }
    
    .social-card i {
        font-size: 2.5rem; /* Smaller social icons */
    }
    
    .service-icon {
        height: 120px; /* Reduced height */
        font-size: 2.5rem; /* Smaller icon size */
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .hero {
        padding: 100px 0 20px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-icon {
        height: 100px; /* Further reduced height */
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .footer-column ul li {
        padding-left: 25px;
    }
    
    .service-content ul li {
        padding-left: 25px;
        font-size: 0.8rem; /* Even smaller on very small screens */
    }
    
    /* Additional mobile font adjustments */
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .stat-card .number {
        font-size: 1.8rem;
    }
}