/* ================================
   FMV Monaco - CSS Principal
   Font simplu: Inter
   ================================ */

/* Variables */
:root {
    --color-primary: #CE1126;
    --color-primary-dark: #a80d1e;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-500: #6c757d;
    --color-gray-700: #495057;
    --color-gray-900: #212529;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-900);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-700);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 55px;
    width: auto;
    max-height: 55px;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.brand-fmv {
    color: var(--color-black);
}

.brand-monaco {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-700);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-gray-100);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--color-gray-200);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 140px;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--color-gray-700);
}

.lang-option .flag-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", sans-serif;
    font-size: 1.2rem;
    line-height: 1;
}

.lang-option:hover,
.lang-option.active {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: var(--transition);
}

/* ================================
   Hero Slider
   ================================ */
/* Hero Single Image - Full Width */
.hero-single {
    position: relative;
    margin-top: 70px;
    width: 100%;
    padding: 30px 40px;
    background: var(--color-gray-100);
}

.hero-image-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================================
   About Section - Cine suntem?
   ================================ */
.about {
    padding: 60px 0 80px;
    background: var(--color-white);
}

.about-main-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.about-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 15px auto 0;
}

.about-content-new {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-stats-inline {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.stat-box {
    text-align: center;
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   Services Section
   ================================ */
.services {
    padding: 80px 0;
    background: var(--color-gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 15px;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto 20px;
}

.services-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: 50%;
    color: var(--color-primary);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-black);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ================================
   Advantages Section - Accordion Cascade
   ================================ */
.advantages {
    padding: 80px 0;
    background: var(--color-white);
}

/* Accordion Header - clickable */
.accordion-header {
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-arrow {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 15px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-arrow.rotated {
    transform: rotate(180deg);
}

/* Accordion Content */
.advantages-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease;
    opacity: 1;
}

.advantages-content.collapsed {
    max-height: 0;
    opacity: 0;
}

/* Cascade Animation */
.cascade-item {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: calc(var(--delay) * 0.1s);
}

.advantages-content:not(.collapsed) .cascade-item {
    opacity: 1;
    transform: translateY(0);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-top: 20px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-gray-100);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-black);
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    color: var(--color-white);
}

.advantage-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-black);
}

.advantage-desc {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* ================================
   Contact Section
   ================================ */
.contact {
    padding: 60px 0;
    background: var(--color-gray-100);
}

/* Contact Info Compact - pe o linie */
.contact-info-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray-700);
}

.contact-info-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info-item a {
    color: var(--color-gray-700);
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

/* Google Maps */
.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--color-black);
    padding: 50px 0;
    color: var(--color-white);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: var(--color-gray-300);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-address {
    color: var(--color-gray-300);
}

.footer-rci {
    font-size: 0.85rem;
}

.footer-copyright {
    font-size: 0.85rem;
    margin-top: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
}

.footer-phone:hover {
    color: var(--color-primary);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: var(--transition);
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link:first-child:hover {
    background: #25D366;
}

.footer-social-link:last-child:hover {
    background: #0A66C2;
}

/* ================================
   Back to Top Button
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* ================================
   Responsive Design - Mobile First
   ================================ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--color-white);
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-gray-200);
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .lang-switcher {
        margin-right: 10px;
    }
    
    /* Navbar Brand Mobile */
    .brand-name {
        font-size: 1.2rem;
    }

    /* Hero Single Tablet */
    .hero-single {
        margin-top: 60px;
        padding: 20px;
    }
    
    .hero-image-container {
        border-radius: 12px;
    }
    
    .hero-image {
        aspect-ratio: 16 / 9;
    }

    /* About Mobile */
    .about {
        padding: 50px 0;
    }
    
    .about-main-title {
        font-size: 1.6rem;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .about-stats-inline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    /* Services Mobile */
    .services {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Advantages Mobile */
    .advantages {
        padding: 50px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 20px 10px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer-logo {
        width: 70px;
    }
    
    .footer-company-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navbar Mobile Fix */
    .nav-logo img {
        height: 35px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .lang-switcher {
        margin-left: 5px;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .lang-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .lang-dropdown {
        right: -10px;
        min-width: 130px;
    }

    /* Hero Single Mobile */
    .hero-single {
        margin-top: 55px;
        padding: 15px;
    }
    
    .hero-image-container {
        border-radius: 10px;
    }
    
    /* Stats Mobile - better spacing */
    .about-stats-inline {
        gap: 20px;
        justify-content: space-around;
    }
    
    .stat-box {
        min-width: 80px;
    }
    
    .stat-box .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    /* Contact Mobile */
    .contact-info-compact {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        text-align: left;
    }
    
    .contact-info-item {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .contact-info-item span,
    .contact-info-item a {
        flex: 1;
        line-height: 1.4;
    }
    
    .contact-map iframe {
        height: 280px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Footer Mobile */
    .footer-address {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* ================================
   Animations
   ================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

/* ================================
   Gallery Trigger Button
   ================================ */
.gallery-trigger-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
}

.gallery-trigger-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.gallery-trigger-btn:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.gallery-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
}

.gallery-trigger-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.gallery-trigger-count {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    padding: 4px 10px;
    background: var(--color-gray-100);
    border-radius: 20px;
}

/* ================================
   Gallery Modal (Lightbox)
   ================================ */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--color-primary);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-image-container {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Gallery Loader/Spinner */
.gallery-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 5;
}

.gallery-loader.active {
    display: flex;
}

.gallery-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: gallerySpinnerRotate 0.8s linear infinite;
}

@keyframes gallerySpinnerRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gallery-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image.loaded {
    opacity: 1;
}

.gallery-counter {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
}

.gallery-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.gallery-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Gallery Modal Mobile */
@media (max-width: 768px) {
    .gallery-trigger-btn {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .gallery-trigger-icon {
        width: 38px;
        height: 38px;
    }
    
    .gallery-trigger-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-trigger-text {
        font-size: 0.9rem;
    }
    
    .gallery-trigger-count {
        font-size: 0.8rem;
    }
    
    .gallery-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .gallery-nav {
        width: 44px;
        height: 44px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-nav svg {
        width: 28px;
        height: 28px;
    }
    
    .gallery-image-container {
        max-width: 95%;
        max-height: 70%;
    }
    
    .gallery-counter {
        bottom: 70px;
        font-size: 0.9rem;
    }
    
    .gallery-dots {
        bottom: 25px;
        max-width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
}
