/*------------------------------------------------------------------
Project:  Sunny Tuktuk
Common Site Styles - Centralized stylesheet for all pages
-------------------------------------------------------------------*/

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    /* Adjust left positioning on mobile */
    .logo-container, .logo-text-container {
        left: 10px !important;
    }
    
    /* Make logo text image responsive */
    .logo-text-container img {
        max-width: 80%; /* 80% of viewport width */
        height: auto;
    }
    
    /* Reduce side padding on mobile */
    .wsize1 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1000;
    cursor: pointer;
    width: 30px;
    height: 25px;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 0px;
}

.hamburger-menu span:nth-child(2) {
    top: 10px;
}

.hamburger-menu span:nth-child(3) {
    top: 20px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding: 80px 30px 30px;
}

.mobile-menu.open {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Navigation */
.navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.nav-link {
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 1px solid #eee;
}

.nav-link:hover, .nav-link.active {
    color: #ffe151;
    text-decoration: none;
}

/* Logo positioning */
.logo-container {
    position: absolute;
    top: 37px;
    left: 70px;
    z-index: 1;
    padding-left: 30px; /* Make room for hamburger */
}

/* Section styling */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-family: PlayfairDisplay-Regular;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.section-content {
    font-family: Poppins-Regular;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Feature Cards - Base styling */
.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 36px;
    color: #ffe151;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
}

/* Key stat styling (for index page) */
.key-stat {
    background-color: #ffe151;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.key-stat h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 22px;
    margin-bottom: 10px;
}

.key-stat p {
    font-family: Poppins-Regular;
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

/* CTA button styling */
.main-cta {
    background-color: #ffe151;
    color: #333;
    font-family: Poppins-Medium;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    margin-right: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 10px 0px rgba(0,0,0,0.1);
}

.main-cta:hover {
    box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #333;
}

/* Mobile social links */
.mobile-socials {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s;
}

.mobile-social-link:hover {
    background-color: #ffe151;
    color: #333;
}

/* Mobile contact styling */
.mobile-contact {
    margin-bottom: 20px;
}

.mobile-contact p {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.mobile-contact p:first-child {
    font-family: Poppins-Medium;
    color: #333;
    margin-bottom: 15px;
}

/* Story Card (for about page) */
.story-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.story-card h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.story-card p {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Benefit Cards (for benefits page) */
.benefits-container {
    margin-top: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 48px;
    color: #ffe151;
    margin-right: 20px;
    margin-top: 5px;
    min-width: 60px;
}

.benefit-content h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-content p {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Area Cards (for service areas page) */
.area-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.area-card h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.area-card h3 i {
    font-size: 24px;
    color: #ffe151;
    margin-right: 10px;
}

.area-card p {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.area-card ul {
    margin: 0;
    padding-left: 20px;
}

.area-card li {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

/* Contact page specific styles */
.contact-info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-info-card i {
    font-size: 48px;
    color: #ffe151;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-card p {
    font-family: Poppins-Regular;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-card a {
    color: #ffe151;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Form container styling */
.form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-family: PlayfairDisplay-Regular;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-container p {
    font-family: Poppins-Regular;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Tabs (for benefits page) */
.benefits-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 10px 20px;
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #333;
    border-bottom-color: #ffe151;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Testimonials */
.testimonial {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: rgba(255, 225, 81, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial p {
    font-family: Poppins-Regular;
    font-style: italic;
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    margin-top: 15px;
}

.testimonial-author .name {
    font-family: PlayfairDisplay-Regular;
    font-size: 16px;
    color: #333;
}

.testimonial-author .role {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #999;
}

/* Signup page specific styles - Process Steps */
.process-steps {
    margin-bottom: 40px;
}

.step-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #ffe151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    color: #333;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-family: PlayfairDisplay-Regular;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.step-description {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
}

/* Requirements list (for signup page) */
.requirements-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.requirements-list li {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 20px 15px 50px;
    margin-bottom: 10px;
    position: relative;
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #666;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.requirements-list li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 20px;
    top: 15px;
    color: #ffe151;
}

/* Form styling - Enhanced for signup page */
.form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-title {
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.form-group-container {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .form-group-container {
        flex-direction: column;
        gap: 10px;
    }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.input100 {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Poppins-Regular;
    transition: all 0.3s ease;
}

.input100:focus {
    border-color: #ffe151;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 225, 81, 0.25);
    outline: none;
}

select.input100 {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

textarea.input100 {
    height: 100px;
    padding: 10px 15px;
    resize: vertical;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 20px 0;
}

/* Button styling - Enhanced for signup page */
.submit-button {
    background-color: #ffe151;
    box-shadow: 0 5px 10px 0px rgba(0,0,0,0.1);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
}

.submit-button span {
    font-size: 15px;
    font-family: Poppins-Medium;
    color: #333;
}

.submit-button i {
    font-size: 20px;
    color: #333;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Alert message styling */
.alert-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-family: Poppins-Regular;
    text-align: center;
}

.alert-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Privacy policy link */
.privacy-link {
    text-align: center;
    margin-top: 20px;
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
}

.privacy-link a {
    color: #333;
    text-decoration: underline;
}

.privacy-link a:hover {
    color: #ffe151;
}

/* Arrow List Styling */
.arrow-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.arrow-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.arrow-list li:before {
    content: "\f0a9";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 8px;
    color: #ffe151;
    font-size: 16px;
}

/* Service Areas page specific styles */
.area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .area-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.area-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-coming-soon {
    background-color: #fff3cd;
    color: #856404;
}

.expansion-timeline {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dee2e6;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-date {
    flex-shrink: 0;
    width: 120px;
    font-family: Poppins-Medium;
    font-size: 14px;
    color: #ffe151;
    background-color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    margin-left: 20px;
}

.timeline-content h4 {
    font-family: PlayfairDisplay-Regular;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.timeline-content p {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Location Cards (for service areas page) */
.location-cards {
    margin-top: 30px;
}

.location-card {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.location-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.location-content {
    padding: 20px;
}

.location-name {
    font-family: PlayfairDisplay-Regular;
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.location-description {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.location-detail {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 5px;
}

.location-detail i {
    font-size: 16px;
    color: #ffe151;
    margin-right: 5px;
}

.location-detail span {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #666;
}

/* Map placeholder */
.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 48px;
    color: #ffe151;
    margin-bottom: 15px;
}

.map-placeholder h3 {
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-family: Poppins-Regular;
    font-size: 14px;
    max-width: 400px;
}

/* Timeline (alternative style for service areas) */
.timeline {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ffe151;
}

.timeline .timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
    display: block;
    border-bottom: none;
    padding-bottom: 0;
}

.timeline .timeline-item:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffe151;
    border: 3px solid #fff;
}

.timeline .timeline-year {
    font-family: PlayfairDisplay-Regular;
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.timeline .timeline-content {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    margin-left: 0;
}

/* Area features styling */
.area-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: Poppins-Regular;
    font-size: 12px;
    color: #666;
}

/* Contact page specific styles */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #ffe151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 20px;
    color: #333;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-family: PlayfairDisplay-Regular;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-text {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Enhanced form styling for contact page */
.form-group-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-group-container {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    font-family: Poppins-Medium;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.form-group .input100 {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Poppins-Regular;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group .input100:focus {
    border-color: #ffe151;
    outline: none;
}

.form-group textarea.input100 {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #ffe151;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-family: Poppins-Medium;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    min-width: 150px;
}

.submit-btn:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* FAQ styling */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #333;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question.active {
    background-color: #ffe151;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.faq-answer.show {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-answer a {
    color: #007bff;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Enhanced map placeholder styling */
.map-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #6c757d;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffe151;
}

.map-placeholder h3 {
    font-family: PlayfairDisplay-Regular;
    margin-bottom: 10px;
    color: #333;
}

/* Map container for contact page */
.map-container {
    margin-bottom: 30px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ffe151;
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #e6ca47;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
} 