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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4CAF50;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 32, 28, 0.8), rgba(0, 32, 28, 0.8));
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 120px;
    width: 100%;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    object-fit: cover;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #e0e0e0;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-video {
    color: white;
    gap: 10px;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 10px;
}

/* About Section */
.about {
    background: #fff;
    padding: 80px 0 60px 0;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-left {
    flex: 1.2;
}

.about-badge {
    display: inline-block;
    background: #d86f3c;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 38px;
    border-radius: 30px;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.about-left h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #142c1b;
    line-height: 1.15;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
}

.about-desc {
    font-size: 1.5rem;
    color: #6b6f76;
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-about {
    background: #29463b;
    color: #fff;
    font-size: 1.3rem;
    padding: 22px 56px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, transform 0.2s;
}

.btn-about:hover {
    background: #183225;
    transform: translateY(-2px);
}

.arrow {
    font-size: 1.5rem;
    margin-left: 8px;
}

/* Services Section */
.services {
    background: #faf7f5;
    padding: 80px 0 60px 0;
}

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

.services-badge {
    display: inline-block;
    background: #d86f3c;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 38px;
    border-radius: 30px;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #142c1b;
    line-height: 1.15;
    margin-bottom: 40px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 48px 32px 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-icon {
    background: #29463b;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #142c1b;
    margin-bottom: 18px;
}

.service-card p {
    color: #6b6f76;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.btn-service {
    background: #fff;
    color: #29463b;
    border: 2px solid #e6e6e6;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.btn-service:hover {
    background: #29463b;
    color: #fff;
    border: 2px solid #29463b;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: url('img/consult-bg.jpg') center center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-overlay {
    width: 100%;
    padding: 80px 20px 80px 20px;
    background: rgba(20, 44, 27, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.cta-badge {
    display: inline-block;
    background: #d86f3c;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 14px 48px;
    border-radius: 30px;
    margin-bottom: 36px;
    letter-spacing: 2px;
}

.cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 48px;
    line-height: 1.15;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn-cta {
    background: #d86f3c;
    color: #fff;
    font-size: 1.3rem;
    padding: 22px 56px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.btn-cta:hover {
    background: #b94e1c;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-us {
    background: #fff;
    padding: 80px 0 60px 0;
}

.why-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #142c1b;
    margin-bottom: 48px;
}

.why-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-point {
    background: #faf7f5;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 40px 32px 32px 32px;
    flex: 1 1 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 240px;
}

.why-icon {
    background: #29463b;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.why-point h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #142c1b;
    margin-bottom: 14px;
}

.why-point p {
    color: #6b6f76;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery-section {
    background: #faf7f5;
    padding: 80px 0 60px 0;
}

.gallery-fullwidth {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #faf7f5;
    padding: 0 0 60px 0;
}

.gallery-block {
    margin-bottom: 48px;
}

.gallery-block:last-child {
    margin-bottom: 0;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #142c1b;
    margin-bottom: 32px;
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
}

.gallery-img {
    border-radius: 2px;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        margin-left: 0;
        transform: none;
        max-width: 1200px;
    }
    .gallery-img {
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background: #fff;
}

.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 44, 27, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.2s;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    margin-bottom: 16px;
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #d86f3c;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 12px 20px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.lightbox-prev {
    left: 32px;
}

.lightbox-next {
    right: 32px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: #d86f3c;
    color: #fff;
}

.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    right: 32px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 3000;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.wa-float:hover {
    background: #128c7e;
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .lightbox-img {
        max-width: 98vw;
        max-height: 60vh;
    }
    .lightbox-close {
        top: 12px;
        right: 18px;
        font-size: 2rem;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 2rem;
        left: 8px;
        right: 8px;
    }
    .wa-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 18px;
        right: 18px;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hero-right {
        justify-content: center;
        width: 100%;
    }
    .hero-img {
        max-width: 300px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-left h2 {
        font-size: 2.1rem;
    }
    .about-desc {
        font-size: 1.1rem;
    }
    .btn-about {
        font-size: 1rem;
        padding: 16px 32px;
    }
    .services-cards {
        grid-template-columns: 1fr;
    }
    .services-title {
        font-size: 2rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-overlay {
        padding: 48px 10px 48px 10px;
    }
    .btn-cta {
        font-size: 1rem;
        padding: 16px 32px;
    }
    .why-points {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .why-title {
        font-size: 2rem;
    }
    .gallery-title {
        font-size: 2rem;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Contact Section */
.contact-section {
    background: #1a3a4a;
    color: #fff;
    padding: 24px 0 18px 0;
    font-family: inherit;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
}

.contact-label {
    font-weight: 700;
    font-size: 1.15rem;
    margin-right: 32px;
    min-width: 260px;
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 36px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.95;
}

.contact-item i {
    font-size: 1.2rem;
    color: #7fd1e7;
}

.contact-item span {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .contact-label {
        margin-bottom: 8px;
    }
    .contact-items {
        gap: 18px 16px;
    }
}