/* Homepage Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/vf6-mau-xam.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: #FFE0B2;
}

.hero .lead {
    font-size: 1.8rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    color: #FFFFFF;
}

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

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

.btn-primary {
    background: #FF8C00;
    color: white;
}

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

.btn-secondary {
    background: white;
    color: #FF8C00;
}

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

/* Services Section */
.services {
    padding: 3rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5D4037;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #5D4037;
}

.service-card p {
    padding: 0 1.5rem;
    color: #6D4C41;
    margin-bottom: 1rem;
}

.service-card ul {
    padding: 0 1.5rem 1.5rem;
    list-style: none;
}

.service-card li {
    color: #6D4C41;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    color: #FF8C00;
    position: absolute;
    left: 0;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: #FFF8E1;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5D4037;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #5D4037;
}

.feature-item p {
    color: #6D4C41;
}

/* Blog Section */
.blog-preview {
    padding: 3rem 0;
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #5D4037;
}

.section-description {
    text-align: center;
    color: #6D4C41;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #5D4037;
}

.blog-content p {
    color: #6D4C41;
    margin-bottom: 1rem;
}

.read-more {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: #F57C00;
}

.text-center {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    background: #FFF8E1;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5D4037;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

summary {
    font-weight: 500;
    color: #5D4037;
    cursor: pointer;
    padding: 0.5rem;
}

details p {
    margin-top: 1rem;
    color: #6D4C41;
    padding: 0 0.5rem;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5D4037;
}

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

.contact-info {
    padding: 2rem;
    background: #FFF8E1;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #5D4037;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info a {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #F57C00;
}

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

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #5D4037;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5D4037;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #FFE0B2;
    border-radius: 4px;
    font-size: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.4rem;
    }

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

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