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

:root {
    --primary-color: #1a4d3a;
    --secondary-color: #2d7a5a;
    --accent-color: #f4a261;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Header container uses more space */
.header .container {
    max-width: 1400px;
    padding: 0 30px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
    width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.phone-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn {
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

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

.btn-blue {
    background: #2563eb;
    color: var(--white);
}

.btn-blue:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-lang {
    background: var(--gray);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 16px;
}

.btn-lang:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-experience {
    font-size: 1.125rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-service-area {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-text {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--gray);
}

/* Who We Are & Mission */
.who-we-are,
.mission {
    text-align: center;
}

/* Help Section */
.help-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.help-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.help-list li:last-child {
    border-bottom: none;
}

.help-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.help-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px 15px 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--border-color);
    color: var(--gray);
    padding: 20px;
}

.gallery-placeholder p {
    font-size: 1rem;
}

.gallery-placeholder small {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Process Section */
.process-steps {
    margin-top: 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) > * {
    direction: ltr;
}

.process-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--gray);
    padding: 20px;
}

.image-placeholder p {
    font-size: 1rem;
}

.image-placeholder small {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    opacity: 0.7;
}

.process-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.process-content blockquote {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.process-content blockquote p {
    font-style: italic;
    margin-bottom: 10px;
}

.process-content cite {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.story-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.story-text {
    color: var(--gray);
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 20px;
}

.story-review {
    display: flex;
    align-items: center;
}

.story-review blockquote {
    margin: 0;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    width: 100%;
}

.story-review blockquote p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.8;
}

.story-review cite {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
}

/* Working With Us Section */
.reason-section {
    margin-bottom: 80px;
}

.reason-section h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.reason-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.reason-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.reason-text {
    color: var(--gray);
    line-height: 1.8;
}

.reason-text p {
    margin-bottom: 20px;
}

.reason-review {
    display: flex;
    align-items: center;
}

.reason-review blockquote {
    margin: 0;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    width: 100%;
}

.reason-review blockquote p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.8;
}

.reason-review cite {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-item h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-item p {
    padding: 0 20px 20px;
    color: var(--gray);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--gray);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        flex: 0 0 auto;
    }

    .header-cta {
        gap: 6px;
        flex-wrap: wrap;
        flex: 1 1 auto;
        justify-content: flex-end;
        min-width: 0;
    }

    .phone-link {
        font-size: 0.8rem;
        flex: 1 1 100%;
        text-align: right;
        order: 3;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .btn-lang {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-experience {
        font-size: 1rem;
    }

    .hero-service-area {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step:nth-child(even) {
        direction: ltr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-review {
        order: 2;
    }

    .reason-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reason-review {
        order: 2;
    }

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

@media (max-width: 640px) {
    .header-content {
        padding: 12px 0;
    }

    .logo img {
        height: 50px;
    }

    .header-cta {
        gap: 5px;
    }

    .phone-link {
        font-size: 0.75rem;
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }

    .btn {
        padding: 7px 10px;
        font-size: 0.75rem;
        min-width: 90px;
    }

    .btn-lang {
        padding: 7px 8px;
        font-size: 0.7rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-experience {
        font-size: 0.9rem;
    }

    .hero-service-area {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

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

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

