
/* Hero with Text Section */
.hero-with-text {
    display: flex;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-text-content {
    flex: 1;
    min-width: 300px;
}

.hero-text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Slideshow Section */
.slideshow-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
}

.slideshow-container {
    max-width: 800px;
    width: 100%;
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
    height: auto;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Description Section */
.description-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 10px;
    margin: 2rem auto;
    width: calc(100% - 4rem);
}

.description-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.description-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.description-section p:last-child {
    margin-bottom: 0;
}

/* Inquiry Section */
.inquiry-section {
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.inquiry-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.inquiry-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 100px; /* Minimum height */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.2);
    background-color: #f9f9ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.6s ease;
}

.thank-you-message h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Content Section */
.content-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ecf0f1;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 12vh;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .nav-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .hero-with-text {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-text-content h2 {
        font-size: 1.8rem;
    }

    .slideshow-section {
        padding: 2rem 1rem;
    }

    .description-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
        width: calc(100% - 2rem);
    }

    .inquiry-section {
        padding: 2rem 1rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 14vh;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .nav-buttons {
        flex-wrap: wrap;
    }

    .nav-btn {
        flex: 1 1 50%;
        font-size: 0.8rem;
        padding: 0.7rem;
    }

    .hero-with-text {
        padding: 1.5rem 1rem;
    }

    .hero-text-content h2 {
        font-size: 1.5rem;
    }

    .hero-text-content p {
        font-size: 1rem;
    }

    .slideshow-section {
        padding: 1.5rem 0.5rem;
    }

    .description-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0.5rem;
        width: calc(100% - 1rem);
    }

    .inquiry-section {
        padding: 1.5rem 0.5rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}