
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
}

.header-phone {
    font-weight: 400;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid #000;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
    position:relative;
}
.hero:before {
    content: '';
    background-image: url(./img/header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Main USPs */
.main-usps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 80px 0;
}

.usp-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: #000;
    transform: translateY(-5px);
}

.usp-number {
    font-size: 64px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}

.usp-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.usp-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 48px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #000;
    margin-top: 40px;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

/* Kitchen Gallery */
.gallery {
    padding: 100px 0;
    background: #fafafa;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.kitchen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.kitchen-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kitchen-card:hover {
    transform: translateY(-10px);
}

.kitchen-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}

.kitchen-content {
    padding: 30px;
    text-align: center;
}

.kitchen-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
}

.kitchen-description {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* Advantages */
.advantages {
    padding: 100px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.advantages-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #000;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.advantage-number {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-right: 20px;
    min-width: 30px;
}

.advantage-text {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

.advantages-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Steps */
.steps {
    padding: 100px 0;
    background: #fafafa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.step-number {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.step-description {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0;
    cursor: pointer;
    color: #000;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    font-weight: 300;
}

.faq-answer {
    display: none;
    padding: 0 0 20px 0;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-usps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-weight: 300;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.submit-btn:hover {
    background: #333;
}

.textPage {
    padding: 50px 0;
}
.pagetitle{    
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}
.footer a {
    color: white;
    transition: .3s;
    opacity: .5;
}
.footer a:hover {
    opacity: .75;
}
.textBl ul {
    padding-left: 20px;
}

.footer-info {
    border-top: 1px solid #333;
    padding: 20px 10px;
    font-size: 14px;
    color: #666;
    font-weight: 300;
    text-align: left;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
ul.card-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1rem;
    margin: 1rem 0;
}
ul.card-list li img {
    width: 80px;
    border-radius: 10px;
}
@media(max-width:768px){
    .pagetitle{
        font-size:26px;
    }
    .footer-info {
        flex-wrap:wrap;
    }
}