.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 78px;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem;
}

.hero-text .tagline {
    font-size: 1.65rem;
    color: #f5e9d8;
    margin-bottom: 0.8rem;
}

.hero-text .sub-tagline {
    font-size: 1.25rem;
    color: #e8d9c4;
    margin-bottom: 2.8rem;
}

.hero-buttons {
    margin-top: 1rem;
}

.about {
    padding: 110px 6% 90px;
    background: white;
}

.section-title {
    font-size: 2.9rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.about-text {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.18rem;
    color: #4a3f35;
}

.services {
    padding: 90px 6%;
    background: var(--bg);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.4s ease;
}

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

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

.card-body {
    padding: 1.8rem;
}

.card-body h3 {
    color: var(--accent);
    margin-bottom: 0.9rem;
    font-size: 1.4rem;
}
/* ================== FAQ STYLES ================== */
.faq-section {
    padding: 100px 6% 120px;
    background: white;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 14px;
    border: 1px solid #e5d9c9;
    border-radius: 12px;
    overflow: hidden;
}

.fac_question {
    width: 100%;
    padding: 18px 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.12rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fac_question:hover {
    background: #f8f4ed;
}

.fac_question .arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.fac_question.active .arrow {
    transform: rotate(180deg);
}

.fac_answer {
    padding: 0 24px;
    background: #f8f4ed;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.fac_answer p {
    padding: 20px 0;
    color: #555;
}
/* Responsive for home page */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.9rem;
    }
    .hero-buttons .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}
