 :root {
            --primary-color: #DCC9A3;
            --secondary-color: #333;
            --accent-color: #6c757d;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --gold-color: #D4AF37;
            --white-color: #fff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
a{
	color: #1F1F1F;
  font-weight: bold;
  text-decoration: none;
}
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        .container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: url('https://placehold.co/1200x600/e0e0e0/ffffff?text=Granite+Background') no-repeat center center;
            background-size: cover;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header-content {
            max-width: 1360px;
            margin: 0 auto;
        }

        .premium-badge {
            
            background-color: rgba(255, 193, 7, 0.1);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            border: 1px solid var(--primary-color);
			
text-align: center;
  width: 20%;
  display: flex;
  justify-content: center;
        }

        .logo {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--primary-color);
        }

        .tagline {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .subtitle {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 16px;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--dark-color);
            border: 1px solid var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #E7D9C6;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--dark-color);
            border: 1px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 193, 7, 0.1);
            transform: translateY(-2px);
        }

        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin: 20px 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .star {
            font-size: 20px;
        }

        .scroll-down {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* First Screen Photos */
        .first-screen-photos {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .photo-item {
            width: 300px;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .photo-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .photo-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Section Styles */
        section {
            padding: 50px 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: bold;
        }

        .section-title h2 span {
            color: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-color);
            margin-bottom: 40px;
            max-width: 1360px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about-content {
            text-align: center;
            max-width: 1360px;
            margin: 0 auto 40px;
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .feature-card {
            background-color: var(--white-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            width: 350px;
            text-align: center;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 193, 7, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 24px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--gray-color);
            font-size: 14px;
        }

        /* Services Section */
        .services-container {
            max-width: 1360px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .service-item {
            background-color: var(--white-color);
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid #eee;
            transition: var(--transition);
        }

        .service-item:hover {
            border-color: var(--primary-color);
            transform: translateX(5px);
        }

        .service-icon {
            width: 24px;
            height: 24px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            font-size: 12px;
        }

        .service-text {
            font-size: 16px;
        }

        .working-hours {
            background-color: var(--white-color);
            padding: 20px;
            border-radius: 8px;
            border: 2px solid var(--primary-color);
            margin-top: 30px;
            text-align: center;
            font-weight: bold;
            color: var(--dark-color);
        }

        .working-hours span {
            color: var(--primary-color);
        }

        /* Works Section */
        .works-section {
            position: relative;
        }

        .swiper-container {
            width: 100%;
            padding-top: 20px;
            padding-bottom: 50px;
        }

        .work-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .work-item:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .work-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .instagram-link {
            display: block;
            text-align: center;
            margin-top: 30px;
            color: var(--primary-color);
            font-weight: bold;
            text-decoration: underline;
        }

        /* Reviews Section */
        .reviews-section {
            position: relative;
        }

        .review-card {
            background-color: var(--white-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .review-rating {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
            display: flex;
        }

        .review-text {
            margin-bottom: 20px;
            color: var(--gray-color);
            font-style: italic;
            font-size: 16px;
            line-height: 1.6;
            flex: 1;
        }

        .review-author {
            font-weight: bold;
            font-size: 16px;
        }

        .quote-mark {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 40px;
            color: rgba(255, 193, 7, 0.1);
            z-index: 0;
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            transition: var(--transition);
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

        .swiper-pagination {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            text-align: center;
        }

        .swiper-pagination-bullet {
            background-color: var(--gray-color);
            opacity: 0.5;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--primary-color);
            opacity: 1;
        }

        /* Contacts Section */
        .contacts-container {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-item {
            background-color: var(--white-color);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .contact-icon {
            color: var(--primary-color);
            font-size: 24px;
            min-width: 30px;
        }

        .contact-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .contact-value {
            color: var(--gray-color);
        }

        .contact-map {
            flex: 1;
            min-width: 300px;
            height: 440px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .map-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .call-to-action {
            text-align: center;
            margin-top: 40px;
        }

        .btn-large {
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 8px;
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 40px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-title {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-text {
            color: #ddd;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
  align-content: center;
        }

        .social-icon {
            color: var(--primary-color);
            font-size: 24px;
            transition: var(--transition);
        }

        .social-icon:hover {
            color: var(--white-color);
            transform: scale(1.2);
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
			
			.premium-badge{
				width: 100%;
			}
            .header-content {
                padding: 0 20px;
            }

            .logo {
                font-size: 36px;
            }

            .tagline {
                font-size: 20px;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .features {
                flex-direction: column;
                align-items: center;
            }

            .feature-card {
                width: 100%;
                max-width: 400px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .work-image {
                height: 300px;
            }

            .first-screen-photos {
                flex-direction: column;
                align-items: center;
            }

            .photo-item {
                width: 100%;
                max-width: 300px;
            }

            .contacts-container {
                flex-direction: column;
            }

            .contact-info,
            .contact-map {
                width: 100%;
            }

            .footer-content {
                flex-direction: column;
            }

            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
        }

        /* Animation for scroll to top */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: var(--dark-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 1000;
        }

        .scroll-to-top:hover {
            background-color: #E7D9C6;
            transform: translateY(-5px);
        }

        .scroll-to-top.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Navigation Menu */
        .navbar {
            background-color: var(--white-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

        .nav-logo h1 {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
        }

        .nav-logo h1 span {
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-item {
            font-weight: bold;
            text-decoration: none;
            color: var(--dark-color);
            transition: var(--transition);
        }

        .nav-item:hover {
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--primary-color);
            font-weight: bold;
        }

        .nav-address {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--gray-color);
            font-size: 14px;
        }
		
		
		/* базово скрываем моб-выпадашку */
.nav-dropdown {
    display: none;
}

/* бургер скрыт на ПК */
.nav-toggle {
    display: none;
}

/* ===== МОБИЛКА ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px;
    }

    /* прячем старое меню/контакты на мобиле */
    .nav-container .nav-menu,
    .nav-container .nav-contact {
        display: none;
    }

    /* показываем бургер */
    .nav-toggle {
        display: block;
        margin-left: auto;
        width: 30px;
        height: 30px;
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--dark-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    /* анимируем бургер в крестик */
    .navbar.open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .navbar.open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .navbar.open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ВЫПАДАШКА */
    .nav-dropdown {
        display: block;
        max-height: 0;
        overflow: hidden;
        background-color: var(--white-color);
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* когда .navbar.open — раскрываем панель */
    .navbar.open .nav-dropdown {
        max-height: 400px; /* если пунктов будет больше — увеличь */
    }

    .nav-menu-mobile,
    .nav-contact-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 10px 15px;
		justify-content: center;
    text-align: center;
    }

    .nav-menu-mobile .nav-item {
        padding: 4px 0;
        font-size: 14px;
        transform: none;
    }

    .nav-menu-mobile .nav-item:hover {
        transform: none;
        color: var(--primary-color);
    }

    .nav-contact-mobile .nav-phone,
    .nav-contact-mobile .nav-address {
        justify-content: flex-start;
        font-size: 14px;
    }
}


        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 80vh;
            width: 100%;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white-color);
            z-index: 2;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 40px 30px;
            border-radius: 10px;
            max-width: 1360px;
            width: 90%;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: bold;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-btn-primary {
            background-color: var(--primary-color);
            color: var(--dark-color);
            border: 1px solid var(--primary-color);
        }

        .hero-btn-primary:hover {
            background-color: #E7D9C6;
            transform: translateY(-2px);
        }

        .hero-btn-secondary {
            background-color: transparent;
            color: var(--white-color);
            border: 1px solid var(--white-color);
        }

        .hero-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .hero-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-dot.active {
            background-color: var(--primary-color);
        }

        /* Fix for Swiper sections going out of bounds */
        .works-section .swiper-container,
        .reviews-section .swiper-container {
            overflow: hidden;
            padding: 0;
        }

        .works-section .swiper-wrapper,
        .reviews-section .swiper-wrapper {
            padding: 0 20px;
        }

        .works-section .swiper-slide,
        .reviews-section .swiper-slide {
            padding: 0 10px;
        }

        @media (min-width: 768px) {
            .works-section .swiper-wrapper,
            .reviews-section .swiper-wrapper {
                padding: 0 40px;
            }
            
            .works-section .swiper-slide,
            .reviews-section .swiper-slide {
                padding: 0 20px;
            }
        }

        @media (min-width: 1024px) {
            .works-section .swiper-wrapper,
            .reviews-section .swiper-wrapper {
                padding: 0 60px;
            }
            
            .works-section .swiper-slide,
            .reviews-section .swiper-slide {
                padding: 0 30px;
            }
        }

        /* Ensure all sections stay within container bounds */
        .works-section .container,
        .reviews-section .container {
            position: relative;
            overflow: hidden;
        }
		
		
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 20px!important;
}

.swiper-container{
	display: flex;
  justify-content: center;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 30px!important;
}

.swiper-slide{
	display:flex;
	flex-direction:column;
	height:auto;
}

.work-item{
	height:300px;
	object-fit:cover;
}

.work-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* обрезает всё, что выходит за границы */
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* сохраняет пропорции и заполняет весь блок */
  object-position: center; /* центрирует изображение */
}