:root {
    --navy: #1e2952;
    --sky: #45d3ff;
    --white: #fff;
    --beige: #f7f3ed;
    --maxw: 1200px;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--beige);
    color: var(--navy);
    min-height: 100%;
}

section,
header,
footer {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 1em;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--sky);
    color: var(--navy);
    font-weight: bold;
    padding: 1em 2em;
    border-radius: 6px;
    text-decoration: none;
    margin: 1.2em 0;
    font-size: 1.1em;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(69, 211, 255, 0.10);
}

.cta-button:hover,
.cta-button:focus {
    background: #23b6e6;
}

#hero {
    background-color: var(--navy);
    color: var(--white);
    padding: 4em 0;
    text-align: center;
    width: 100%;
}

#hero .section-inner {
    padding-top: 0;
    padding-bottom: 0;
}

#hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

#services {
    padding: 2em 0;
    width: 100%;
}

#services .section-inner {
    padding-top: 0;
    padding-bottom: 0;
}

#services ul {
    line-height: 2;
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
}

#services li {
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

#services li::before {
    content: "✅ ";
}

#testimonials {
    background-color: #f9f9f9;
    padding: 3em 1.5em;
    text-align: center;
}

#testimonials h2 {
    color: #1e2952;
}

#testimonials blockquote {
    font-style: italic;
    margin-bottom: 2em;
}

#testimonials strong {
    display: block;
    margin-top: 0.5em;
}

#testimonials .testimonial-profile {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #45d3ff;
    width: 90px;
    height: 90px;
}

#testimonials .testimonial-stars {
    font-size: 1.2em;
    color: #ffc107;
    line-height: 1;
}

#testimonials .testimonial-row {
    display: flex;
    align-items: center;
    gap: 1.2em;
    margin-bottom: 2em;
    text-align: left;
}

#testimonials .testimonial-row:last-child {
    margin-bottom: 0;
}

#testimonials .testimonial-row,
#testimonials > div > div {
    /* for inline style compatibility */
    max-width: 900px;
    margin: 0 auto 2em auto;
}

.testimonial-carousel {
    position: relative;
    max-width: 600px;
    margin: 1.5em auto 0;
}

.testimonial-slide {
    display: none;
    padding: 0 2.5em;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-carousel blockquote {
    font-size: 1.15em;
    line-height: 1.5;
    margin: 0 0 1em 0;
}

.testimonial-carousel .testimonial-author {
    font-weight: bold;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    margin-top: 1em;
}

.testimonial-btn {
    background: rgba(30, 41, 82, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    cursor: pointer;
}

.testimonial-dots {
    text-align: center;
}

.tdot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 3px;
    background: #bdefff;
    border-radius: 50%;
    cursor: pointer;
}

.tdot.active {
    background: #45d3ff;
}

#about {
    padding: 2em 0;
    width: 100%;
}

#about .section-inner {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
}

#book-now {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 3em 0;
    width: 100%;
}

#book-now .section-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 1.5em auto;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(30, 41, 82, 0.10);
    background: var(--sky);
    aspect-ratio: 16/9;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .section-inner {
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    #services .section-inner ul {
        text-align: center !important;
    }
    #testimonials .testimonial-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    #testimonials .testimonial-profile {
        margin-bottom: 0.5em;
    }
}

@media (max-width: 800px) {
    #hero h1 {
        font-size: 2em;
    }

    .hero-img {
        max-width: 98vw;
    }
}

@media (max-width: 640px) {
    #testimonials {
        padding: 3em 0;
    }
}

@media (max-width: 600px) {
    .section-inner {
        padding: 1em 0.5em;
    }

    #hero {
        padding: 2em 0;
    }

    #testimonials > div {
        max-width: 98vw;
        padding-left: 0;
        padding-right: 0;
    }
    #testimonials .testimonial-row,
    #testimonials > div > div {
        max-width: 98vw;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 2em;
        word-break: break-word;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    #testimonials blockquote {
        font-size: 1em;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
    }
}
