/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --brown: #78350F;
    --cream: #FEF3C7;
    --beige: #FDF8E8;
    --dark: #292524;
    --gray: #78716C;
    --white: #FFFFFF;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.65;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 20px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--brown);
}

.brand-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--amber);
}

.btn-contact {
    background: var(--amber);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: var(--amber-dark);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--brown);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--beige), var(--cream));
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--brown);
    bottom: -80px;
    left: -80px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brown);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--brown);
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--gray);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--amber);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.hero-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--brown);
}

.phone-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--amber);
    margin-bottom: 12px;
}

.card-note {
    color: var(--gray);
    font-size: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 17px;
}

.btn-hero {
    background: var(--amber);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.btn-hero:hover {
    background: var(--amber-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

.btn-phone {
    background: var(--brown);
    color: var(--white);
}

.btn-phone:hover {
    background: #57260A;
}

.btn-message {
    background: var(--white);
    color: var(--brown);
    border: 2px solid var(--brown);
}

.btn-message:hover {
    background: var(--brown);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    background: var(--amber);
    color: var(--white);
}

.btn-submit:hover {
    background: var(--amber-dark);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--beige);
    border-radius: 20px;
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brown);
}

.why-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 64px;
}

.section-intro h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--brown);
}

.section-intro p {
    font-size: 20px;
    color: var(--gray);
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-img-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-item:hover .service-img-box img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--amber);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--brown);
}

.service-text > p {
    margin-bottom: 24px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
}

.service-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-points li {
    padding-left: 32px;
    position: relative;
    color: var(--dark);
}

.service-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 700;
    font-size: 20px;
}

.service-link {
    color: var(--amber);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(8px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--beige);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.about-image-side {
    position: relative;
}

.about-image-side img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-quote {
    background: var(--amber);
    color: var(--white);
    padding: 24px;
    border-radius: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-quote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-quote span {
    font-size: 14px;
    opacity: 0.95;
}

.about-text-side h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--brown);
}

.about-lead {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--gray);
    line-height: 1.7;
}

.about-story {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    border-left: 4px solid var(--amber);
}

.about-story h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brown);
}

.about-story p {
    color: var(--gray);
    line-height: 1.7;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value-box {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.value-box h5 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--brown);
}

.value-box p {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.testimonials h2 {
    font-size: 44px;
    margin-bottom: 56px;
    color: var(--brown);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-box {
    background: var(--beige);
    padding: 36px;
    border-radius: 20px;
    border-top: 4px solid var(--amber);
}

.stars {
    color: var(--amber);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-person strong {
    display: block;
    font-size: 16px;
    color: var(--brown);
    margin-bottom: 4px;
}

.testimonial-person span {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.95), rgba(217, 119, 6, 0.9));
    z-index: -1;
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--beige);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact-form-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--brown);
}

.form-intro {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E7E5E4;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--amber);
}

.input-group textarea {
    resize: vertical;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--brown);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon-circle {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-row strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--brown);
}

.info-row p {
    color: var(--gray);
    font-size: 15px;
}

.service-region {
    background: var(--cream);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.service-region h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--brown);
}

.service-region p {
    color: var(--gray);
    font-size: 15px;
}

/* Footer */
.footer {
    background: var(--brown);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand .brand-circle {
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
}

.footer-main p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-intro h2,
    .testimonials h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
