/*
Theme's main style.

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: #4a9e8f;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar .vision-btn {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

/* Navbar */
.navbar-custom {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
    text-decoration: none;
}

.navbar-brand-custom .logo-icon {
    width: 36px;
    height: 36px;
    background: #4a9e8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.nav-link-custom {
    color: #555 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: #4a9e8f !important;
}

.btn-consult {
    background: #f0a030;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-consult:hover {
    background: #e09020;
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(60, 80, 60, 0.7), rgba(180, 140, 100, 0.5)),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-section p {
    font-size: 16px;
    max-width: 500px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero-primary {
    background: #f0a030;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    background: #e09020;
    color: #fff;
}

.btn-hero-secondary {
    background: #fff;
    color: #333;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: #f0f0f0;
    color: #333;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.hero-stat .number {
    font-size: 32px;
    font-weight: 800;
    color: #f0a030;
}

.hero-stat .label {
    font-size: 13px;
    opacity: 0.8;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: #888;
    text-align: center;
    margin-bottom: 50px;
}

/* Why Choose Us */
.why-section {
    background: #fff;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid #eee;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #4a9e8f;
    font-size: 20px;
}

.feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Boarding Houses */
.boarding-section {
    background: #f5f7fa;
}

.boarding-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}

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

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

.boarding-card-body {
    padding: 24px;
}

.boarding-card-body h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.boarding-card-body .location {
    font-size: 13px;
    color: #4a9e8f;
    margin-bottom: 8px;
}

.boarding-card-body .location i {
    margin-right: 5px;
}

.boarding-card-body .desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.boarding-card-body .status {
    font-size: 13px;
    color: #e74c3c;
    margin-bottom: 16px;
}

.btn-more {
    color: #4a9e8f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-more:hover {
    color: #3a8e7f;
}

/* Virtual Tour */
.tour-section {
    background: #fff;
}

.tour-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.tour-video-wrapper img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    color: #4a9e8f;
    font-size: 28px;
    margin-left: 4px;
}

/* Living Conditions */
.conditions-section {
    background: #f5f7fa;
}

.condition-img {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 20px;
}

.condition-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.condition-img:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    background: #fff;
}

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

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.team-card h6 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 13px;
    color: #4a9e8f;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    background: #f5f7fa;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.review-stars {
    color: #f0a030;
    font-size: 14px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

.review-role {
    font-size: 12px;
    color: #999;
}

.review-photo {
    border-radius: 20px;
    overflow: hidden;
    max-width: 700px;
    margin: 40px auto 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.review-photo img {
    width: 100%;
    display: block;
}

/* Pricing Section */
.pricing-section {
    background: #fff;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.popular {
    background: linear-gradient(135deg, #f0a030, #4a9e8f);
    color: #fff;
    border: none;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(74, 158, 143, 0.3);
}

.pricing-card.popular .pricing-name,
.pricing-card.popular .pricing-price,
.pricing-card.popular .pricing-period,
.pricing-card.popular .pricing-features li {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #4a9e8f;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
}

.pricing-period {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #4a9e8f;
    font-size: 12px;
}

.pricing-card.popular .pricing-features li i {
    color: #fff;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pricing-outline {
    background: #4a9e8f;
    color: #fff;
}

.btn-pricing-outline:hover {
    background: #3a8e7f;
    color: #fff;
}

.btn-pricing-white {
    background: #fff;
    color: #4a9e8f;
}

.btn-pricing-white:hover {
    background: #f0f0f0;
}

/* FAQ Section */
.faq-section {
    background: #f5f7fa;
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #4a9e8f;
}

.faq-question i {
    transition: transform 0.3s;
    color: #4a9e8f;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f0a030, #4a9e8f);
    border-radius: 24px;
    padding: 60px 40px;
    color: #fff;
    text-align: center;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-form-wrapper p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 36px;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    box-shadow: none;
    color: #fff;
}

.btn-submit {
    background: #fff;
    color: #4a9e8f;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #f0f0f0;
    color: #4a9e8f;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    background: #4a9e8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.footer-brand span {
    font-size: 18px;
    font-weight: 700;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item i {
    color: #4a9e8f;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .section-title {
        font-size: 26px;
    }
}
