:root {
    --sunset-orange: #f77f00;
    --cream-background: #fef4e6;
    --burnt-sienna: #d45500;
    --forest-emerald: #28AE60;
    --ocean-depth: #2b98f0;
    --charcoal-text: #2c2c2c;
    --silver-border: #e3e4e7;
    --warm-white: #fdfdfd;
    --shadow-subtle: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-text);
    background: var(--warm-white);
    overflow-x: hidden;
}

.site-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.primary-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    z-index: 1000;
    border-bottom: 1px solid var(--silver-border);
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-logo img {
    height: 42px;
    width: auto;
}

.mobile-nav-toggle {
    display: none;
}

.toggle-button {
    display: none;
}

.hamburger-icon {
    width: 28px;
    height: 3px;
    background: var(--charcoal-text);
    position: relative;
    transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--charcoal-text);
    transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-icon:before {
    top: -9px;
}

.hamburger-icon:after {
    top: 9px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu-item {
    list-style: none;
}

.menu-link {
    color: var(--charcoal-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.34s ease;
}

.menu-link:hover {
    color: var(--sunset-orange);
}

@media screen and (max-width: 890px) {
    .toggle-button {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--warm-white);
        transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menu-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--charcoal-text);
    }

    .mobile-nav-toggle:checked ~ .navigation-wrapper {
        left: 0;
    }

    .mobile-nav-toggle:checked ~ .toggle-button .hamburger-icon {
        background: transparent;
    }

    .mobile-nav-toggle:checked ~ .toggle-button .hamburger-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-nav-toggle:checked ~ .toggle-button .hamburger-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.banner-area {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content {
    position: relative;
    z-index: 10;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20%;
}

.hero-text-section {
    text-align: left;
}

.hero-label {
    display: inline-block;
    background: rgba(247, 127, 0, 0.9);
    color: white;
    padding: 8px 21px;
    border-radius: 34px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 21px;
    opacity: 0;
    transform: translateY(34px);
    animation: slideUpFade 0.89s ease 0.1s forwards;
}

.banner-content h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(34px);
    animation: slideUpFade 0.89s ease 0.3s forwards;
}

.banner-content h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(34px);
    animation: slideUpFade 0.89s ease 0.5s forwards;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 34px;
    opacity: 0;
    transform: translateY(34px);
    animation: slideUpFade 0.89s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 21px;
    opacity: 0;
    transform: translateY(34px);
    animation: slideUpFade 0.89s ease 0.9s forwards;
}

.cta-button {
    display: inline-block;
    padding: 17px 34px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.34s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    min-width: 180px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--burnt-sienna));
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(247, 127, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--burnt-sienna);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 21px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(13px);
    padding: 21px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(34px);
    animation: slideInRight 0.89s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.8s;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-spacing {
    padding: 89px 0;
}

.intro-content {
    background: var(--cream-background);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--burnt-sienna);
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 21px;
    color: var(--charcoal-text);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px var(--shadow-subtle);
}

.services-showcase {
    background: var(--warm-white);
}

.section-header {
    margin-bottom: 67px;
}

.section-header.centered-text {
    text-align: center;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 13px;
    color: var(--burnt-sienna);
}

.section-header p {
    font-size: 18px;
    color: #888;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.service-card {
    background: white;
    padding: 34px 21px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.service-card h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 17px;
    color: var(--burnt-sienna);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-text);
}

.accommodation-preview {
    padding: 89px 0;
    background: var(--cream-background);
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.preview-visual img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 55px var(--shadow-subtle);
}

.details-content {
    padding-left: 21px;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-depth);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.details-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--burnt-sienna);
    line-height: 1.3;
}

.details-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 21px;
    color: var(--charcoal-text);
}

.action-area {
    margin-top: 34px;
}

.secondary-button {
    display: inline-block;
    padding: 13px 34px;
    background: transparent;
    color: var(--ocean-depth);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--ocean-depth);
    border-radius: 8px;
    transition: all 0.34s ease;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.secondary-button:hover {
    background: var(--ocean-depth);
    color: white;
    transform: translateY(-2px);
}

.experience-steps {
    background: var(--warm-white);
}

.steps-header {
    text-align: center;
    margin-bottom: 67px;
}

.steps-header h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 13px;
    color: var(--burnt-sienna);
}

.steps-header p {
    font-size: 18px;
    color: #888;
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-item {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    left: 75%;
    width: 100%;
    height: 4px;
    background: var(--ocean-depth);
    border-radius: 2px;
    z-index: -1;
}

.step-number {
    width: 55px;
    height: 55px;
    border: 4px solid var(--ocean-depth);
    background: white;
    border-radius: 50%;
    color: var(--ocean-depth);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.34s ease;
    position: relative;
    z-index: 1;
}

.step-item:hover .step-number {
    background: var(--ocean-depth);
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal-text);
    transition: color 0.34s ease;
}

.step-item:hover .step-title {
    color: var(--ocean-depth);
}

.booking-section {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--cream-background) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.booking-header {
    text-align: center;
    margin-bottom: 67px;
    position: relative;
    z-index: 2;
}

.booking-header .section-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-depth);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.booking-header h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--burnt-sienna);
}

.booking-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 67px;
    position: relative;
    z-index: 2;
}

.booking-form-container {
    background: white;
    padding: 42px;
    border-radius: 21px;
    box-shadow: 0 21px 67px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 127, 0, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.date-group {
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: var(--burnt-sienna);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 17px 21px;
    border: 2px solid var(--silver-border);
    border-radius: 13px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: all 0.34s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 4px rgba(247, 127, 0, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4z"/><path fill="%23666" d="M0 3l2 2 2-2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 17px center;
    background-size: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 21px;
}

.booking-submit-btn {
    background: linear-gradient(135deg, var(--sunset-orange), var(--burnt-sienna));
    color: white;
    border: none;
    padding: 21px 55px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.34s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
    overflow: hidden;
}

.booking-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.booking-submit-btn:hover::before {
    left: 100%;
}

.booking-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(247, 127, 0, 0.4);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.34s ease;
}

.booking-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.info-card,
.contact-card {
    background: white;
    padding: 34px;
    border-radius: 21px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(247, 127, 0, 0.1);
}

.info-header h3,
.contact-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--burnt-sienna);
    text-align: center;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--charcoal-text);
}

.info-value {
    font-weight: 500;
    color: var(--sunset-orange);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 21px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    margin-top: 3px;
}

.contact-details strong {
    display: block;
    font-weight: 600;
    color: var(--burnt-sienna);
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--charcoal-text);
    line-height: 1.5;
}

.site-footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 67px 0 34px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.site-footer .site-container {
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 55px;
    margin-bottom: 55px;
}

.footer-about h3 {
    color: white;
    font-size: 21px;
    margin-bottom: 21px;
    font-weight: 600;
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 21px;
}

.footer-link-button {
    display: inline-block;
    padding: 13px 21px;
    background: var(--sunset-orange);
    color: white;
    text-decoration: none;
    border-radius: 34px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.34s ease;
}

.footer-link-button:hover {
    background: var(--burnt-sienna);
    transform: translateY(-2px);
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.nav-column h3 {
    color: white;
    font-size: 19px;
    margin-bottom: 21px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.34s ease;
}

.footer-links a:hover {
    color: var(--sunset-orange);
}

.footer-social h3 {
    color: white;
    font-size: 19px;
    margin-bottom: 21px;
    font-weight: 600;
}

.social-link {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 0 8px 8px 0;
    transition: all 0.34s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--sunset-orange);
    transform: translateY(-3px);
}

.social-icon {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 34px;
    text-align: center;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

@media (max-width: 1600px) {
    .site-container {
        max-width: 1140px;
    }
}

@media (max-width: 1280px) {
    .site-container {
        max-width: 960px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .hero-text-section {
        text-align: center;
    }

    .hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1;
        min-width: 250px;
    }

    .banner-content h1 {
        font-size: 55px;
    }

    .banner-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 890px) {
    .intro-grid,
    .preview-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .details-content {
        padding-left: 0;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .booking-form-container {
        padding: 34px 21px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
    }

    .steps-flow {
        flex-direction: column;
        gap: 34px;
    }

    .step-item {
        width: 100%;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .banner-content h1 {
        font-size: 42px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-spacing {
        padding: 55px 0;
    }
}

@media (max-width: 640px) {
    .site-container {
        padding: 0 17px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content h2 {
        font-size: 21px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .intro-text h2,
    .details-content h2 {
        font-size: 28px;
    }

    .booking-header h2 {
        font-size: 28px;
    }

    .booking-form-container {
        padding: 21px;
    }

    .info-card,
    .contact-card {
        padding: 21px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .content-spacing {
        padding: 42px 0;
    }
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.btn {
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.34s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn.btn-primary {
    background-color: var(--sunset-orange);
    border-color: var(--sunset-orange);
    color: white;
}

.btn.btn-primary:hover {
background-color: var(--burnt-sienna);
border-color: var(--burnt-sienna);
transform: translateY(-2px);
box-shadow: 0 8px 21px rgba(247, 127, 0, 0.3);
}

.thankyou-section {
  padding: 150px 0 89px;
  background: linear-gradient(135deg, var(--cream-background) 0%, #f8f9fa 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 67px;
  border-radius: 21px;
  box-shadow: 0 21px 67px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(247, 127, 0, 0.1);
}

.success-icon {
  margin-bottom: 34px;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--forest-emerald), #1e8449);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: bounceIn 0.8s ease-out;
}

.checkmark {
  font-size: 55px;
  color: white;
  font-weight: bold;
  animation: checkmarkPop 0.6s ease 0.3s both;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--burnt-sienna);
  margin-bottom: 21px;
  animation: slideUpFade 0.8s ease 0.4s both;
}

.thankyou-message {
  font-size: 18px;
  color: var(--charcoal-text);
  margin-bottom: 55px;
  line-height: 1.6;
  animation: slideUpFade 0.8s ease 0.6s both;
}

.next-steps {
  margin: 55px 0;
  text-align: left;
  animation: slideUpFade 0.8s ease 0.8s both;
}

.next-steps h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--burnt-sienna);
  margin-bottom: 34px;
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  padding: 21px;
  background: var(--cream-background);
  border-radius: 13px;
  border-left: 4px solid var(--sunset-orange);
}

.step-number {
  width: 34px;
  height: 34px;
  background: var(--sunset-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--burnt-sienna);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 16px;
  color: var(--charcoal-text);
  margin: 0;
  line-height: 1.5;
}

.contact-info-box {
  background: var(--cream-background);
  padding: 34px;
  border-radius: 13px;
  margin: 34px 0;
  border: 1px solid rgba(247, 127, 0, 0.2);
  animation: slideUpFade 0.8s ease 1s both;
}

.contact-info-box h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--burnt-sienna);
  margin-bottom: 21px;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 13px;
  color: var(--charcoal-text);
}

.contact-details strong {
  color: var(--sunset-orange);
}

.action-buttons {
  display: flex;
  gap: 21px;
  justify-content: center;
  margin-top: 42px;
  animation: slideUpFade 0.8s ease 1.2s both;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 17px 34px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.34s ease;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sunset-orange), var(--burnt-sienna));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 34px rgba(247, 127, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ocean-depth);
  border: 2px solid var(--ocean-depth);
}

.btn-secondary:hover {
  background: var(--ocean-depth);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 890px) {
  .thankyou-content {
    padding: 42px 21px;
    margin: 0 17px;
  }
  
  .thankyou-content h1 {
    font-size: 34px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .steps-list {
    gap: 17px;
  }
  
  .step {
    padding: 17px;
  }
}

@media (max-width: 640px) {
  .thankyou-section {
    padding: 120px 0 55px;
  }
  
  .thankyou-content {
    padding: 34px 17px;
  }
  
  .thankyou-content h1 {
    font-size: 28px;
  }
  
  .thankyou-message {
    font-size: 16px;
  }
  
  .checkmark-circle {
    width: 90px;
    height: 90px;
  }
  
  .checkmark {
    font-size: 42px;
  }
}

.timeline-section {
  background: var(--warm-white);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--sunset-orange), var(--burnt-sienna));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 67px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--burnt-sienna));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 21px rgba(247, 127, 0, 0.3);
}

.timeline-content {
  background: white;
  padding: 34px;
  border-radius: 13px;
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--silver-border);
  max-width: 350px;
  margin: 0 34px;
}

.timeline-item:nth-child(odd) .timeline-content {
  border-left: 4px solid var(--sunset-orange);
}

.timeline-item:nth-child(even) .timeline-content {
  border-right: 4px solid var(--sunset-orange);
}

.timeline-content h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--burnt-sienna);
  margin-bottom: 13px;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-text);
  margin: 0;
}

.mission-section {
  background: var(--cream-background);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.mission-card {
  background: white;
  padding: 42px 34px;
  border-radius: 21px;
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--sunset-orange);
  text-align: center;
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--burnt-sienna);
  margin-bottom: 21px;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-text);
  margin: 0;
}

@media (max-width: 890px) {
  .timeline-container::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 0;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row !important;
  }
  
  .timeline-year {
    width: 80px;
    height: 80px;
    font-size: 16px;
    margin-left: 0;
  }
  
  .timeline-content {
    margin-left: 34px;
    margin-right: 0;
    max-width: none;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    border-right: none;
    border-left: 4px solid var(--sunset-orange);
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  
  .mission-card {
    padding: 34px 21px;
  }
}

@media (max-width: 640px) {
  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
  
  .timeline-content {
    padding: 21px;
    margin-left: 21px;
  }
  
  .timeline-content h3 {
    font-size: 18px;
  }
}

.legal-hero {
  padding: 150px 0 67px;
  background: linear-gradient(135deg, var(--cream-background) 0%, #f8f9fa 100%);
  text-align: center;
}

.legal-header h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--burnt-sienna);
  margin-bottom: 21px;
}

.legal-header p {
  font-size: 18px;
  color: var(--charcoal-text);
  margin-bottom: 13px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.update-date {
  display: inline-block;
  background: var(--sunset-orange);
  color: white;
  padding: 8px 21px;
  border-radius: 21px;
  font-size: 14px;
  font-weight: 600;
}

.legal-content {
  padding: 67px 0;
  background: var(--warm-white);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.terms-section {
  background: white;
  padding: 34px;
  margin-bottom: 34px;
  border-radius: 13px;
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--sunset-orange);
}

.terms-section:last-child {
  margin-bottom: 0;
}

.terms-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--burnt-sienna);
  margin-bottom: 21px;
  border-bottom: 1px solid var(--silver-border);
  padding-bottom: 13px;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-text);
  margin: 0;
  text-align: justify;
}

@media (max-width: 890px) {
  .legal-hero {
    padding: 120px 0 55px;
  }
  
  .legal-header h1 {
    font-size: 34px;
  }
  
  .content-wrapper {
    margin: 0 17px;
  }
  
  .terms-section {
    padding: 21px;
    margin-bottom: 21px;
  }
  
  .terms-section h2 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 100px 0 42px;
  }
  
  .legal-header h1 {
    font-size: 28px;
  }
  
  .legal-header p {
    font-size: 16px;
  }
  
  .terms-section {
    padding: 17px;
  }
  
  .terms-section h2 {
    font-size: 19px;
  }
  
  .terms-section p {
    font-size: 15px;
    text-align: left;
  }
}