/* Desktop */
:root {
    --size-unit: 16; /* body font-size in design - no px */
    --size-container-ideal: 1440; /* screen-size in design - no px */
    --size-container-min: 1024px;
    --size-container-max: 1320px;
    --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
    --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}
  
/* Tablet */
@media screen and (max-width: 991px) {
    :root {
      --size-container-ideal: 834; /* screen-size in design - no px */
      --size-container-min: 768px;
      --size-container-max: 991px;
    }
}
  
/* Mobile Landscape */
@media screen and (max-width: 767px) {
    :root {
      --size-container-ideal: 550; /* screen-size in design - no px */
      --size-container-min: 480px;
      --size-container-max: 767px;
    }
}
  
/* Mobile Portrait */
@media screen and (max-width: 479px) {
    :root {
      --size-container-ideal: 390; /* screen-size in design - no px */
      --size-container-min: 320px;
      --size-container-max: 479px;
    }
}

.app {
    font-size: 16px;
}

.app .container {
    max-width: var(--size-container);
}
  
.app .container.medium {
    max-width: calc(var(--size-container) * 0.85);
}
  
.app .container.small {
    max-width: calc(var(--size-container) * 0.7);
}

/* Global Container */
.app .container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding: 0;
}

.font-orange { color: #D7764D; }
.bg-orange { background-color: #D7764D; }
.font-grey { color: #6F6F6F; }
.bg-grey { background-color: #6F6F6F; }
.font-white { color: #FFFFFF; }
.bg-white { background-color: #FFFFFF; }
.font-black { color: #000000; }
.bg-black { background-color: #000000; }
.font-dark-blue { color: #0B2655; }
.bg-dark-blue { background-color: #0B2655; }

.font-title {
    font-size: 5em;
    line-height: 1.1;
    letter-spacing: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.font-subtitle-xl {
    font-size: 3.5em;
    line-height: 1.1;
    letter-spacing: 0;
}

.font-subtitle-l {
    font-size: 2em;
    line-height: 1.2;
    letter-spacing: 0;
}

.font-subtitle-m {
    font-size: 1.5em;
    line-height: 1;
    letter-spacing: 0;
}

/* Responsive Font Sizes - Tablet */
@media screen and (max-width: 991px) {
    .font-title {
        font-size: 4em;
    }
    
    .font-subtitle-xl {
        font-size: 3em;
    }
}

/* Responsive Font Sizes - Mobile Landscape */
@media screen and (max-width: 767px) {
    .font-title {
        font-size: 3em;
    }
    
    .font-subtitle-xl {
        font-size: 2.5em;
    }
    
    .font-subtitle-l {
        font-size: 1.75em;
    }
}

/* Responsive Font Sizes - Mobile Portrait */
@media screen and (max-width: 479px) {
    .font-title {
        font-size: 2.5em;
    }
    
    .font-subtitle-xl {
        font-size: 2em;
    }
    
    .font-subtitle-l {
        font-size: 1.5em;
    }
    
    .font-subtitle-m {
        font-size: 1.25em;
    }
}

.font-eyebrow-s {
    font-size: .85em;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.font-body-xl {
    font-size: 1.25em;
    letter-spacing: 0;
    line-height: 1.75em;
}

.font-body-l {
    font-size: 1.125em;
    letter-spacing: 0;
    line-height: 1.5em;
}

.font-body-m {
    font-size: 1em;
    letter-spacing: 0;
    line-height: 1.5em;
}

.font-body-s {
    font-size: 0.875em;
    letter-spacing: 0;
    line-height: 1.375em;
}

.font-button-m {
    font-size: 1em;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
}

.font-button-s {
    font-size: .75em;
    letter-spacing: .15em;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-regular {
    font-weight: 400;
}

.font-light {
    font-weight: 300;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    padding: 4em 0 4em 24px;
}

/* Prevent FOUC on hero elements */
.hero__eyebrow,
.hero__title,
.hero__body,
.hero__button,
.hero__video-wrapper {
    opacity: 0;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 0 6vw;
}

.hero__eyebrow {
    margin-bottom: 0.5em;
}

.hero__title {
    margin-bottom: 0;
}

.hero__body {
    margin-bottom: 0;
}

.hero__button {
    display: inline-block;
    padding: 1.25em 2.5em;
    border-radius: 0.5em;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 118, 77, 0.3);
}

.hero__media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 675 / 485;
    border-radius: 1em 0 0 1em;
    overflow: hidden;
}

.hero__media img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.hero__video-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero__play-button {
    width: 5em;
    height: 5em;
    border-radius: 100%;
    overflow: hidden;
    background-color: #D7764D;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(215, 118, 77, 0.4);
}

.hero__play-button:hover {
    opacity: 0.8;
}

.hero__play-button svg {
    width: 2em;
    height: 2em;
    margin-left: 0.25em;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 3em;
        padding-inline: 0;
    }

    .hero {
        padding: 4em 24px;
    }

    .hero__text {
        padding: 0;
    }

    .hero__media {
        border-radius: 1em;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    /* .hero {
        padding: 4em 0;
    } */
    
    .hero__content {
        padding-inline: 0 !important;
        gap: 2.5em;
    }
    
    .hero__body br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .hero__content {
        padding-inline: 0 !important;
        gap: 2em;
    }
    
    .hero__button {
        padding: 1em 2em;
        width: 100%;
        text-align: center;
    }
    
    .hero__play-button {
        width: 4em;
        height: 4em;
    }
}

/* Info Section */
.info-section {
    width: 100%;
    padding: 6em 24px;
}

.info-section__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6em;
}

.info-section__left {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 1.5em;
    grid-column: span 5;
}

.info-section__eyebrow {
    margin-bottom: 0;
}

.info-section__title {
    margin-bottom: 0;
}

.info-section__body {
    margin-bottom: 0;
}

.info-section__button {
    display: inline-block;
    padding: 1.25em 2.5em;
    border-radius: 0.5em;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    margin-top: 0;
}

.info-section__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 118, 77, 0.3);
}

.info-section__right {
    display: flex;
    flex-direction: column;
    gap: 3em;
    grid-column: 7 / -1;
}

.info-section__item {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.info-section__subtitle {
    margin-bottom: 0.25em;
}

.info-section__text {
    margin-bottom: 0.5em;
}

.info-section__meta {
    margin-bottom: 0.5em;
}

.info-section__times {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.time-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 1.25em;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: .5em;
    backdrop-filter: blur(10px);
}

.time-tag svg {
    width: 1.25em;
    height: 1.25em;
    flex-shrink: 0;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .info-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .info-section__left,
    .info-section__right {
        grid-column: span 12;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .info-section__content {
        padding-inline: 2em;
        gap: 2.5em;
    }
    
    .info-section__right {
        gap: 2em;
    }
    
    .info-section__times {
        gap: 0.75em;
    }
    
    .info-section__body br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .info-section__content {
        padding-inline: 1.5em;
        gap: 2em;
    }
    
    .info-section__button {
        padding: 1em 2em;
        width: 100%;
        text-align: center;
    }
    
    .info-section__right {
        gap: 1.5em;
    }
    
    .info-section__times {
        flex-direction: column;
    }
    
    .time-tag {
        width: 100%;
        justify-content: center;
    }
}

/* Travelers Section */
.travelers-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    background: #fff url('../../images/map-dots.svg') bottom center no-repeat;
    background-size: 90%;
}

.travelers-section__content {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
}

.travelers-section__center {
    grid-column: 4 / span 6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    z-index: 2;
    position: relative;
}

.travelers-section__container {
    grid-column: 4 / span 6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    z-index: 2;
    position: relative;
}

.travelers-section__eyebrow {
    margin-bottom: 0.5em;
}

.travelers-section__title {
    margin-bottom: 0;
}

.travelers-section__body {
    margin-bottom: 0;
}

.travelers-section__button {
    display: inline-block;
    padding: 1.25em 2.5em;
    border-radius: 0.5em;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1em;
}

.travelers-section__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 118, 77, 0.3);
}

.travelers-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 1em;
    width: 140px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75em;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.travelers-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelers-card__icon .placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelers-card__icon .placeholder-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.travelers-card__label {
    margin: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
}

/* Card Positions & Rotations */
.travelers-card--hotels {
    top: 8%;
    left: 2%;
    transform: rotate(-8deg);
}

.travelers-card--restaurants {
    top: 8%;
    right: 2%;
    transform: rotate(8deg);
}

.travelers-card--rv {
    bottom: 12%;
    left: 15%;
    transform: rotate(5deg);
}

.travelers-card--activities {
    bottom: 12%;
    right: 12%;
    transform: rotate(-5deg);
}

/* Cards container - hidden on desktop (cards use absolute positioning) */
.travelers-section__cards {
    display: contents;
}

travelers-section__cards a {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Below 1024px - Cards in horizontal line */
@media screen and (max-width: 1024px) {
    .travelers-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        gap: 2em;
    }
    
    .travelers-section__center {
        width: 100%;
        max-width: 600px;
    }
    
    .travelers-section__cards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5em;
        width: 100%;
        margin-top: 2em;
    }
    
    .travelers-card {
        position: static;
        transform: none !important;
    }
    
    .travelers-card--hotels,
    .travelers-card--restaurants,
    .travelers-card--rv,
    .travelers-card--activities {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

/* Tablet */
@media screen and (max-width: 991px) {
    .travelers-section__content {
        padding-inline: 4em;
        gap: 3em;
    }
    
    .travelers-section__center {
        max-width: 100%;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    
    .travelers-section__content {
        padding-inline: 2em;
        gap: 2.5em;
    }
    
    .travelers-section__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .travelers-section__body br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .travelers-section__content {
        padding-inline: 1.5em;
        gap: 2em;
    }
    
    .travelers-section__cards {
        gap: 1em;
    }
    
    .travelers-section__button {
        padding: 1em 2em;
        width: 100%;
        text-align: center;
    }
}

/* Families Section */
.families-section {
    width: 100%;
    padding: 8em 24px;
}

.families-section__content {
    display: flex;
    flex-direction: column;
    gap: 7em;
}

.families-section__text {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5em;
    grid-column: span 5;
    align-items: center;
}

.families-section__text-container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    grid-column: span 5;
}

.families-section__text-content {
    grid-column: 7 / -1;
}

.families-section__eyebrow {
    margin-bottom: 0.5em;
}

.families-section__title {
    margin-bottom: 0;
}

.families-section__body {
    margin-bottom: 0;
}

.families-section__link {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity 0.3s ease;
}

.families-section__link:hover {
    opacity: 0.8;
}

.families-section__cards {
    grid-column: span 7;
}

.families-swiper {
    width: 100%;
    overflow: visible;
}

.ministry-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5em;
    overflow: hidden;
    height: 100%;
    min-height: 33em;
    aspect-ratio: 430/548;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ministry-card__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ministry-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a7b 100%);
}

.ministry-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.ministry-card__content {
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    flex: 1;
    position: relative;
    z-index: 2;
    justify-content: flex-end;
}

.ministry-card__schedule {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.ministry-card__days {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25em;
}

.ministry-card__day {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.ministry-card__day-label {
    margin: 0;
}

.ministry-card__times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
}

.ministry-time {
    display: inline-flex;
    align-items: start;
    gap: 0.5em;
}

.ministry-time svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    margin-top: 0.15em;
}

.ministry-card__actions {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: auto;
}

.ministry-card__button {
    display: inline-block;
    padding: 1em 1.75em;
    border: 1px solid #FFFFFF;
    border-radius: 0.5em;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.ministry-card__button:hover {
    background-color: #FFFFFF;
    color: #0B2655;
}

.ministry-card__play {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background-color: #ffffff20;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ministry-card__play:hover {
    background-color: #FFFFFF;
}

.ministry-card__play:hover svg path {
    fill: #0B2655;
}

.ministry-card__play svg {
    width: 1em;
    height: 1em;
    margin-left: 0.15em;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .families-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .families-section__text {
        grid-column: span 12;
        display: flex;
        flex-direction: column;
    }
    
    .families-section__cards {
        grid-column: span 12;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .families-section__content {
        gap: 2.5em;
        padding-inline: 2em;
    }
    
    /* Cards em 1 coluna abaixo de 768px */
    .families-swiper .swiper-wrapper {
        flex-direction: column;
        gap: 1.5em;
    }
    
    .families-swiper .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }
    
    .ministry-card {
        min-height: 28em;
        aspect-ratio: auto;
    }
    
    .ministry-card__content {
        padding: 1.5em;
    }
    
    .ministry-card__title {
        padding: 1.25em;
    }
    
    .families-section__body br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .families-section__content {
        gap: 2em;
        padding-inline: 1.5em;
    }
    
    .families-swiper .swiper-wrapper {
        gap: 1.25em;
    }
    
    .ministry-card {
        min-height: 24em;
    }
    
    .ministry-card__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ministry-card__button {
        text-align: center;
    }
    
    .ministry-card__play {
        align-self: center;
    }
    
    .ministry-card__title {
        padding: 1em;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #F5F7FA;
}

.faq-section__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4em;
}

.faq-section__header {
    grid-column: 4 / span 6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-bottom: 2em;
}

.faq-section__eyebrow {
    margin-bottom: 0.5em;
}

.faq-section__title {
    margin: 0;
}

.faq-section__list {
    grid-column: 2 / span 10;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(111, 111, 111, 0.2);
    transition: all 0.3s ease;
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    padding: 2em 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    opacity: 0.8;
}

.faq-item__question-text {
    margin: 0;
    flex: 1;
}

.faq-item__icon {
    width: 2em;
    height: 2em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D7764D;
    transition: transform 0.3s ease;
}

.faq-item__icon svg {
    width: 100%;
    height: 100%;
}

.faq-icon__minus {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-icon__plus {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.faq-item.is-open .faq-icon__minus {
    opacity: 1;
}

.faq-item.is-open .faq-icon__plus {
    opacity: 0;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer-inner {
    padding-bottom: 2em;
}

.faq-item__answer-inner p {
    margin: 0;
}

.faq-item--hidden {
    display: none;
}

.faq-section__list.faq-section__list--expanded .faq-item--hidden {
    display: block;
}

.faq-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    grid-column: 2 / span 10;
}

.faq-section__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-section__view-all:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.faq-section__view-all-count {
    opacity: 0.85;
}

.faq-section__footer--hidden {
    display: none;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .faq-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .faq-section__header {
        grid-column: 2 / span 10;
    }
    
    .faq-section__list {
        grid-column: 2 / span 10;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .faq-section__content {
        gap: 2.5em;
        padding-inline: 2em;
    }
    
    .faq-section__header {
        grid-column: span 12;
        margin-bottom: 1em;
    }
    
    .faq-section__list {
        grid-column: span 12;
    }
    
    .faq-item__question {
        padding: 1.5em 0;
        gap: 1.5em;
    }
    
    .faq-item__answer-inner {
        padding-bottom: 1.5em;
    }
    
    .faq-section__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .faq-section__content {
        gap: 2em;
        padding-inline: 1.5em;
    }
    
    .faq-item__question {
        padding: 1.25em 0;
        gap: 1em;
    }
    
    .faq-item__icon {
        width: 1.5em;
        height: 1.5em;
    }
    
    .faq-item__answer-inner {
        padding-bottom: 1.25em;
    }
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 8em 24px 0 24px;
    background-color: #E7E9EE;
}

.contact-section__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6em;
}

.contact-section__left {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.contact-section__eyebrow {
    margin-bottom: 0.5em;
}

.contact-section__title {
    margin-bottom: 0;
}

.contact-section__body {
    margin-bottom: 1em;
}

.contact-section__call {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    margin-top: 2em;
}

.contact-section__phone-icon {
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
}

.contact-section__call-label {
    margin: 0 0 0.25em 0;
    padding: 0;
}

.contact-section__call-number {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section__call-number:hover {
    color: #D7764D;
}

.contact-section__right {
    grid-column: span 7;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 100%;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.contact-form__label {
    margin: 0;
}

.contact-form__input,
.contact-form__select {
    padding: 1em 1.25em;
    border: 1px solid #FFFFFF;
    border-radius: 0.5em;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    color: #BDBDBD;
    font-family: 'Montserrat', sans-serif;
}

.contact-form__input::placeholder {
    color: #BDBDBD;
}

.contact-form__input:focus,
.contact-form__select:focus {
    outline: none;
    border-color: #D7764D;
    box-shadow: 0 0 0 3px rgba(215, 118, 77, 0.1);
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D7764D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 3em;
    cursor: pointer;
}

.contact-form__select[multiple] {
    min-height: 8em;
    background-image: none;
    padding-right: 1.25em;
}

.contact-form__select option {
    padding: 0.5em;
}

.contact-form__submit {
    padding: 1.25em 2.5em;
    border: none;
    border-radius: 0.5em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1em;
    align-self: flex-start;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 118, 77, 0.3);
}

/* Tablet */
@media screen and (max-width: 991px) {
    .contact-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .contact-section__left {
        grid-column: span 12;
    }
    
    .contact-section__right {
        grid-column: span 12;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .contact-section__content {
        gap: 2.5em;
        padding-inline: 2em;
    }
    
    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .contact-section__body br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .contact-section__content {
        gap: 2em;
        padding-inline: 1.5em;
    }
    
    .contact-form {
        gap: 1.25em;
    }
    
    .contact-form__submit {
        padding: 1em 2em;
        width: 100%;
        text-align: center;
    }
}

/* Hotels Section */
.hotels-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #FFFFFF;
}

.hotels-section__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6em;
}

.hotels-section__left {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    position: relative;
}

.hotels-section__eyebrow {
    margin-bottom: 0.5em;
}

.hotels-section__title {
    margin-bottom: 0;
}

.hotels-section__pattern {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: 
        repeating-conic-gradient(#E8E8E8 0% 25%, #F5F5F5 0% 50%) 
        50% / 2em 2em; */
    margin-left: calc(-50vw + 50%);
    width: calc(100% + 50vw - 50%);
    overflow: hidden;
    border-top-right-radius: 2.4rem;
    border-bottom-right-radius: 2.4rem;
}

.hotels-section__pattern img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotels-section__right {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.hotel-card {
    padding: 2em;
    background-color: #F5F7FA;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.hotel-card__name {
    margin: 0 0 0.5em 0;
}

.hotel-card__address,
.hotel-card__phone,
.hotel-card__distance {
    margin: 0;
    padding: 0;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .hotels-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .hotels-section__left {
        grid-column: span 12;
    }
    
    .hotels-section__right {
        grid-column: span 12;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .hotels-section__content {
        gap: 2.5em;
        padding-inline: 2em;
    }
    
    .hotels-section__right {
        gap: 1.5em;
    }
    
    .hotel-card {
        padding: 1.5em;
    }
    
    .hotels-section__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .hotels-section__content {
        gap: 2em;
        padding-inline: 1.5em;
    }
    
    .hotel-card {
        padding: 1.25em;
    }
}

/* RV Section */
.rv-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #E7E9EE;
}

.rv-section__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6em;
}

.rv-section__left {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    position: relative;
}

.rv-section__eyebrow {
    margin-bottom: 0.5em;
}

.rv-section__title {
    margin-bottom: 0;
}

.rv-section__pattern {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-conic-gradient(#D8DADF 0% 25%, #E7E9EE 0% 50%) 
        50% / 2em 2em;
}

.rv-section__right {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.rv-card {
    padding: 2em;
    background-color: #FFFFFF;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.rv-card__name {
    margin: 0 0 0.5em 0;
}

.rv-card__address,
.rv-card__phone {
    margin: 0;
    padding: 0;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .rv-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .rv-section__left {
        grid-column: span 12;
    }
    
    .rv-section__right {
        grid-column: span 12;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .rv-section__content {
        gap: 2.5em;
        padding-inline: 2em;
    }
    
    .rv-section__right {
        gap: 1.5em;
    }
    
    .rv-card {
        padding: 1.5em;
    }
    
    .rv-section__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .rv-section__content {
        gap: 2em;
        padding-inline: 1.5em;
    }
    
    .rv-card {
        padding: 1.25em;
    }
}

/* Restaurants Section */
.restaurants-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #F9F9F9;
}

.restaurants-section__content {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.restaurants-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    max-width: 100%;
    width: 40em;
    margin: 0 auto;
}

.restaurants-section__eyebrow {
    margin-bottom: 0.5em;
}

.restaurants-section__title {
    margin: 0;
}

.restaurants-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
}

.restaurant-card {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-decoration: none;
}

.restaurant-card__image {
    width: 100%;
    aspect-ratio: 16/11;
    border-radius: 1em;
    overflow: hidden;
    background-color: #F5F7FA;
}

.placeholder-restaurant-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E7E9EE 0%, #D8DADF 100%);
    position: relative;
}

.placeholder-restaurant-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.restaurant-card__name {
    margin: 0;
    text-align: center;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .restaurants-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .restaurants-section__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5em;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .restaurants-section__content {
        gap: 2.5em;
        padding-inline: 2em;
    }
    
    .restaurants-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25em;
    }
    
    .restaurants-section__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .restaurants-section__content {
        gap: 2em;
        padding-inline: 1.5em;
    }
    
    .restaurants-section__grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
}

/* Activities Section */
.activities-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.activities-section__content {
    display: flex;
    flex-direction: column;
    gap: 4em;
    max-width: 100%;
}

.activities-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    max-width: 100%;
    width: 40em;
    margin: 0 auto;
}

.activities-section__title {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.activities-section__eyebrow {
    margin-bottom: 0.5em;
}

.activities-section__title {
    margin: 0;
}

.activities-section__body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 7em;
    max-width: 100%;
}

.activities-section__image {
    grid-column: span 6;
    max-width: 100%;
    overflow: hidden;
}

.placeholder-activities-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1em;
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a7b 100%);
    overflow: hidden;
    position: relative;
}

.placeholder-activities-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.activities-section__accordions {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Activity Accordion */
.activity-accordion {
    border-bottom: 1px solid rgba(111, 111, 111, 0.2);
    transition: all 0.3s ease;
}

.activity-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    padding: 1.5em 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.activity-accordion__trigger:hover {
    opacity: 0.8;
}

.activity-accordion__title {
    margin: 0;
    flex: 1;
}

.activity-accordion__icon {
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.activity-accordion.is-open .activity-accordion__icon {
    transform: rotate(180deg);
}

.activity-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-accordion__inner {
    padding-bottom: 1.5em;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.activity-list__item {
    margin: 0;
    padding-left: 1.5em;
    position: relative;
}

.activity-list__item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D7764D;
    font-weight: bold;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .activities-section__content {
        gap: 3em;
    }
    
    .activities-section__body {
        display: flex;
        flex-direction: column;
        gap: 3em;
    }
    
    .activities-section__image {
        width: 100%;
    }
    
    .activities-section__accordions {
        width: 100%;
    }
    
    .activities-section__header {
        width: 100%;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .activities-section__content {
        gap: 2.5em;
    }
    
    .activities-section__body {
        gap: 2.5em;
    }
    
    .activity-accordion__trigger {
        padding: 1.25em 0;
        gap: 1em;
    }
    
    .activity-accordion__inner {
        padding-bottom: 1.25em;
    }
    
    .activities-section__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .activities-section__content {
        gap: 2em;
    }
    
    .activity-accordion__trigger {
        padding: 1em 0;
    }
    
    .activity-accordion__icon {
        width: 1.25em;
        height: 1.25em;
    }
    
    .activity-accordion__inner {
        padding-bottom: 1em;
    }
}

footer {
    height: 400px;
    background-color: #1A3A5C;
}

/* Welcome Kiosk Section */
.welcome-kiosk {
    width: 100%;
    position: relative;
    padding: 8em 24px;
}

/* Prevent FOUC on welcome-kiosk elements */
.welcome-kiosk__eyebrow,
.welcome-kiosk__title,
.welcome-kiosk__body,
.welcome-kiosk__button,
.welcome-kiosk__image-wrapper {
    opacity: 0;
}

.welcome-kiosk__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.welcome-kiosk__text {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.welcome-kiosk__eyebrow {
    margin-bottom: 0.5em;
}

.welcome-kiosk__title {
    margin-bottom: 0;
}

.welcome-kiosk__body {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 0;
}

.welcome-kiosk__paragraph {
    margin: 0;
}

.welcome-kiosk__paragraph strong {
    font-weight: 700;
}

.welcome-kiosk__button {
    display: inline-block;
    padding: 1.25em 2.5em;
    border-radius: 0.5em;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.welcome-kiosk__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 118, 77, 0.3);
}

.welcome-kiosk__media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-kiosk__image-wrapper {
    width: 100%;
    aspect-ratio: 16/16;
    background: 
        repeating-conic-gradient(#E8E8E8 0% 25%, #F5F5F5 0% 50%) 
        50% / 3em 3em;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.welcome-kiosk img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .welcome-kiosk__content {
        grid-template-columns: 1fr;
        gap: 3em;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .welcome-kiosk__content {
        gap: 2.5em;
    }
    
    .welcome-kiosk__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .welcome-kiosk__content {
        gap: 2em;
    }
    
    .welcome-kiosk__button {
        padding: 1em 2em;
        width: 100%;
        text-align: center;
    }
}

/* Where Section */
.where-section {
    width: 100%;
    padding: 8em 24px;
    background-color: #F5F7FA;
}

.where-section__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4em;
    padding: 0 5em !important;
}

.where-card {
    background: #FFFFFF;
    border-radius: 2em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5em 1.5em 2.5em 1.5em;
}

.where-card h2 {
    font-size: 2em;
    font-weight: 600;
}

.where-card p {
    font-size: 16px;
    line-height: 24px;
}

.where-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.where-card--location {
    grid-column: span 6;
}

.where-card--parking {
    grid-column: span 6;
}

.where-card__image {
    width: 100%;
    height: 20em;
    position: relative;
    overflow: hidden;
    border-radius: .75em;
    margin-bottom: 2em;
}

.where-card__image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.where-card--video .where-card__image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4em;
    height: 4em;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='32' cy='32' r='32' fill='%23D7764D'/%3E%3Cpath d='M26 22V41.2L42 31.6L26 22Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.where-card--video:hover .where-card__image::after {
    /* background-color: #0B2655; */
    opacity: 0.8;
    /* transform: translate(-50%, -50%) scale(1.1); */
}

.where-card__image img {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.where-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.where-card__title {
    margin: 0;
    margin-bottom: 16px;
}

.where-card__address {
    margin: 0;
}

.where-card__availability {
    margin: 0;
}

.where-card__directions {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.where-card__directions p {
    color: #6F6F6F;
    font-size: 16px;
    line-height: 24px;
}

.where-card__directions ul {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.where-card__directions li {
    color: #6F6F6F;
}

.where-card__directions ul li {
    position: relative;
    padding-left: 1.5em;
    margin: 0;
    list-style: none;
    font-size: 16px;
    line-height: 24px;
}

.where-card__directions ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D7764D;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
}

.where-card__description,
.where-card__recommendation {
    margin: 0;
}

.where-card__button {
    display: inline-block;
    padding: 1.25em 2.5em;
    border-radius: 0.25em;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.where-card__button:hover  {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(91, 77, 215, 0);
    background-color: #0B2655;
    color: #FFFFFF;
}

/* Tablet */
@media screen and (max-width: 991px) {    
    .where-section__content {
        gap: 3em;
        padding-inline: 4em;
    }
    
    .where-card--location,
    .where-card--parking {
        grid-column: span 12;
    }

    .where-section {
        padding: 4em 24px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {    
    .where-section__content {
        gap: 2.5em;
        padding-inline: 0 !important;
    }
    
    .where-card__content {
        padding: 2em;
    }
    
    .where-card__image {
        height: 18em;
    }
    
    .where-card__title br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {    
    .where-section__content {
        gap: 2em;
        padding-inline: 0 !important;
    }
    
    .where-card__content {
        padding: 1.5em;
        gap: 1.25em;
    }
    
    .where-card__image {
        height: 16em;
    }
    
    .where-card__button {
        padding: 1em 2em;
        width: 100%;
    }
}

/* Download App Section */
.download-app {
    width: 100%;
    padding: 8em 24px;
}

.download-app__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.download-app__media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-app__image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.download-app__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-app__text {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.download-app__title {
    margin: 0;
}

.download-app__subtitle {
    margin: 0;
    padding: 0;
}

.download-app__description {
    margin: 0;
}

.download-app__badges {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.download-app__badge {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.download-app__badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.download-app__badge-image {
    height: 3.5em;
    width: auto;
    display: block;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .download-app__content {
        grid-template-columns: 1fr;
        gap: 3em;
        padding-inline: 4em;
    }
    
    .download-app__media {
        order: 2;
    }
    
    .download-app__text {
        order: 1;
        text-align: center;
    }
    
    .download-app__badges {
        justify-content: center;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .download-app__content {
        padding-inline: 2em;
        gap: 2.5em;
    }
    
    .download-app__badges {
        flex-direction: row;
        align-items: center;
    }
    
    .download-app__badge-image {
        height: 3em;
    }
    
    .download-app__title br,
    .download-app__description br {
        display: none;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .download-app__content {
        padding-inline: 1.5em;
        gap: 2em;
    }
    
    .download-app__badge-image {
        height: 2.5em;
    }
}

/* Contact Section Map */
.contact-section__map {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    aspect-ratio: 1512/365;
    margin-top: 4em;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(70% 100% at 50% 100%);
    -webkit-clip-path: ellipse(70% 100% at 50% 100%);
}

.contact-section__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Tablet */
@media screen and (max-width: 991px) {
    .contact-section__map {
        margin-top: 3em;
        height: 300px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .contact-section__map {
        margin-top: 3em;
        height: 250px;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .contact-section__map {
        margin-top: 2em;
        height: 200px;
    }
}