.elementor-57 .elementor-element.elementor-element-91061a8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-57 .elementor-element.elementor-element-c2e69ac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-57 .elementor-element.elementor-element-65a832f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-57 .elementor-element.elementor-element-f1b6d6e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-7cb68a2 *//* Popular Properties Section Styles */
.popular-properties {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: sans-serif; /* Uses a standard font */
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2d3748;
}

.properties-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.property-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.property-details {
    padding: 20px;
}

.property-details h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.property-specs {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #718096;
}

.property-price {
    margin: 0;
    font-size: 16px;
    color: #2d3748;
}

.property-price strong {
    font-size: 22px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .properties-container {
        justify-content: center;
    }
    .property-card {
       flex-basis: 45%;
    }
}

@media (max-width: 600px) {
    .property-card {
        flex-basis: 100%;
    }
    .section-title {
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-99f2faa *//* Scooter Rentals Section Specific Styles */
.scooter-rentals-section {
    max-width: 1200px;
    margin: 60px auto; /* More margin to separate from properties */
    padding: 0 20px;
}

.scooters-container {
    display: flex;
    justify-content: space-between;
    gap: 30px; /* Space between cards */
    flex-wrap: wrap;
}

.scooter-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 280px;
    text-align: center; /* Center content in scooter card */
}

.scooter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.scooter-image {
    width: 100%;
    height: 180px; /* Slightly shorter image for scooters */
    object-fit: contain; /* 'contain' fits the whole image, 'cover' crops */
    background-color: #f0f0f0; /* Light background for the image area */
    display: block;
    padding: 15px; /* Padding around the scooter image */
}

.scooter-details {
    padding: 20px;
}

.scooter-details h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.scooter-specs {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #718096;
}

.scooter-price {
    margin: 0;
    font-size: 16px;
    color: #2d3748;
}

.scooter-price strong {
    font-size: 22px;
    font-weight: 700;
}

/* Responsive adjustments for scooters */
@media (max-width: 992px) {
    .scooters-container {
        justify-content: center;
    }
    .scooter-card {
       flex-basis: 45%;
    }
}

@media (max-width: 600px) {
    .scooter-card {
        flex-basis: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-7fd381a *//* About Weligama Section Styles */
.about-weligama-section {
    background-color: #f8f9fa; /* A slightly different background to stand out */
    padding: 60px 20px;
    margin-top: 60px;
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 50px; /* Space between image and text */
    flex-wrap: wrap;
}

.about-image-column,
.about-text-column {
    flex: 1; /* Each column takes up half the space */
    min-width: 320px;
}

.about-image-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text-column .sub-heading {
    font-size: 16px;
    color: #718096;
    margin-bottom: 5px;
    font-weight: 500;
}

.about-text-column .section-title {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}

.about-text-column p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: #f7b801; /* Matching the yellow from your hero search button */
    color: #2d3748;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack image and text on smaller screens */
        text-align: center;
    }
    .about-text-column .section-title {
        text-align: center;
    }
}/* End custom CSS */