/* Global Styles */
* {
    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;
    color: #2b2b2b;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #3a3a3a;
}

/* Hero Section */
.hero {
    background: #2b2b2b;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #fff;
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.hero-decoration {
    display: none;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.feature-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #6b6b6b;
    line-height: 1.8;
}

/* About Page Styles */
.about-hero {
    background: #2b2b2b;
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-content {
    background-color: #fff;
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6b6b6b;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.placeholder-image {
    background: #e5e5e5;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid #d1d1d1;
}

.about-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    text-align: center;
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.value-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4a4a4a;
}

.value-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b6b6b;
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: #3a3a3a;
    border-radius: 12px;
    color: white;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Page Styles */
.contact-section {
    background-color: #fff;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    overflow: visible;
}

.company-details {
    background: #2b2b2b;
    color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.company-details > p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Form Styles */
.form-wrapper {
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-images {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -10px;
    border: 3px solid white;
    font-size: 1.5rem;
}

.header h1 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b6b6b;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-note {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin: -0.5rem 0 1rem 0;
    font-style: italic;
}

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

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.required {
    color: #6b6b6b;
}

.optional {
    color: #8b8b8b;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a4a4a;
    box-shadow: 0 0 0 3px rgba(74, 74, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.submit-btn {
    background: #3a3a3a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    background: #4a4a4a;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.success-message.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: #fafafa;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: #4a4a4a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #2b2b2b;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.thank-you-submessage {
    font-size: 1rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-info {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
    margin-top: 2rem;
}

.thank-you-info h3 {
    font-size: 1.1rem;
    color: #2b2b2b;
    margin-bottom: 1.5rem;
}

.quick-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #2b2b2b;
}

.quick-contact-item .icon {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .nav-menu {
        gap: 1rem;
    }

    .contact-wrapper,
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .company-details {
        order: 2;
    }

    .form-wrapper {
        order: 1;
    }

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

    .about-hero h1 {
        font-size: 2rem;
    }

    .thank-you-content {
        padding: 3rem 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .quick-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .btn {
        width: 100%;
    }
}
