:root {
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #2c5282;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --gold-gradient: linear-gradient(135deg, #d4af37, #f1c40f);
    --blue-gradient: linear-gradient(135deg, #1a365d, #2c5282);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: var(--light-bg);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.4rem 3%;
    background: rgba(26, 54, 93, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-height: 60px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-right: auto;
}

.logo img {
    height: 80px;
    width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.booking-button {
    background: linear-gradient(45deg, #d4af37, #f1c40f, #d4af37, #f6e27a, #d4af37);
    background-size: 300% 300%;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.nav-links li a.booking-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.burger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content h1 {
    font-family: 'CocoSharp', sans-serif;
    font-weight: bold;
    font-size: 10rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 12px;
    background: linear-gradient(
        to right,
        #ffffff 0,
        #d4af37 40%,
        #ffffff 50%,
        #d4af37 60%,
        #ffffff 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: heroTitleAnimation 1.5s ease forwards,
             heroShine 3s linear infinite;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.booking-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #d4af37, #f1c40f, #d4af37, #f6e27a, #d4af37);
    background-size: 300% 300%;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.booking-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--light-bg);
    position: relative;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* 3D Vehicle Model */
.vehicle-model {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    perspective: 1000px;
}

.vehicle-container {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateVehicle 20s infinite linear;
}

@keyframes rotateVehicle {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* About Section */
.about {
    padding: 5rem 5%;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: var(--blue-gradient);
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-form button:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/mercedes-blur.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(3px) brightness(0.3);
    z-index: 1;
}

.why-choose-us-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.why-choose-us-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.why-choose-us-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 250px;
}

.why-choose-us-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    width: 100%;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.why-choose-us-card.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.why-choose-us-card.active:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.why-choose-us-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.why-choose-us-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.why-choose-us-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 1rem;
    }
    
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-us-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        white-space: normal;
        max-width: 90%;
    }
    
    .why-choose-us-grid {
        height: 220px;
    }
    
    .why-choose-us-card {
        padding: 1.2rem 1rem;
    }
    
    .why-choose-us-icon {
        font-size: 1.8rem;
    }
    
    .why-choose-us-card h3 {
        font-size: 1rem;
    }
}

/* Payment Section */
.payment {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.payment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #333;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-methods img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.sumup-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.sumup-info img {
    height: 30px;
    width: auto;
}

/* Legal Links */
.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #007bff;
}

/* Štetje številk */
.stats-section {
    background: #fffbe6;
    padding: 3rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
}
.stat-number:after {
    content: '+';
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    right: -1.2rem;
    top: 0.1rem;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Partnerji carousel */
.partners-section {
    background: #f7fafc;
    padding: 3rem 0 4rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}
.partners-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}
.partners-carousel {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    height: 120px;
}
.partner-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    transition: opacity 0.5s;
    opacity: 0;
}
.partner-slide.active {
    display: flex;
    opacity: 1;
    position: relative;
}
.partner-slide img {
    max-height: 100px;
    max-width: 320px;
    margin-bottom: 1rem;
    object-fit: contain;
}
.partner-slide p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100vw;
        height: calc(100vh - 70px);
        text-align: center;
        transition: right 0.3s;
        z-index: 1001;
        padding-top: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
        position: absolute;
        right: 2rem;
        top: 1.2rem;
        z-index: 1100;
    }

    .hero-content h1 {
        font-size: 5rem;
        letter-spacing: 8px;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .since-container {
        font-size: 1rem;
    }
    
    .stats-section {
        margin-top: 0;
    }
    
    .partners-section {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .payment-methods {
        gap: 1rem;
    }

    .payment-methods img {
        height: 30px;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        gap: 0.5rem;
    }

    .payment-methods img {
        height: 25px;
    }
}

/* Responsive popravki */
@media (max-width: 900px) {
    .stats-grid {
        gap: 1.5rem;
    }
}
@media (max-width: 700px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    .partners-carousel {
        max-width: 90vw;
        height: 140px;
    }
    .partner-slide img {
        max-height: 80px;
        max-width: 240px;
    }
    .partner-slide p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }
    .partners-section h2 {
        font-size: 1.1rem;
    }
    .partner-slide img {
        max-height: 60px;
        max-width: 180px;
    }
}

.coco-sharp {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Dodam nov stil za hero naslov */
.hero-title {
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(
        to right,
        #1a365d 0%,
        #2c5282 20%,
        #cb9b51 40%,
        #f6e27a 50%,
        #cb9b51 60%,
        #2c5282 80%,
        #1a365d 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: heroShine 4s linear infinite;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

@keyframes heroShine {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 200% center;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 4px;
    }
}

/* Prilagoditve za sekcije */
.stats-section, .partners-section {
    margin: 0;
    padding: 4rem 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive popravki */
@media screen and (max-width: 768px) {
    .about-text p {
        text-align: left;
        padding: 0 1rem;
    }
}

/* Scroll Up Button */
#scrollUp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollUp.visible {
    opacity: 1;
    visibility: visible;
}

#scrollUp:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive popravki za social links in scroll up */
@media screen and (max-width: 768px) {
    #scrollUp {
        right: 15px;
        bottom: 15px;
        width: 35px;
        height: 35px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}

/* Since animation */
.since-container {
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
}

.since-text {
    margin-right: 0.5rem;
    color: white;
    letter-spacing: 1px;
}

.since-year {
    background: linear-gradient(
        to right,
        #d4af37 0%,
        #f6e27a 20%,
        #d4af37 40%,
        #ffffff 50%,
        #d4af37 60%,
        #f6e27a 80%,
        #d4af37 100%
    );
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineYear 4s linear infinite;
    background-size: 200% auto;
    font-weight: 800;
    letter-spacing: 2px;
}

@keyframes shineYear {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media screen and (max-width: 768px) {
    .since-container {
        font-size: 1.3rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 5%;
    background: var(--light-bg);
}

/* Skrij Elfsight branding */
.elfsight-app-c443d467-cbba-4248-a3d6-fccae3e7eff7 .eapps-google-reviews-slider-header-reviews-count,
.elfsight-app-c443d467-cbba-4248-a3d6-fccae3e7eff7 .eapps-widget-toolbar {
    display: none !important;
}

.reviews h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.reviewer-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.google-logo {
    height: 30px;
    width: auto;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .rating-text {
        font-size: 0.8rem;
    }
}

.google-review-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    transition: transform 0.3s ease;
}

.google-review-link:hover {
    transform: translateY(-2px);
}

.review-cta {
    text-align: center;
    margin-top: 2rem;
}

.write-review-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-gradient);
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.write-review-button i {
    font-size: 0.9rem;
}

.write-review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media screen and (max-width: 768px) {
    .google-review-link {
        flex-direction: column;
        text-align: center;
    }

    .write-review-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@keyframes heroTitleAnimation {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive prilagoditve za hero naslov */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
}

.hero-logo-container {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-logo {
    width: 100%;
    height: auto;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards, float3D 6s ease-in-out infinite;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    object-fit: contain;
    max-width: 500px;
}

@keyframes float3D {
    0% {
        transform: translateZ(0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateZ(20px) rotateX(2deg) rotateY(-2deg);
    }
    50% {
        transform: translateZ(40px) rotateX(-1deg) rotateY(2deg);
    }
    75% {
        transform: translateZ(20px) rotateX(1deg) rotateY(-1deg);
    }
    100% {
        transform: translateZ(0) rotateX(0) rotateY(0);
    }
}

@media (max-width: 768px) {
    @keyframes float3D {
        0%, 100% {
            transform: translateZ(0) rotateX(0) rotateY(0);
        }
        50% {
            transform: translateZ(20px) rotateX(1deg) rotateY(1deg);
        }
    }
}

.shine-effect {
    position: relative;
    display: block;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 215, 0, 0.4) 30%,
        rgba(255, 215, 0, 0.8) 40%,
        rgba(255, 215, 0, 0.4) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateY(-100%) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateY(100%) translateX(100%);
    }
}

@media (max-width: 768px) {
    .hero-logo-container {
        max-width: 400px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo-container {
        max-width: 320px;
        padding: 0 15px;
    }
}

/* Stil za SumUp sekcijo */
.sumup-section {
    margin-top: 2rem;
    text-align: center;
}

.sumup-section p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.sumup-section img {
    height: 40px;
    width: auto;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}

.contact-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulseButton 2s infinite;
    overflow: hidden;
}

.contact-main-btn i {
    color: var(--primary-color);
    font-size: 24px;
    position: relative;
    z-index: 2;
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    }
}

.contact-main-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.contact-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-main-btn:hover::before {
    animation: shimmer 2s infinite;
}

.contact-options {
    position: absolute;
    bottom: 70px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.contact-option-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-option-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.7) 50%, transparent 60%, transparent 100%);
    transform: rotate(45deg);
    pointer-events: none;
    animation: shineOption 2.5s linear infinite;
    z-index: 1;
}

@keyframes shineOption {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.contact-option-btn i {
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 1.5rem;
}

.language-switch a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.language-switch span {
    color: white;
    opacity: 0.5;
}

.language-switch a.active {
    opacity: 1;
    font-weight: 600;
}

.language-switch a:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .language-switch {
        margin: 1rem 0;
    }
}

.zavod-logo {
    position: absolute;
    bottom: 40px;
    left: 20px;
    width: 220px;
    height: auto;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.slovenia-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: auto;
    z-index: 2;
}

.green-safe-logo {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 200px;
    height: auto;
    z-index: 10;
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.green-safe-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
}

/* Poseben bleščeči efekt za green-safe logotip */
.green-safe-logo.shine-effect::before {
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 255, 0, 0.3) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(0, 255, 0, 0.3) 60%,
        transparent 100%
    );
    animation: shineGreen 2.5s infinite;
}

@keyframes shineGreen {
    0% {
        transform: rotate(45deg) translateY(-100%) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateY(100%) translateX(100%);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatRotated {
    0% {
        transform: rotate(-25deg) translateY(0px);
    }
    50% {
        transform: rotate(-25deg) translateY(-10px);
    }
    100% {
        transform: rotate(-25deg) translateY(0px);
    }
}

@media (max-width: 768px) {
    .zavod-logo {
        width: 154px;
        bottom: 30px;
        left: 10px;
    }
    
    .slovenia-logo {
        width: 140px;
        bottom: 15px;
        right: 10px;
    }
    
    .green-safe-logo {
        width: 120px;
        top: 100px;
        right: 10px;
    }
}

/* Dodatne prilagoditve za manjše mobilne naprave */
@media (max-width: 480px) {
    .green-safe-logo {
        width: 80px;
        top: 90px;
        right: 8px;
    }
}

/* Prilagoditve za zelo majhne zaslone */
@media (max-width: 360px) {
    .green-safe-logo {
        width: 60px;
        top: 80px;
        right: 5px;
    }
}

/* Services Menu Buttons */
.services-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    justify-content: center;
}

.services-menu > div {
    flex: 0 1 400px;
}

.services-slides {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-slide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: white;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.service-slide.active {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.service-slide-content {
    padding: 2rem;
}

.service-slide-content img {
    max-width: 300px;
    height: auto;
    margin: 1rem auto;
    display: block;
}

.service-slide-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gold-gradient);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        transparent 60%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-cta:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .services-menu {
        flex-direction: column;
        margin: 2rem 1rem;
        gap: 1rem;
    }
    
    .services-menu > div {
        flex: 1;
    }
    
    .services-slides {
        padding: 0;
    }
    
    .service-slide-content {
        padding: 1.5rem;
    }
    
    .service-slide-content img {
        max-width: 100%;
    }
}

.service-menu-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(45deg, #1a365d, #2c5282, #d4af37, #f1c40f, #1a365d);
    background-size: 300% 300%;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    animation: gradientShift 4s ease infinite;
}

.service-menu-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.service-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Odstranim prejšnji stil za fiksni gumb */
.contact-info-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
    padding-right: 5%;
}

.contact-info-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #d4af37, #f1c40f, #d4af37, #f6e27a, #d4af37);
    background-size: 300% 300%;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

.contact-info-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.contact-info-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .contact-info-container {
        justify-content: center;
        padding-right: 0;
    }
    
    .contact-info-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.footer-left {
    text-align: left;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-right #herq-promo {
    transform: scaleX(1.2);
    transform-origin: right center;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-left {
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-right #herq-promo {
        transform: scaleX(1.1);
        transform-origin: center center;
    }

    .legal-links {
        align-items: center;
    }
}

/* AdSense Container Styles */
.adsense-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
    background: transparent;
    overflow: hidden;
}

.adsense-services {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.adsense-reviews {
    margin-top: 3rem;
    margin-bottom: 3rem;
    background: var(--light-bg);
}

.adsense-contact {
    margin-top: 3rem;
    margin-bottom: 0;
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .adsense-container {
        margin: 1.5rem auto;
        padding: 0.5rem;
    }
}

/* Notifications Section */
.notifications-section {
    padding: 2rem 5%;
    background: var(--light-bg);
}

.notifications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.notifications-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notification-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.notification-item p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.notification-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.edit-notification-btn {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edit-notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.no-notifications {
    text-align: center;
    color: #666;
    font-style: italic;
}

.error-message {
    text-align: center;
    color: #dc3545;
    font-weight: 500;
} 

/* Herq Certificate Section */
.herq-certificate {
    padding: 3rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

@media (max-width: 768px) {
    .herq-certificate {
        padding: 2rem 5%;
    }
} 