/* ==========================================
   FOTÓS PORTFÓLIÓ - FEHÉR, SZÜRKE, KÉK
   Modern, Optimized Design
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0097b2; /* gombok, linkek, kiemelések */
    --dark: #1a1a1a;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #ebebeb;
    --gray: #cccccc;
    --gray-dark: #666666;
    --text: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================
   NAVIGATION
   ================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--dark);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-style: italic;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar .social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.navbar .social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar .social-icons a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 25px;
        transition: left 0.4s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .navbar-content {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #333;
        font-size: 0.8rem;
    }

    .nav-social {
        display: none;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    padding: 120px 0 80px;
    position: relative;
    margin-top: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .highlight {
    color: var(--white);
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn-hero:hover {
    background: transparent;
    color: var(--primary);
}

.btn-hero.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-hero.secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 500 / 333;
    object-fit: cover;
    display: block;
    margin-left: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    position: absolute;
    bottom: 50px;
    left: -50px;
    background: var(--primary);
    color: var(--white);
    padding: 30px 40px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 151, 178, 0.3);
    border-radius: 5px;
}

.hero-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--white);
}

.hero-badge p {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}


.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 64, 64, 0.15);
    background: var(--primary);
}

.service-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary) !important;
}

.service-card:hover .service-title {
    color: var(--white) !important;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card:hover .service-description {
    color: var(--white);
}

.service-price-wrapper {
    margin: 20px 0 25px 0;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 5px;
}

.service-card:hover .service-price-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-currency {
    color: #999;
    font-size: 0.9rem;
}

.price-asterisk {
    color: var(--primary);
    font-size: 1rem;
    margin-left: 5px;
    font-weight: 700;
}

.service-card:hover .price-amount,
.service-card:hover .price-currency,
.service-card:hover .price-asterisk {
    color: var(--white);
}

.service-duration {
    font-size: 0.9rem;
    color: #999;
}

.service-card:hover .service-duration {
    color: var(--white);
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--primary);
    align-self: center;
}

.service-btn:hover {
    background: transparent;
    color: var(--primary);
}

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

.services-footer {
    text-align: center;
    margin-bottom: 60px;
}

.services-more-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.services-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s;
}

.services-all-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.services-all-btn i {
    margin-left: 8px;
}

.price-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-note p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.price-note .asterisk {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 5px;
}

.price-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.price-note a:hover {
    text-decoration: underline;
}

/* ==========================================
   ALL SERVICES SECTION
   ========================================== */

.all-services-section {
    background: var(--gray-light);
    padding: 100px 0;
    min-height: 100vh;
}

.all-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.all-services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text);
}

.all-services-header p {
    font-size: 1.1rem;
    color: #666;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.all-service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.all-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 64, 64, 0.12);
    background: var(--primary);
}

.all-service-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 15px;
}

.all-service-card:hover .all-service-icon {
    color: var(--white);
}

.all-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary) !important;
}

.all-service-card:hover .all-service-title {
    color: var(--white) !important;
}

.all-service-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.all-service-card:hover .all-service-description {
    color: var(--white);
}

.all-service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 15px 0 8px 0;
    padding: 10px;
    background: var(--gray-light);
    border-radius: 5px;
}

.all-service-card:hover .all-service-price {
    background: rgba(255, 255, 255, 0.2);
}

.all-service-price .price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.all-service-price .price-currency {
    color: #999;
    font-size: 0.85rem;
}

.all-service-price .price-asterisk {
    color: var(--primary);
    font-size: 0.9rem;
    margin-left: 5px;
    font-weight: 700;
}

.all-service-card:hover .all-service-price .price-amount,
.all-service-card:hover .all-service-price .price-currency,
.all-service-card:hover .all-service-price .price-asterisk {
    color: var(--white);
}

.all-service-duration {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.all-service-card:hover .all-service-duration {
    color: var(--white);
}

.all-service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--primary);
    align-self: center;
}

.all-service-btn:hover {
    background: transparent;
    color: var(--primary);
}

.all-service-card:hover .all-service-btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.all-services-footer {
    text-align: center;
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--primary);
}

.all-services-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.all-services-note p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.all-services-note .asterisk {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 5px;
}

.all-services-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.all-services-note a:hover {
    text-decoration: underline;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background: linear-gradient(135deg, var(--primary) 0%, #007a8c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 500 / 333;
    object-fit: cover;
    display: block;
    margin-left: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.about-content {
    color: var(--white);
}

.about-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #ebebeb;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .btn-hero {
    margin-top: 20px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.about-content .btn-hero:hover {
    background: transparent;
    color: var(--white);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonial-section-white {
    background: var(--white);
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #666;
}

.testimonial-grid-white {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-image {
    position: relative;
}

.testimonial-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.testimonial-content-white {
    color: var(--text);
}

.testimonial-quote-white {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
    border-left: 5px solid var(--primary);
    padding-left: 25px;
    font-weight: 500;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--text);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 15px 0;
}

.testimonial-stars-white {
    display: flex;
    gap: 5px;
    font-size: 1.2rem;
}

.testimonial-stars-white i {
    color: var(--primary);
}

.testimonial-stars-white .bi-star {
    color: #ddd;
}

/* ==========================================
   PORTFOLIO SECTION - CLEAN
   ========================================== */

#portfolio,
.portfolio-section {
    background: var(--dark);
    padding: 100px 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-header .section-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.portfolio-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    color: #ccc;
    border: 2px solid #555;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 151, 178, 0.3);
}

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

.portfolio-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 151, 178, 0.25);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.2);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    border-top: 3px solid #0097b2;
}

footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #0097b2;
}

footer p, footer a {
    font-size: 0.95rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #0097b2;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 60px;
    }
    .hero .container {
        gap: 40px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-image img {
        max-width: 400px;
    }
    .about-grid,
    .testimonial-grid-white {
        gap: 40px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 0 20px;
    }
    .nav-menu {
        gap: 15px;
        font-size: 0.8rem;
    }
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    .hero-image img {
        max-width: 100%;
    }
    .hero-badge {
        bottom: 20px;
        left: -30px;
        padding: 20px 30px;
    }
    .hero-badge h3 {
        font-size: 1.8rem;
    }
    .hero-badge p {
        font-size: 0.75rem;
    }
    .services-section,
    .all-services-section,
    .about-section,
    .testimonial-section-white {
        padding: 80px 0;
    }
    .services-header h2,
    .all-services-header h2,
    .testimonials-header h2 {
        font-size: 1.8rem;
    }
    .services-grid,
    .all-services-grid {
        gap: 30px;
        margin-bottom: 40px;
    }
    .service-card,
    .all-service-card {
        padding: 30px;
    }
    .service-btn,
    .all-service-btn {
        width: 100%;
        padding: 14px 20px;
    }
    .services-footer {
        margin-bottom: 40px;
    }
    .services-all-btn,
    .back-btn {
        width: 100%;
        padding: 14px 20px;
    }
    .about-grid,
    .testimonial-grid-white {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .testimonial-image img {
        max-width: 300px;
    }
    .testimonial-quote-white {
        font-size: 1.1rem;
        padding-left: 20px;
        border-left: 3px solid #0097b2;
    }
    .price-note,
    .all-services-note {
        padding: 20px;
    }
    .price-note p,
    .all-services-note p {
        font-size: 0.85rem;
    }
    #portfolio,
    .portfolio-section {
        padding: 80px 0;
    }
    .portfolio-header .section-title {
        font-size: 1.8rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .navbar-content {
        padding: 0 20px;
    }
    .nav-menu {
        gap: 10px;
        font-size: 0.75rem;
    }
    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .hero {
        padding: 60px 0 40px;
    }
    .hero .container {
        gap: 30px;
    }
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .hero-title .highlight {
        display: inline;
    }
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .hero-buttons {
        gap: 10px;
    }
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    .hero-image img {
        aspect-ratio: auto;
    }
    .hero-badge {
        display: none;
    }
    .services-section,
    .all-services-section,
    .about-section,
    .testimonial-section-white {
        padding: 60px 0;
    }
    .services-header h2,
    .all-services-header h2,
    .testimonials-header h2 {
        font-size: 1.5rem;
    }
    .services-header p,
    .all-services-header p,
    .testimonials-header p {
        font-size: 0.95rem;
    }
    .services-grid {
        gap: 20px;
    }
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-card,
    .all-service-card {
        padding: 20px;
    }
    .service-icon {
        font-size: 50px;
    }
    .all-service-icon {
        font-size: 40px;
    }
    .service-title {
        font-size: 1.2rem;
    }
    .all-service-title {
        font-size: 1.1rem;
    }
    .service-price-wrapper,
    .all-service-price {
        padding: 12px;
        margin: 15px 0 20px 0;
    }
    .price-amount {
        font-size: 1.1rem;
    }
    .all-service-price .price-amount {
        font-size: 1rem;
    }
    .service-btn,
    .all-service-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    .services-all-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    .back-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .about-content h2 {
        font-size: 1.5rem;
    }
    .about-content p {
        font-size: 0.9rem;
    }
    .testimonial-grid-white {
        gap: 30px;
    }
    .testimonial-image img {
        max-width: 250px;
    }
    .testimonial-quote-white {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .testimonial-author h4 {
        font-size: 0.95rem;
    }
    .testimonial-author p {
        font-size: 0.85rem;
    }
    .price-note,
    .all-services-note {
        padding: 15px;
        margin-top: 30px;
    }
    .price-note p,
    .all-services-note p {
        font-size: 0.8rem;
    }
    footer {
        padding: 40px 0 20px;
    }
    footer h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    footer p, footer a {
        font-size: 0.9rem;
    }
    #portfolio,
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-header .section-title {
        font-size: 1.5rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: #ffffff;
    padding: 100px 0;
}

.contact-section .section-title {
    color: #0097b2;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    color: #333333;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
}

.contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ebebeb;
    border-radius: 10px;
    border-left: 4px solid #0097b2;
}

.contact-item i {
    font-size: 2rem;
    color: #0097b2;
    min-width: 50px;
}

.contact-item h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
}

.contact-item a {
    color: #0097b2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: #0097b2;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    color: #333333;
    background: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0097b2;
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.1);
}

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

.btn-contact {
    padding: 14px 40px;
    background: #0097b2;
    color: #ffffff;
    border: 2px solid #0097b2;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-contact:hover {
    background: transparent;
    color: #0097b2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 151, 178, 0.3);
}

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

.alert {
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    animation: slideIn 0.3s ease;
    border: 2px solid #0097b2;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    .btn-contact {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-section .section-title {
        font-size: 1.5rem;
    }
    .contact-info h3 {
        font-size: 1.3rem;
    }
    .contact-item {
        padding: 15px;
        gap: 15px;
    }
    .contact-item i {
        font-size: 1.5rem;
    }
    .btn-contact {
        width: 100%;
    }
}

/* Logo */
.navbar .logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    max-width: 280px;
    transition: all 0.3s ease;
}

.navbar .logo-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.navbar .logo {
    font-size: 24px;
    font-weight: 700;
    color: #0097b2;
    display: flex;
    align-items: center;
    height: 60px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar.scrolled .logo-img {
    height: 50px;
    max-width: 240px;
}

.navbar.scrolled .logo-img img {
    max-height: 50px;
}

.navbar.scrolled .logo {
    height: 50px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .navbar .logo-img {
        height: 50px;
        max-width: 200px;
    }
    .navbar .logo-img img {
        max-height: 50px;
    }
    .navbar .logo {
        height: 50px;
        font-size: 18px;
    }
}

/* ========================================
   MOBILE MENU - TELJES FIX
   ======================================== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }
    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 0;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        color: #ccc;
        text-decoration: none;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
        border: none;
    }
    .nav-menu .nav-link::after {
        display: none;
    }
    .nav-menu .nav-link:active,
    .nav-menu .nav-link:hover {
        background: rgba(0, 151, 178, 0.1);
        color: #0097b2;
        padding-left: 25px;
    }
    .user-dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .user-dropdown .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }
    .user-dropdown-menu {
        display: none;
        position: static;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        margin: 0;
        z-index: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .user-dropdown-menu.show {
        display: block;
        max-height: 500px;
    }
    .user-dropdown-menu a {
        padding: 12px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.8rem;
        color: #aaa;
    }
    .user-dropdown-menu a:hover {
        background: rgba(0, 151, 178, 0.1);
        color: #0097b2;
        padding-left: 35px;
    }
    .navbar .social-icons {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        padding: 20px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    .navbar .social-icons a {
        color: #ccc;
        font-size: 1.3rem;
        transition: color 0.2s ease;
    }
    .navbar .social-icons a:hover {
        color: #0097b2;
    }
}

/* ==================================================
   EXTRA SMALL DEVICES
   ================================================== */
@media (max-width: 480px) {
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 20px 0;
    }
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu .nav-link {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    .user-dropdown-menu a {
        padding: 10px 25px;
        font-size: 0.75rem;
    }
    .navbar .social-icons {
        padding: 15px 15px;
        gap: 15px;
    }
}

/* PROFIL DROPDOWN - FIX */
.user-dropdown {
    position: relative;
    list-style: none;
}

.user-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px !important;
}

.user-dropdown .nav-link i:last-child {
    transition: transform 0.3s ease;
}

.user-dropdown:hover .nav-link i:last-child {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 220px;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown:hover .user-dropdown-menu {
    display: block;
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-dropdown-menu a:last-child {
    border-bottom: none;
}

.user-dropdown-menu a:hover {
    background: rgba(0, 151, 178, 0.1);
    color: #0097b2;
    padding-left: 20px;
}

.user-dropdown-menu a i {
    width: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .user-dropdown-menu {
        position: fixed;
        top: auto;
        right: auto;
        left: 0;
        width: 100%;
        border-radius: 0;
        margin-top: 0;
    }
}

/* PROFIL DROPDOWN */
.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 220px;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-menu.show {
    display: block;
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-dropdown-menu a:last-child {
    border-bottom: none;
}

.user-dropdown-menu a:hover {
    background: rgba(0, 151, 178, 0.1);
    color: #0097b2;
    padding-left: 20px;
}

#testimonialModal {
    display: none !important;
}

#testimonialModal[style*="display: flex"] {
    display: flex !important;
}

#testimonialModal input,
#testimonialModal textarea {
    font-size: 1rem;
}
