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

:root {
    --dark-brown: #2A1B1A;
    --dark-gray: #2C2C2C;
    --medium-gray: #3A3A3A;
    --gold: #D4AF37;
    --light-gold: #F4E4A6;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-hover: rgba(255, 255, 255, 0.12);
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-gray) 100%);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 80, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(80, 80, 80, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23333' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 24px;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: var(--dark-brown);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.nav-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--glass-shadow);
}

.nav-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.nav-btn {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--light-gold);
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
    min-width: 0;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 80px 15px;
    display: flex;
    align-items: center;
}

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

/* Hero Section */
#home {
    position: relative;
    overflow: hidden;
    padding: 60px 15px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 27, 26, 0.7) 0%, rgba(44, 44, 44, 0.7) 100%), url('images/fon.jpeg') center/cover;
    z-index: -2;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(3px);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5em;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--light-gold);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.4;
}

.hero-description {
    font-size: 1em;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
    padding: 0 10px;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 25px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 12px 20px;
}

.cta-button.outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Services Section */
#services {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: 60px 15px;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--glass-hover);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--gold);
    font-size: 1.8em;
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.3em;
    line-height: 1.3;
}

.service-card p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95em;
}

.service-price {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--light-gold);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1em;
}

/* Price Section */
.price-section {
    margin: 50px 0 40px 0;
}

.price-title {
    text-align: center;
    font-size: 2em;
    color: var(--gold);
    margin-bottom: 30px;
}

.price-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.price-image {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.price-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: white;
    padding: 8px;
    display: block;
}

/* Gallery Section */
.gallery-section {
    margin-top: 50px;
}

.gallery-title {
    text-align: center;
    font-size: 2em;
    color: var(--gold);
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.03);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-gold);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    text-align: center;
}

.photo-placeholder:hover {
    background: var(--glass-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.photo-placeholder i {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--gold);
}

.photo-placeholder span {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.3;
}

/* About Section */
#about {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-brown) 100%);
    padding: 60px 15px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.full-size-photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-item {
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-3px);
}

.photo-container {
    padding: 0;
    background: transparent;
}

.full-size-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    display: block;
}

.photo-caption {
    text-align: center;
    padding: 15px;
    color: var(--light-gold);
    font-size: 1.1em;
    font-weight: 500;
    border-top: 1px solid var(--glass-border);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.info-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.6em;
    text-align: center;
    line-height: 1.3;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.4;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Social Links - Round */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 25px 15px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.visitor-counter {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.visitor-counter:hover {
    opacity: 1;
}

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

.counter-number {
    font-size: 1.2em;
    color: var(--gold);
    font-weight: bold;
}

.counter-label {
    font-size: 0.7em;
    color: #999;
    margin-top: 2px;
}

.footer-info {
    color: #999;
    font-size: 0.85em;
    line-height: 1.4;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav {
        top: 25px;
        width: auto;
        max-width: none;
    }
    
    .nav-container {
        padding: 10px;
    }
    
    .nav-buttons {
        gap: 15px;
    }
    
    .nav-btn {
        padding: 15px 25px;
        font-size: 15px;
        flex: none;
        min-width: 100px;
    }
    
    .section {
        padding: 100px 30px;
    }
    
    #home {
        padding: 80px 30px;
    }
    
    .hero-title {
        font-size: 3.5em;
    }
    
    .hero-subtitle {
        font-size: 1.4em;
    }
    
    .hero-description {
        font-size: 1.1em;
        padding: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        flex-direction: row;
        gap: 40px;
    }
    
    .about-main {
        flex: 2;
    }
    
    .about-sidebar {
        flex: 1;
    }
    
    .full-size-image {
        max-height: 350px;
    }
    
    .visitor-counter {
        gap: 40px;
    }
    
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
    }
    
    .floating-call {
        bottom: 100px;
        right: 30px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav {
        top: 30px;
    }
    
    .nav-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .section {
        padding: 100px 20px;
    }
    
    .hero-title {
        font-size: 4em;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .price-images {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .about-content {
        grid-template-columns: 2fr 1fr;
        display: grid;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    .glass-card:hover {
        transform: translateY(-5px);
    }
    
    .full-size-image {
        max-height: 400px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .full-size-image {
        max-height: 450px;
    }
}

/* Small mobile fixes */
@media (max-width: 360px) {
    .nav-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-whatsapp {
        padding: 15px;
        border-radius: 50%;
    }
    
    .full-size-image {
        max-height: 250px;
    }
    
    .photo-caption {
        padding: 10px;
        font-size: 0.9em;
    }
    
    .visitor-counter {
        gap: 15px;
    }
}