/* ====================================
   Global Reset & Variables
   ==================================== */

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

:root {
    --primary-color: #CE8C03;
    --secondary-color: #1a1a1a;
    --accent-gold: #EBB91A;
    --dark-gold: #CE8C03;
    --text-dark: #f5f5dc;
    --text-light: #c9c9c9;
    --bg-white: #000000;
    --bg-light: #0a0a0a;
    --bg-dark: #1a1a1a;
    --border-color: #3a3a3a;
    --shadow: 0 2px 8px rgba(206, 140, 3, 0.3);
    --shadow-hover: 0 4px 12px rgba(235, 185, 26, 0.4);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Marble Gold Gradient Effect */
.marble-gold-text {
    background: linear-gradient(135deg,
        #CE8C03 0%,
        #EBB91A 25%,
        #F5D576 35%,
        #CE8C03 50%,
        #EBB91A 65%,
        #D4A42E 75%,
        #CE8C03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    position: relative;
}

/* Add marble texture overlay */
.marble-gold-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 20%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Shining Gold Section Divider */
.gold-divider {
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #CE8C03 20%,
        #EBB91A 40%,
        #F5D576 50%,
        #EBB91A 60%,
        #CE8C03 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: goldShine 3s linear infinite;
    box-shadow: 0 0 15px rgba(235, 185, 26, 0.6),
                0 0 30px rgba(206, 140, 3, 0.4);
    margin: 0;
}

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

/* Alternative thicker shining divider for between major sections */
.gold-divider-thick {
    height: 5px;
    background: linear-gradient(90deg,
        transparent 0%,
        #CE8C03 15%,
        #EBB91A 35%,
        #F5D576 50%,
        #EBB91A 65%,
        #CE8C03 85%,
        transparent 100%);
    background-size: 200% 100%;
    animation: goldShine 2.5s linear infinite;
    box-shadow: 0 0 20px rgba(235, 185, 26, 0.7),
                0 0 40px rgba(206, 140, 3, 0.5),
                0 0 60px rgba(245, 213, 118, 0.3);
    margin: 0;
    position: relative;
}

.gold-divider-thick::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 213, 118, 0.5) 50%,
        transparent 100%);
    animation: goldShine 2s linear infinite reverse;
}

.gold-divider-thick::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 213, 118, 0.5) 50%,
        transparent 100%);
    animation: goldShine 2s linear infinite;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    /* Black Marble texture background with visible gold and white veining */
    background:
        /* White marble veins - main structure */
        linear-gradient(125deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.08) 47%, rgba(255, 255, 255, 0.12) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 53%, transparent 100%),
        linear-gradient(70deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.06) 37%, rgba(255, 255, 255, 0.1) 39%, rgba(255, 255, 255, 0.06) 41%, transparent 43%, transparent 100%),
        linear-gradient(200deg, transparent 0%, transparent 60%, rgba(255, 255, 255, 0.05) 62%, rgba(255, 255, 255, 0.08) 64%, rgba(255, 255, 255, 0.05) 66%, transparent 68%, transparent 100%),
        /* Gold marble veins - accent veining */
        linear-gradient(160deg, transparent 0%, transparent 25%, rgba(206, 140, 3, 0.1) 27%, rgba(235, 185, 26, 0.15) 29%, rgba(206, 140, 3, 0.1) 31%, transparent 33%, transparent 100%),
        linear-gradient(40deg, transparent 0%, transparent 70%, rgba(235, 185, 26, 0.08) 72%, rgba(206, 140, 3, 0.12) 74%, rgba(235, 185, 26, 0.08) 76%, transparent 78%, transparent 100%),
        linear-gradient(95deg, transparent 0%, transparent 52%, rgba(206, 140, 3, 0.06) 54%, rgba(235, 185, 26, 0.09) 56%, rgba(206, 140, 3, 0.06) 58%, transparent 60%, transparent 100%),
        /* Subtle organic marble clouds */
        radial-gradient(ellipse at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(235, 185, 26, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 45% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 35%, rgba(206, 140, 3, 0.05) 0%, transparent 50%),
        /* Deep black base */
        #000000;
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        80% 80%,
        90% 90%,
        85% 85%,
        75% 75%,
        100% 100%;
    background-attachment: fixed;
}

/* Fine marble grain texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    background-image:
        /* Fine grain pattern */
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 2px),
        /* Gold specks */
        repeating-linear-gradient(45deg, rgba(206, 140, 3, 0.015) 0px, transparent 3px, transparent 6px),
        /* Subtle noise */
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.01) 0px, transparent 2px, transparent 4px);
    background-size: 2px 2px, 2px 2px, 8px 8px, 5px 5px;
    pointer-events: none;
}

/* Prevent body scroll when burger menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Ensure all main content appears above marble texture overlay */
main, header, footer, section {
    position: relative;
    z-index: 1;
}

/* ====================================
   Language Switcher
   ==================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    margin-right: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lang-btn {
    background: rgba(58, 58, 58, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: 8px;
}

.lang-btn.active {
    background: linear-gradient(135deg, #CE8C03, #EBB91A);
    color: #000000;
    border-color: #EBB91A;
    box-shadow: 0 2px 8px rgba(206, 140, 3, 0.5);
}

.lang-btn:hover {
    color: var(--text-dark);
    background: rgba(58, 58, 58, 0.9);
    border-color: var(--primary-color);
}

.lang-separator {
    color: var(--border-color);
    font-size: 14px;
}

/* ====================================
   Floating Instagram Button
   ==================================== */

.instagram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.instagram-float svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 2px 3px rgba(206, 140, 3, 0.3));
}

/* ====================================
   Header / Navigation
   ==================================== */

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 8px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.language-switcher {
    position: absolute;
    left: 20px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ====================================
   Burger Menu Toggle Button
   ==================================== */

.burger-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 20px;
    z-index: 1001;
    transition: var(--transition);
}

.burger-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu-toggle:hover span {
    background: var(--primary-color);
}

/* Animated X transformation */
.burger-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.burger-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ====================================
   Burger Menu Overlay
   ==================================== */

.burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.burger-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================================
   Burger Menu Panel
   ==================================== */

.burger-menu-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding: 100px 30px 30px;
}

.burger-menu-panel.active {
    right: 0;
}

/* Hide default nav menu (now in burger panel) */
.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    padding: 12px 0;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

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

.nav-link.active::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

/* GlamBOT "NOWOŚĆ" badge in vertical menu */
.nav-link-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Contact info in burger menu */
.nav-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-contact-item:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.nav-contact-item svg {
    flex-shrink: 0;
}

/* ====================================
   Hero Section
   ==================================== */

.hero {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('/static/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--primary-color);
    padding: 70px 20px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    background: linear-gradient(135deg,
        #CE8C03 0%,
        #EBB91A 25%,
        #F5D576 35%,
        #CE8C03 50%,
        #EBB91A 65%,
        #D4A42E 75%,
        #CE8C03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    filter: drop-shadow(0 2px 4px rgba(206, 140, 3, 0.3));
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg,
        #CE8C03 0%,
        #EBB91A 50%,
        #CE8C03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   Section Titles
   ==================================== */

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    background: linear-gradient(135deg,
        #CE8C03 0%,
        #EBB91A 25%,
        #F5D576 35%,
        #CE8C03 50%,
        #EBB91A 65%,
        #D4A42E 75%,
        #CE8C03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    filter: drop-shadow(0 2px 4px rgba(206, 140, 3, 0.3));
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    margin: 16px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(206, 140, 3, 0.3);
}

/* ====================================
   Portfolio / Gallery (Instagram Style)
   ==================================== */

.portfolio {
    padding: 35px 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Removed hover effect - overlay no longer shows on hover */

.gallery-overlay-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 90%;
}

/* Gallery item cursor to indicate clickable */
.gallery-item {
    cursor: pointer;
}

/* ====================================
   Video Lightbox / Modal
   ==================================== */

.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -50px;
        font-size: 32px;
    }
}

.no-media {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    padding: 40px;
    grid-column: 1 / -1;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
}

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

.load-more-btn.hidden {
    display: none;
}

/* ====================================
   About Section
   ==================================== */

.about {
    padding: 35px 20px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-content .highlight {
    font-weight: 700;
    color: var(--accent-gold);
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ====================================
   Phone Mockup
   ==================================== */

.phone-mockup {
    flex-shrink: 0;
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    transform: rotateY(-5deg);
    transition: transform 0.3s ease;
}

.phone-frame:hover {
    transform: rotateY(0deg);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    background: white;
    border-radius: 20px;
    padding: 16px;
    margin: 16px 12px;
    height: calc(100% - 32px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.app-preview::-webkit-scrollbar {
    width: 4px;
}

.app-preview::-webkit-scrollbar-track {
    background: transparent;
}

.app-preview::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.app-preview::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

.app-logo {
    text-align: center;
    margin-bottom: 12px;
}

.app-logo img {
    width: 100%;
    height: auto;
    max-width: 160px;
}

.app-title {
    color: #333;
    text-align: center;
    margin-bottom: 6px;
    font-size: 19px;
    font-weight: 600;
}

.app-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 14px;
    font-size: 11px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    background: var(--primary-color);
    color: #000000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    line-height: 1;
    height: 42px;
    box-sizing: border-box;
}

.app-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.app-btn.gallery {
    background: var(--dark-gold);
    flex: 1;
    margin-top: 0px;
    margin-bottom: 0px;
}

.app-btn-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.app-counter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    font-size: 12px;
    color: #000000;
    font-weight: 600;
    line-height: 1;
    height: 42px;
    box-sizing: border-box;
}

.app-btn.instagram {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    color: #000000;
}

.app-btn span:first-child {
    font-size: 14px;
}

.app-preview-section {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.summary-num {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    line-height: 1;
}

.summary-label {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-photo-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.photo-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-thumb svg {
    display: block;
}

.photo-info {
    flex: 1;
    min-width: 0;
}

.photo-name {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copies-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.copies-label {
    font-size: 10px;
    color: #666;
}

.copies-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
}

.app-send-btn {
    background: var(--primary-color);
    color: #000000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: default;
    transition: all 0.3s ease;
}

.app-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

/* ====================================
   Quote Form Section
   ==================================== */

.quote-section {
    padding: 35px 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: #000000;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(235, 185, 26, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ====================================
   Contact Section
   ==================================== */

.contact-section {
    padding: 35px 20px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px 20px 8px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p,
.contact-item a {
    font-size: 18px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ====================================
   Footer
   ==================================== */

.footer {
    background: #000000;
    color: var(--primary-color);
    padding: 32px 20px;
    text-align: center;
    border-top: 2px solid var(--border-color);
}

.footer p {
    font-size: 14px;
    color: var(--text-light);
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .language-switcher {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 60px;
    }

    .hero {
        padding-left: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 12px;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-content p {
        font-size: 16px;
        text-align: justify;
    }

    .phone-mockup {
        align-self: center;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
        transform: rotateY(0deg);
    }

    .quote-form {
        padding: 24px;
    }

    .instagram-float {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 20px;
    }

    .instagram-float svg {
        width: 30px;
        height: 30px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
    }

    .lang-btn {
        font-size: 12px;
    }

    .contact-item a,
    .contact-item p {
        font-size: 16px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 25px 20px;
    }

    .hero-title {
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }

    .app-preview {
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .app-logo {
        margin-bottom: 8px;
    }

    .app-logo img {
        max-width: 130px;
    }

    .app-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .app-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .app-buttons {
        gap: 8px;
    }

    .app-btn {
        padding: 10px;
        font-size: 11px;
        height: 36px;
    }

    .app-btn span:first-child {
        font-size: 13px;
    }

    .app-btn-row {
        gap: 8px;
    }

    .app-counter {
        min-width: 52px;
        padding: 10px;
        font-size: 11px;
        height: 36px;
    }

    .app-preview-section {
        margin-top: 10px;
        gap: 8px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .app-summary {
        padding: 8px 10px;
    }

    .summary-num {
        font-size: 14px;
    }

    .summary-label {
        font-size: 8px;
        margin-top: 2px;
    }

    .app-photo-item {
        padding: 8px;
        gap: 8px;
    }

    .photo-thumb {
        width: 42px;
        height: 42px;
    }

    .photo-name {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .copies-label {
        font-size: 9px;
    }

    .copies-value {
        font-size: 10px;
    }

    .app-send-btn {
        padding: 10px;
        font-size: 11px;
    }
}