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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    color: #1f2937;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #1f2937;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-light {
    background: #fff;
    color: #1f2937;
    border: 2px solid #1f2937;
}

.btn-light:hover {
    background: #1f2937;
    color: #fff;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 3rem;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Visual Section */
.visual-section {
    padding: 5rem 0;
    background: #fff;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.col-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.col-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.col-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-content img {
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Content Sections */
.content-section,
.values-section,
.team-section,
.services-section,
.additional-services {
    padding: 5rem 0;
}

.content-section h2,
.values-section h2,
.team-section h2,
.services-section h2,
.additional-services h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section p,
.team-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #6b7280;
}

.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.image-row img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

.service-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: #6b7280;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-detail .note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2937;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.location-text h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Visit Section */
.visit-section {
    padding: 5rem 0;
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.visit-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.visit-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.visit-content img {
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Legal Content */
.legal-content {
    padding: 3rem 0 5rem;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.875rem;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.375rem;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-text h4 {
    font-size: 1.125rem;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: #9ca3af;
}

/* Footer */
footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container,
    .two-col,
    .service-detail,
    .contact-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail.reverse,
    .two-col.reverse {
        direction: ltr;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    nav ul {
        gap: 1.25rem;
    }

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

@media (max-width: 640px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 1.875rem;
    }

    .page-hero h1 {
        font-size: 1.875rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .feature-grid,
    .service-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
