/* Specific Component Styles */

/* Trust Badges */
.trust-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}
.icon-box {
    width: 60px;
    height: 60px;
    background: var(--alt-bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.place-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.place-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}
.place-card-body {
    padding: 20px;
    text-align: center;
}
.place-btn {
    width: 100%;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.place-btn i {
    margin: 0 5px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--primary-color);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px #fff, var(--shadow-sm);
}
.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Check list */
.check-list {
    list-style: none;
}
.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.check-list li i {
    margin-top: 5px;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}
.testimonial-card h4 {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* FAQ Accordion */
.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover, .faq-question.active {
    background: var(--alt-bg-color);
}
.faq-question i {
    transition: 0.3s;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fff;
    color: var(--text-light);
}
.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Forms & Contact */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr !important;
    }
}


/* New Service Card Styles */
.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #fff !important;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .btn-outline {
    border-color: #fff !important;
    color: #fff !important;
    margin-top: auto;
}

.service-card .btn-outline:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
}
