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

:root {
    --primary-color: #19559f;
    --secondary-color: #000000;
    --text-color: #333333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --hover-blue: #1465b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.hero-video-container{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 120px;
    background: url('/images/pdrorig.jpg') no-repeat center center;
    background-size: cover;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* taie video frumos fără deformare */
    display: block;
}

/* Video-ul pe fundal */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Mesajul din centru */
.video-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px 30px;
    background: rgba(0,0,0,0.35); /* semitransparent pentru vizibilitate */
    border-radius: 10px;
}

.video-message h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-message p {
    font-size: 1.2rem;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu ul li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-menu .mobile-language {
    padding: 15px 20px;
}

.mobile-menu .mobile-language .lang-select {
    width: 100%;
    padding: 10px;
}

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

/* Slideshow Styles */
.hero-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInDown 1s ease-out;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slide-prev:hover,
.slide-next:hover {
    background: rgba(25, 85, 159, 0.8);
}

.slide-prev {
    left: 20px;
    border-radius: 0 5px 5px 0;
}

.slide-next {
    right: 20px;
    border-radius: 5px 0 0 5px;
}

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover,
.dot.active {
    background: white;
    transform: scale(1.2);
}

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

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(25, 85, 159, 0.3);
}

.btn-primary:hover {
    background: var(--hover-blue);
    border-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 85, 159, 0.4);
}

.services {
    padding: 80px 20px;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(25, 85, 159, 0.15);
    border-color: var(--primary-color);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.btn-service-detail {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-service-detail:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Stiluri pentru descriere serviciu cu HTML */
.service-description {
    margin-bottom: 15px;
}

.service-description p {
    margin: 0;
}

.service-description strong {
    font-weight: 600;
}

.service-description em {
    font-style: italic;
}

.service-description ul,
.service-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.service-description li {
    margin-bottom: 5px;
}

.about {
    padding: 80px 20px;
}

.contact {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

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

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Mobile: stack form fields vertically */
@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer-content {
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--white);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo h3 span {
    color: var(--white);
}

.footer-description {
    color: var(--white);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--white);
}

.footer-contact .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-schedule {
    color: var(--white);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--white);
    font-size: 0.95rem;
}

.alert {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-weight: 500;
    animation: slideInDown 0.5s ease-out;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    box-shadow: 0 2px 10px rgba(21, 87, 36, 0.1);
}

.language-selector {
    position: relative;
}

.lang-select {
    padding: 8px 12px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: white;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-select:hover {
    background: var(--primary-color);
    color: white;
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

@media (max-width: 768px) {

    .video-section {
        height: 40vh;
    }
    .video-message{
        min-width: 350px;
    }
    .video-message h1 {
        font-size: 1.5rem;
    }
    .video-message p {
        font-size: 1rem;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop menu */
    .nav-menu {
        display: none;
    }

    /* Show mobile menu */
    .mobile-menu {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .slideshow-container {
        height: 400px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-prev,
    .slide-next {
        padding: 10px 15px;
        font-size: 18px;
    }
}


/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 150px 20px 80px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(25, 85, 159, 0.7) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

section.contact-content {
    padding: 80px 20px;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.contact-form-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 85, 159, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 14px 35px;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.contact-form .g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.contact-form-section .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-section .error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.contact-info-section {
    display: block;
}

.contact-details {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.contact-details h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #e8f0f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 85, 159, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--hover-blue);
    text-decoration: underline;
}

/* Contact Map Full Width Section */
.contact-map-fullwidth {
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
    background: var(--light-bg);
}

.contact-map-fullwidth .map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.contact-map-fullwidth iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
}

.contact-map-fullwidth .map-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.contact-map-fullwidth .map-fallback h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-map-fullwidth .map-fallback p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-map-fullwidth .map-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}



@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section,
    .contact-details {
        padding: 1.5rem;
    }

    .contact-form-section h2,
    .contact-details h2 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-form .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .contact-map {
        height: 300px;
    }

    .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-map-fullwidth {
        height: 350px;
    }
}

/* Services Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6f 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 150px 20px 80px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(25, 85, 159, 0.7) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.service-row:hover {
    box-shadow: 0 10px 30px rgba(25, 85, 159, 0.15);
    transform: translateY(-5px);
}

.service-row.image-left {
    flex-direction: row;
}

.service-row.image-right {
    flex-direction: row-reverse;
}

.service-image-container,
.service-content-container {
    flex: 1;
}

.service-image-container {
    position: relative;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-row:hover .service-image-container img {
    transform: scale(1.05);
}

.service-icon-large {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--primary-color);
}

.service-content-container {
    padding: 50px;
}

.service-content-container h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content-container .service-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-content-container .btn-service-detail {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.service-content-container .btn-service-detail:hover {
    background: var(--hover-blue);
    border-color: var(--hover-blue);
    transform: translateX(5px);
}

.no-services-message {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 1.3rem;
}

.no-services-message p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services-list {
        padding: 40px 20px;
    }

    .service-row,
    .service-row.image-left,
    .service-row.image-right {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 0;
    }

    .service-image-container img,
    .service-icon-large {
        height: 250px;
    }

    .service-icon-large {
        font-size: 5rem;
    }

    .service-content-container {
        padding: 30px 20px;
    }

    .service-content-container h2 {
        font-size: 1.6rem;
    }

    .service-content-container .service-description {
        font-size: 1rem;
    }

    .no-services-message {
        padding: 60px 20px;
        font-size: 1.1rem;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    animation: none;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.floating-btn.viber {
    background: linear-gradient(135deg, #7360f2 0%, #5a4fcf 100%);
}

.floating-btn.viber:hover {
    background: linear-gradient(135deg, #5a4fcf 0%, #4a3fb8 100%);
}

.floating-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.floating-btn.telegram:hover {
    background: linear-gradient(135deg, #006699 0%, #005580 100%);
}

.floating-btn.phone {
    background: linear-gradient(135deg, #19559f 0%, #0d3a6f 100%);
}

.floating-btn.phone:hover {
    background: linear-gradient(135deg, #0d3a6f 0%, #082847 100%);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    }
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Hide floating buttons on very small screens */
@media (max-width: 480px) {
    .floating-contact-buttons {
        right: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
