/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Century Gothic', Arial, sans-serif;
    line-height: 1.6;
    color: #001f3d;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Matchira pozadinu loga #045174 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #045174; /* Navy Blue - ista kao pozadina loga */
    box-shadow: 0 4px 30px rgba(4, 81, 116, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: #045174; /* Ista boja kao header */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 31, 61, 0.2);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: white; /* Bijeli tekst na Navy Blue pozadini */
    font-weight: 600;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #d89c60; /* Desert Sun za hover */
    background: rgba(216, 156, 96, 0.2);
    transform: translateY(-2px);
}

.language-switcher {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 15px;
}

.flag {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 2px;
}

.flag:hover {
    transform: scale(1.2);
    border-color: #d89c60;
    box-shadow: 0 2px 8px rgba(216, 156, 96, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - S pozadinskom slikom */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(0, 31, 61, 0.8), rgba(4, 81, 116, 0.7), rgba(44, 90, 160, 0.6)),
        url('skyscrapers.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 31, 61, 0.8), rgba(4, 81, 116, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #d89c60;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.hero-highlight {
    background: linear-gradient(135deg, rgba(216, 156, 96, 0.3), rgba(232, 122, 0, 0.2));
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #d89c60;
    border-right: 5px solid #e87a00;
    font-size: 1.15rem;
    line-height: 1.8;
    font-family: 'Century Gothic', Arial, sans-serif;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 31, 61, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e87a00, #d89c60);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(232, 122, 0, 0.4);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d89c60, #e87a00);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 122, 0, 0.6);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e87a00, #d89c60, #045174, #001f3d);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #001f3d;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e87a00, #d89c60);
    border-radius: 2px;
}

.highlight {
    color: #e87a00;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-tagline {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #045174;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #001f3d;
    font-family: 'Century Gothic', Arial, sans-serif;
}

.philosophy {
    background: linear-gradient(135deg, rgba(216, 156, 96, 0.1), rgba(232, 122, 0, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #d89c60;
    font-style: italic;
    font-weight: 600;
    color: #001f3d;
    box-shadow: 0 8px 25px rgba(0, 31, 61, 0.1);
}

.about-image {
    text-align: center;
    position: relative;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 31, 61, 0.3);
    border: 5px solid #d89c60;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services h2 {
    text-align: center;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #001f3d;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #e87a00, #d89c60);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(4, 81, 116, 0.2);
    box-shadow: 0 10px 30px rgba(0, 31, 61, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #045174, #e87a00);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(4, 81, 116, 0.2);
    background: linear-gradient(135deg, rgba(4, 81, 116, 0.05), rgba(216, 156, 96, 0.02));
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2);
}

.service-item h3 {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #001f3d;
    font-weight: 600;
    line-height: 1.4;
}

.service-item p {
    color: #045174;
    line-height: 1.7;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #001f3d;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #e87a00, #d89c60);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    border-left: 5px solid #045174;
    box-shadow: 0 5px 20px rgba(0, 31, 61, 0.1);
}

.benefit-item:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(4, 81, 116, 0.2);
    background: linear-gradient(135deg, rgba(4, 81, 116, 0.1), rgba(216, 156, 96, 0.05));
    border-left-color: #e87a00;
}

.benefit-icon {
    font-size: 2rem;
    color: #045174;
    font-weight: bold;
    min-width: 40px;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.3);
    color: #e87a00;
}

.benefit-item p {
    margin: 0;
    line-height: 1.7;
    color: #001f3d;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact h2 {
    text-align: center;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #001f3d;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #e87a00, #d89c60);
    border-radius: 2px;
}

.contact-intro {
    text-align: center;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #045174;
}

.contact-subtitle {
    text-align: center;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #045174;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(4, 81, 116, 0.2);
    box-shadow: 0 8px 25px rgba(0, 31, 61, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 81, 116, 0.2);
    background: linear-gradient(135deg, rgba(4, 81, 116, 0.05), white);
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
    color: #045174;
}

.contact-item span {
    color: #001f3d;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 600;
}

.contact-item a {
    color: #045174;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Century Gothic', Arial, sans-serif;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e87a00;
}

.calendly-section {
    text-align: center;
}

.calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #045174, #e87a00);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(4, 81, 116, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendly-btn:hover {
    background: linear-gradient(135deg, #e87a00, #045174);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 81, 116, 0.6);
}

/* Footer - Matchira pozadinu loga #045174 */
.footer {
    background: #045174; /* Navy Blue - ista kao pozadina loga */
    color: white;
    padding: 4rem 0 2rem;
    border-top: 5px solid #e87a00;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 31, 61, 0.3);
}

.footer-address h4 {
    margin-bottom: 1rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    color: #d89c60;
    font-size: 1.3rem;
}

.footer-address p {
    font-family: 'Century Gothic', Arial, sans-serif;
    line-height: 1.6;
    color: white;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    color: #d89c60;
    font-size: 1.3rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #e87a00;
}

.footer-calendly {
    text-align: center;
}

.footer-calendly-btn {
    display: inline-block;
    background: #e87a00;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 122, 0, 0.3);
}

.footer-calendly-btn:hover {
    background: #d89c60;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 122, 0, 0.4);
}

.footer-bottom {
    border-top: 2px solid #e87a00;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: white;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 500;
}

.footer-gdpr {
    color: white;
    font-size: 1rem;
    font-family: 'Century Gothic', Arial, sans-serif;
}

.footer-gdpr a {
    color: #d89c60;
    text-decoration: none;
    font-weight: 600;
}

.footer-gdpr a:hover {
    text-decoration: underline;
    color: #e87a00;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 31, 61, 0.95), rgba(4, 81, 116, 0.95));
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    border-top: 3px solid #e87a00;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text p {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 1.1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Century Gothic', Arial, sans-serif;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #e87a00;
    color: white;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid #d89c60;
}

.cookie-accept:hover {
    background: #d89c60;
    transform: translateY(-2px);
}

.cookie-decline:hover {
    background: #d89c60;
    color: #045174;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #045174;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(4, 81, 116, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .about-text h2,
    .services h2,
    .benefits h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}