@font-face {
    font-display: swap;
    font-family: Figtree;
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/static/Figtree-Black.ttf") format("truetype");
}

/* 300 weight / italic ------------------------------------------ */
@font-face {
    font-display: swap;
    font-family: Figtree;
    font-style: italic;
    font-weight: 900;
    src: url("../fonts/static/Figtree-BlackItalic.ttf") format("truetype");
}

/* 400 weight / normal ------------------------------------------ */
@font-face {
    font-display: swap;
    font-family: Figtree;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/static/Figtree-Regular.ttf") format("truetype");
}

/* 700 weight / normal ------------------------------------------ */
@font-face {
    font-display: swap;
    font-family: Figtree;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/static/Figtree-Bold.ttf") format("truetype");
}

/* 400 weight / italic ------------------------------------------ */
@font-face {
    font-display: swap;
    font-family: Figtree;
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/static/Figtree-Italic.ttf") format("truetype");
}

/* 700 weight / italic ------------------------------------------ */
@font-face {
    font-display: swap;
    font-family: Figtree;
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/static/Figtree-BoldItalic.ttf") format("truetype");
}

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

body {
    font-family: "Figtree";
}

.visually-hidden {
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

main {
    overflow-x: hidden;
}

.main-content-container {
    padding: 56px 20px;
}

.main-content {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    gap: 60px;
    align-items: start;
}

.left-section {
    flex: 1;
    max-width: 547px;
}

.left-section .title {
    display: none;
}

.image-gallery {
    display: flex;
    gap: 26px;
    position: relative;
}

/* Added styles for map overlay when it's the active image */
.image-gallery.interactive-active::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 79px;
    width: 192px;
    height: 196px;
    background-image: url("/images/ribbon.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 60px;
    flex-shrink: 0;
    z-index: 2;
}

.thumbnail {
    width: 60px;
    height: 78px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
    position: relative;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: transparent;
}

/* Arrow indicator for active thumbnail */
.thumbnail.active::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #ff6c00;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    z-index: 10;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.main-image {
    /* flex: 1; */
    min-width: 460px;
    width: 460px;
    /* height: auto; */
    border-radius: 4px;
    position: relative;
}

.main-image img {
    /* width: 100%; */
    /* height: 100%; */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    z-index: 2;
}

.main-image::after {
    content: "";
    position: absolute;
    bottom: -138px;
    left: 0;
    width: 100%;
    height: 143px;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scaleY(1);
    z-index: 1;
    background-image: url('/images/refelection.png');
    background-repeat: no-repeat;
}

.image-gallery.interactive-active .main-image::after {
    opacity: 1;
}

.right-section {
    display: flex;
    align-items: start;
    gap: 60px;
    flex: 1;
}

.title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    color: #161b1f;
}

.title .highlight {
    display: block;
    color: #ff6c00;
}

.subtitles {
    border-top: 1px solid #efefef;
    padding-top: 26px;
    margin-top: 26px;
}

.subtitle {
    color: #161b1f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.389;
}

.destinations {
    color: #ff6c00;
}

.description {
    font-size: 16px;
    line-height: 1.3;
    color: #161b1f;
    margin-top: 14px;
    margin-bottom: 20px;
    max-width: 520px;
}

.features {
    list-style: none;
    border-bottom: 1px solid #efefef;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 3px;
    color: #161b1f;
}

.features li::before {
    content: "•";
    color: #161b1f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pricing Card Styles */
.pricing-card {
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-radius: 6px;
    text-align: center;
    max-width: 235px;
    padding: 55px 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.price {
    display: flex;
    align-items: start;
    font-size: 24px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ff6c00;
    font-weight: 700;
    font-family: "Figtree";
}

.price span {
    font-size: 64px;
    line-height: 47px;
    text-transform: uppercase;
    color: #ff6c00;
    font-weight: 700;
    font-family: "Figtree";
}

.price-period {
    font-size: 16px;
    line-height: 22px;
    color: #161b1f;
    line-height: 17px;
    font-weight: 400;
    font-family: "Figtree";
    text-align: center;
}

.buy-now-btn-container {
    text-align: center;
    margin-top: 40px;
    display: none;
}

.buy-now-btn {
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Figtree";
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 52px;
    border-radius: 26px;
    background-color: #008a7c;
}

.buy-now-btn:hover {
    background: #009989;
}

.buy-gift-btn {
    font-size: 16px;
    line-height: 19px;
    color: #808285;
    font-weight: 500;
    font-family: "Figtree";
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 139px;
    width: 100%;
    margin: 0 auto;
    height: 37px;
    border-radius: 19px;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
}

.buy-gift-btn:hover {
    border: 1px solid #c8c9ca;
    color: #008a7c;
}

.filter-section {
    margin-bottom: 34px;
}

.filter-section h3 {
    font-size: 18px;
    line-height: 18px;
    color: #161b1f;
    font-weight: 700;
    font-family: "Figtree";
    margin-bottom: 16px;
    text-decoration: none;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 12px;
}

/* Buttons */
.filter-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 105px;
    padding: 20px 0;
    border-radius: 6px;
    border: 1px solid transparent;
    background: #f4f4f4;
    font-size: 14px;
    font-weight: 500;
    color: #161b1f;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 83px;
    text-decoration: none;
}

.filter-btn.location-btn {
    height: 45px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

/* Background image styles for filter button icons */
.filter-btn[data-icon]::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.filter-btn[data-icon="tourism"]::before {
    background-image: url('/images/tourism-icon.svg');
}

.filter-btn[data-icon="festivals"]::before {
    background-image: url('/images/festivals-icon.svg');
}

.filter-btn[data-icon="food"]::before {
    background-image: url('/images/food-icon.svg');
}

.filter-btn[data-icon="adventure"]::before {
    background-image: url('/images/adventure-icon.svg');
}

.filter-btn[data-icon="culture"]::before {
    background-image: url('/images/culture-icon.svg');
}

.filter-btn[data-icon="couples"]::before {
    background-image: url('/images/couples-icon.svg');
}

.filter-btn span {
    font-size: 14px;
    font-weight: 400;
    font-family: "Figtree";
    text-align: center;
}

/* Hover state */
.filter-btn:hover {
    border-color: #e3e3e3;
    background: white;
}

/* Active state */
.filter-btn.active {
    background-color: #ff6c00;
    color: #fff;
    border-color: #ff6c00;
}

.filter-btn.active[data-icon]::before {
    filter: brightness(0) invert(1);
}

/* Checkmark for active state - using ::after to avoid conflict with icon ::before */
.filter-btn.active::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff6c00 url('/images/selected.svg') center center no-repeat;
    border-radius: 50%;
    z-index: 3;
}

/* counties-included */
.counties {
    margin-top: -8px;
    max-width: 530px;
    width: 100%;
}

.counties .counties-title {
    font-size: 14px;
    line-height: 18.33px;
    text-transform: uppercase;
    color: #161b1f;
    font-weight: 400;
    margin-bottom: 3;
    font-family: "Figtree";
}

.counties .all-counties {
    font-size: 14px;
    color: #161b1f;
    font-weight: 400;
    line-height: 17px;
    font-family: "Figtree";
}

.discover-section-wrapper {
    overflow-x: hidden;
}

/* Discover Florida Section */
.discover-section {
    background-color: #f4f4f4;
    padding: 45px 24px 160px 24px;
    margin: 232px 0;
    width: 100%;
    position: relative;
}

.discover-section:before {
    content: "";
    position: absolute;
    top: 48px;
    left: 52%;
    width: 100%;
    max-width: 2276px;
    height: auto;
    aspect-ratio: 2276 / 1553;
    transform: translateX(-50%);
    background-image: url("/images/bg-objects.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.discover-container:before {
    content: "";
    position: absolute;
    top: -232px;
    left: 0;
    width: 100%;
    height: 232px;
    background-image: url("/images/top-curve-background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}

.discover-container {
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    z-index: 3;
}

.discover-container:after {
    content: "";
    position: absolute;
    bottom: -232px;
    left: 0;
    width: 100%;
    height: 232px;
    background-image: url("/images/bottom-curve-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}

.florida-text-container {
    max-width: 1315px;
    margin: 0 auto;
    position: relative;
}

.florida-text {
    position: absolute;
    left: -80px;
    top: -25px;
    width: 324px;
    z-index: 4;
}

.discover-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.discover-heading {
    font-size: 46px;
    font-weight: 700;
    color: #ff6c00;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.2;
}

.discover-subheading {
    font-size: 18px;
    color: #161b1f;
    max-width: 584px;
    margin: 0 auto;
    line-height: 1.389;
    font-weight: 700;
}

.top-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 60px 0 40px 0;
    font-size: 16px;
    line-height: 1.375;
    color: #161b1f;
    position: relative;
    z-index: 5;
}

.bottom-section {
    padding-top: 400px;
    position: relative;
    z-index: 5;
}

.map-section {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.florida-map {
    max-width: 1189px;
    border-radius: 6px;
    margin-top: 30px;
}

.bottom-left-text {
    position: relative;
    z-index: 20;
    max-width: 46%;
}

.text-column p {
    margin-bottom: 20px;
}

.bottom-left-text p {
    font-size: 16px;
    line-height: 1.375;
    color: #161b1f;
    margin-bottom: 24px;
}

.bottom-left-text p:last-child {
    margin-bottom: 0;
    max-width: 97%;
}

/* How The Map Is Organized */
.how-map-organized-section {
    padding: 80px 24px;
}

.how-map-organized {
    max-width: 1440px;
    margin: 0 auto;
}

.how-map-organized-title {
    font-size: 46px;
    line-height: 44px;
    color: #ff6c00;
    font-weight: 700;
    font-family: "Figtree";
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 330px);
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.cards-grid .card {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.07));
    width: 330px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    padding-top: 36px;
    overflow: hidden;
}

.card-image {
    height: 100px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.cards-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
    text-align: center;
    padding: 36px 29px 29px 29px;
}

.card-title {
    font-size: 26px;
    line-height: 30px;
    color: #161b1f;
    font-weight: 700;
    font-family: "Figtree";
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #161b1f;
    font-family: "Figtree";
}

.why-choose-us-section .buy-now-btn {
    display: block;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 165px;
}

.buy-now-btn {
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-family: "Figtree";
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 52px;
    border-radius: 26px;
    background-color: #008a7c;
}

.buy-now-btn:hover {
    background: #009989;
}

/* Why choose us section */
.why-choose-us-section {
    background: white;
    padding: 90px 24px;
}

.why-choose-us-heading {
    font-size: 46px;
    font-weight: 700;
    color: #ff6c00;
    text-align: center;
    margin-bottom: 41px;
    line-height: 1.2;
}

.comparison-table-container {
    overflow-x: auto;
    filter: drop-shadow(0px 30px 35px rgba(0, 0, 0, 0.07))
}

.comparison-table {
    max-width: 1289px;
    margin: 0 auto;
    min-width: 665px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
    display: table;
}

.comparison-table thead {
    display: table-header-group;
}

.comparison-table tbody {
    display: table-row-group;
}

.comparison-table tr {
    display: table-row;
}

.comparison-table th,
.comparison-table td {
    display: table-cell;
}

.comparison-table td.yes,
.comparison-table td.no {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    min-height: 24px;
    color: transparent;
    font-size: 0;
}

.comparison-table td.yes::after,
.comparison-table td.no::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.comparison-table td.yes::after {
    background-image: url('/images/yes.svg');
    filter: invert(39%) sepia(97%) saturate(2470%) hue-rotate(144deg) brightness(91%) contrast(98%);
}

.comparison-table td.no::after {
    background-image: url('/images/no.svg');
}

.comparison-table td.yes span,
.comparison-table td.no span {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    font-size: 0;
}

.comparison-table thead tr {
    background: white;
    border-bottom: 2px solid #e9ecef;
    white-space: nowrap;
}

.comparison-table th {
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #161b1f;
    text-align: center;
    background: white;
}

.comparison-table th:first-child {
    text-align: left;
    background: transparent;
}

.comparison-table th.featured {
    background-color: #ff6c00;
    color: #161b1f;
    font-weight: 700;
}

.comparison-table tr.section-header {
    background-color: #f5f5f4;
    border-bottom: 1px solid #efefef;
}

.comparison-table tr.section-header th {
    padding: 26px 20px 10px 20px;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    color: #161b1f;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #efefef;
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f4;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody th {
    text-align: left;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #161b1f;
    line-height: 1.4;
}

.comparison-table thead th:first-child,
.comparison-table tr.section-header th,
.comparison-table tbody th {
    width: 520px;
}

.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table thead th:nth-child(2),
.comparison-table th.featured,
.comparison-table td.featured {
    max-width: 222px;
}

.comparison-table td.featured {
    background-color: #f5f5f4;
}

.comparison-table tbody td {
    padding: 20px 16px;
    text-align: center;
    vertical-align: middle;
    width: 18%;
}

.check-icon {
    width: 20px;
    height: 20px;
}

.check-icon img {
    width: 20px;
    height: 20px;
}

.checkmark-icon {
    min-width: 20px;
    height: 20px;
    filter: invert(39%) sepia(97%) saturate(2470%) hue-rotate(144deg) brightness(91%) contrast(98%);
}

.effort-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #161b1f;
}

/* Reviews Section */
.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    padding-bottom: 28px;
}

.rating {
    display: flex;
    align-items: center;
    width: fit-content;
}

.rating p {
    font-size: 16px;
    line-height: 16px;
    ;
    font-weight: 400;
    color: #161b1f;
    margin-right: 6px;
}

.rating-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #161b1f;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
}

.review-count {
    font-size: 14px;
    line-height: 1.2;
    color: #a1a1a1;
    margin-left: 4px;
}


.reviews-section {
    background: white;
    padding: 75px 24px;
}

.reviews-container {
    max-width: 760px;
    margin: 0 auto;
}

.review-heading {
    font-size: 46px;
    font-weight: 700;
    color: #ff6c00;
    text-align: center;
    margin-bottom: 46px;
    line-height: 1.2;
}

.amazon-icon {
    width: 180px;
}

.review-item {
    padding-top: 24px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
}

.avatar {
    width: 65px;
    height: 65px;
    background-color: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar img {
    width: 24px;
    height: 27px;
}

.review-content {
    flex: 1;
    margin-left: 81px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.111;
    color: #161b1f;
    margin-bottom: 4px;
}

.review-date {
    font-size: 14px;
    color: #a1a1a1;
}

.amazon-link {
    color: #ff9500;
    text-decoration: none;
}

.amazon-link:hover {
    text-decoration: underline;
}

.review-stars {
    margin-bottom: 20px;
}

.review-title {
    color: #161b1f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.375;
}

.review-text {
    color: #161b1f;
    font-size: 16px;
    line-height: 1.375;
}

.load-more {
    text-align: center;
    margin-top: 46px;
}

.load-more-btn {
    width: 140px;
    height: 44px;
    border-radius: 22px;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    color: #808285;
    font-weight: 500;
    font-family: "Figtree";
    text-align: center;
}

.load-more-btn:hover {
    color: #161b1f;
    border-color: #c8c9ca;
}

@media (max-width: 1301px) {
    .main-content {
        gap: 40px;
    }

    .right-section {
        gap: 40px;
    }

    .main-image {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1201px) {
    .main-content {
        gap: 40px;
    }

    .right-section {
        flex-direction: column;
        gap: 50px;
    }

    .discover-section {
        padding: 45px 24px;
    }

    .discover-section:before {
        top: 80px;
        left: 53%;
        height: 930px;
    }

    .bottom-section {
        padding-top: 350px;
    }

    .map-section {
        right: -40px;
    }

    .florida-map {
        width: 1000px;
        margin-top: 0;
    }

    .top-text-section {
        margin: 60px 0 20px 0;
    }

    .bottom-left-text {
        max-width: 46%;
    }

    .florida-text {
        left: 0px;
        top: -101px;
        width: 270px;
    }
}

@media (max-width: 1024px) {
    .right-section {
        gap: 40px;
    }

    .discover-section {
        padding: 45px 24px 24px 24px;
    }

    .discover-section:before {
        top: 80px;
        left: 53%;
        height: 930px;
    }

    .bottom-section {
        padding-top: 335px;
    }

    .map-section {
        right: -70px;
    }

    .florida-map {
        width: 900px;
    }

    .florida-text {
        top: -100px;
        width: 200px;
    }

    .main-image {
        flex: 1;
        min-width: auto;
        width: auto;
        border-radius: 4px;
        position: relative;
    }

    .main-image img {
        width: 100%;
        height: 100%;
    }

    .main-image::after {
        display: none;
    }

    .image-gallery.interactive-active::before {
        top: -6px;
        left: 81px;
        width: 150px;
        height: 154px;
    }

    .comparison-table thead th:first-child,
    .comparison-table tbody tr.section-header th,
    .comparison-table tbody th {
        width: auto;
    }

    .comparison-table thead th:nth-child(2),
    .comparison-table thead th.featured,
    .comparison-table tbody td.featured {
        max-width: auto;
    }

    .comparison-table tbody td {
        width: 8%;
    }
}

@media (max-width: 945px) {
    .map-section {
        right: -90px;
    }

    .bottom-section {
        padding-top: 220px;
    }

    .florida-map {
        width: 800px;
    }
}

@media (max-width: 824px) {
    .map-section {
        right: -40px;
    }

    .florida-map {
        width: 800px;
    }
}

@media (max-width: 768px) {
    .main-content-container {
        padding: 45px 18px 0 18px;
    }

    .main-content {
        flex-direction: column;
        gap: 24px;
    }

    /* Updated mobile layout for new gallery structure */
    .image-gallery {
        flex-direction: column;
        gap: 16px;
    }

    .image-gallery.interactive-active::before {
        top: -5px;
        left: -5px;
        width: 130px;
        height: 134px;
    }

    .gallery-thumbnails {
        flex-direction: row;
        width: auto;
        order: 2;
        height: 80px;
    }

    .thumbnail {
        width: 61px;
        height: 78px;
    }


    /* Mobile arrow pointing up */
    .thumbnail.active::after {
        top: -8px;
        right: 50%;
        transform: translateX(50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #ff6c00;
        border-top: none;
    }

    .main-image {
        order: 1;
    }

    .right-section {
        gap: 30px;
    }

    .left-section .title {
        display: block;
    }

    .right-section .title,
    .right-section .rating {
        display: none;
    }

    .title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .subtitles {
        padding-top: 24px;
        margin-top: 0;
    }

    .features {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .filter-section {
        margin-bottom: 24px;
    }

    .counties {
        margin-top: -4px;
    }

    .pricing-card {
        padding: 34px 66px;
        gap: 20px;
        max-width: 270px;
    }

    .discover-section {
        padding: 0 18px 50px 18px;
        margin: 90px 0 0 0;
    }

    .discover-section:before {
        display: none;
    }

    .florida-text {
        display: none;
        top: -100px;
        width: 200px;
    }

    .discover-container:before {
        height: 100px;
        top: -90px;
    }

    .discover-container:after {
        display: none;
    }

    .discover-heading {
        margin-bottom: 18px;
    }

    .discover-subheading {
        font-size: 16px;
        margin: 0;
        line-height: 1.375;
        text-align: left;
        font-weight: bold;
    }

    .discover-header {
        margin-bottom: 24px;
    }

    .top-text-section {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0;
    }

    .text-column:first-child::before {
        content: "";
        display: block;
        width: 60vw;
        height: 58vw;
        margin: 0 auto 16px auto;
        background-image: url("/images/discover-map.png");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .top-text-section p {
        margin-bottom: 0;
    }

    .bottom-section {
        padding-top: 0;
    }

    .florida-map {
        width: 100%;
    }

    .map-section {
        display: none;
    }

    .bottom-left-text {
        max-width: 100%;
        padding-top: 24px;
    }

    .discover-heading,
    .how-map-organized-title,
    .why-choose-us-heading,
    .review-heading {
        font-size: 28px;
        text-align: left;
        line-height: 1.2;
        padding: 0;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-map-organized-section {
        padding: 40px 18px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, 290px);
        gap: 30px;
        margin-top: 20px;
        justify-content: flex-start;
    }

    .card {
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
        padding-top: 36px;
    }

    .card-title {
        font-size: 24px;
        height: auto;
    }

    .cards-content {
        padding: 26px 16px 22px 16px;
    }


    .why-choose-us-section {
        padding: 28px 18px;
    }

    .comparison-table thead th,
    .comparison-table tbody th,
    .comparison-table tbody td {
        padding: 8px 16px;
    }

    .comparison-table thead th:nth-child(2),
    .comparison-table th.featured,
    .comparison-table td.featured,
    .comparison-table tbody td {
        max-width: 100%;
        width: 100%;
    }

    .comparison-table th:first-child {
        background: #f4f4f4;
    }

    .comparison-table td.featured {
        background-color: #ffffff;
    }


    .comparison-table tbody tr.section-header th {
        padding: 0;
    }

    .reviews-section {
        padding: 28px 0;
    }

    .review-heading {
        margin-bottom: 24px;
        padding: 0 18px;
    }

    .overall-rating {
        align-items: flex-start;
        border-bottom: 1px solid #efefef;
        padding: 0 18px 28px 18px;
    }

    .reviewer {
        gap: 18px;
        margin-bottom: 18px;
    }

    .review-stars {
        margin-bottom: 16px;
    }

    .review-item {
        padding: 24px 18px;
        border-bottom: 1px solid #efefef;
    }

    .avatar {
        width: 50px;
        height: 50px;
    }

    .avatar img {
        width: 20px;
        height: 23px;
    }

    .review-content {
        margin-left: 0;
    }

    .load-more {
        margin-top: 30px;
    }
}

@media (max-width: 640px) {
    .buy-now-btn-container {
        display: block;
        margin-top: 10px;
    }

    .text-column:first-child::before {
        width: 90vw;
        height: 88vw;
        margin-left: -10px;
    }

    .florida-text {
        top: -80px;
        width: 135px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, 100%);
        gap: 18px;
        justify-content: flex-start;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .discover-section:before {
        top: 80px;
        left: 44%;
        height: 600px;
    }

    .filter-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 10px;
        row-gap: 13px;
    }

    .pricing-card {
        padding: 34px 66px 39px 66px;
        max-width: 100%;
    }
}

/* Mobile responsive styles for comparison table */
@media (max-width: 768px) {
    .why-choose-us-heading {
        margin-bottom: -16px;
    }

    .comparison-table-container {
        margin: 0;
        border-radius: 8px;
        background: transparent;
        box-shadow: none;
    }

    /* Mobile-first approach: Convert table to block elements */
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
        display: block;
        width: 100%;
    }

    /* Hide table headers on mobile */
    .comparison-table thead tr {
        display: none;
    }

    .comparison-table {
        background: transparent;
        min-width: auto;
    }

    /* Section headers as dividers */
    .comparison-table tr.section-header {
        background: none;
        border: none;
        margin: 38px 0 12px 0;
        padding: 0;
    }

    .comparison-table tr.section-header th {
        font-size: 24px;
        font-weight: 700;
        color: #161b1f;
        text-align: left;
        padding: 0;
        line-height: 0.917;
        border: none;
        background: none;
    }

    /* Transform each feature row into a card */
    .comparison-table tbody tr:not(.section-header) {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 22px;
        padding: 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.07);
        overflow: hidden;
    }

    .comparison-table tbody tr:not(.section-header):hover {
        background-color: white;
    }

    /* Feature name becomes card header */
    .comparison-table tbody th {
        background: #f8f9fa;
        padding: 12px 18px;
        margin: 0;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 700;
        color: #161b1f;
        border: none;
        border-bottom: 1px solid #e9ecef;
        text-align: left;
    }

    /* Each service comparison becomes a row in the card */
    .comparison-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 18px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        background: white;
        margin: 0;
        text-align: left;
    }

    /* Remove border from last row in card */
    .comparison-table tbody td:last-child {
        border-bottom: none;
    }

    /* Service name on the left */
    .comparison-table tbody td::before {
        content: attr(data-label);
        color: #161b1f;
        font-size: 16px;
        flex: 1;
    }

    /* Kvaala's service name in orange */
    .comparison-table tbody td[data-label*="Kvaala's"]::before {
        color: #ff6c00;
    }

    /* Icons positioned on the right */
    .comparison-table tbody td.yes::after,
    .comparison-table tbody td.no::after {
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Hide the span text on mobile for yes/no cells */
    .comparison-table tbody td.yes span,
    .comparison-table tbody td.no span {
        display: none;
    }

    /* Show effort text on mobile */
    .comparison-table tbody td .effort-text {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #161b1f;
        margin-left: auto;
        flex-shrink: 0;
    }
}

/* Tablet specific adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .comparison-table-container {
        margin: 0 20px;
    }

    .table-header,
    .section-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .header-cell:first-child,
    .section-title,
    .row-label {
        width: auto;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .row-label {
        padding: 14px 16px;
        font-size: 15px;
    }

    .row-cell {
        padding: 12px 16px;
    }

    .row-cell::before {
        font-size: 13px;
    }

    .row-cell.yes::after,
    .row-cell.no::after {
        width: 18px;
        height: 18px;
    }
}