* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F766E, #14B8A6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-plane {
    animation: flyPlane 2s ease-in-out infinite;
}

@keyframes flyPlane {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(20px) translateY(-10px) rotate(5deg);
    }

    50% {
        transform: translateX(0) translateY(-20px);
    }

    75% {
        transform: translateX(-20px) translateY(-10px) rotate(-5deg);
    }
}

.preloader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    margin-top: 15px;
}

.preloader-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin: 0 4px;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.preloader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0F766E;
    border-radius: 10px;
}

/* Navbar */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
}

.navbar-scrolled .nav-link {
    color: #1E293B !important;
}

.navbar-scrolled .nav-logo {
    color: #0F766E !important;
}

.navbar-scrolled .nav-cta {
    background: #0F766E !important;
    color: white !important;
}

.navbar-scrolled .menu-icon {
    color: #1E293B !important;
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.85), rgba(30, 41, 59, 0.8));
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

/* Steps */
.step-item {
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: #E5E7EB;
    z-index: 0;
}

.step-item:last-child::after {
    display: none;
}

.step-item.active .step-circle {
    background: #0F766E;
    color: white;
    border-color: #0F766E;
}

.step-item.completed .step-circle {
    background: #0F766E;
    color: white;
    border-color: #0F766E;
}

.step-item.completed::after {
    background: #0F766E;
}

.step-item.active .step-label {
    color: #0F766E;
    font-weight: 600;
}

.step-item.completed .step-label {
    color: #0F766E;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step-label {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 8px;
    transition: all 0.3s;
}

/* Form */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    outline: none;
}

.form-input:focus {
    border-color: #0F766E;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-input.error {
    border-color: #EF4444;
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-label span {
    color: #EF4444;
}

.form-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: #0F766E;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Radio Card */
.radio-card {
    transition: all 0.3s;
    cursor: pointer;
}

.radio-card:hover {
    border-color: #14B8A6;
}

.radio-card.selected {
    border-color: #0F766E;
    background: rgba(15, 118, 110, 0.03);
}

.radio-card.selected .radio-dot {
    background: #0F766E;
    border-color: #0F766E;
}

.radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.radio-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    transition: all 0.3s;
}

.radio-card.selected .radio-dot::after {
    background: white;
}

/* Payment Card */
.payment-option {
    transition: all 0.3s;
    cursor: pointer;
}

.payment-option:hover {
    border-color: #14B8A6;
}

.payment-option.selected {
    border-color: #0F766E;
    background: rgba(15, 118, 110, 0.03);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summary */
.summary-card {
    position: sticky;
    top: 100px;
}

/* Success Animation */
.success-checkmark {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.confetti {
    position: absolute;
    animation: confettiFall 3s ease-in-out infinite;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(400px) rotate(720deg);
        opacity: 0;
    }
}

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Coupon */
.coupon-applied {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.05);
}

/* Tooltip */
.tooltip-trigger:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s;
}

/* Guest counter */
.guest-btn {
    transition: all 0.2s;
}

.guest-btn:hover {
    background: #0F766E;
    color: white;
}

.guest-btn:active {
    transform: scale(0.9);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

.main-wrapper,
.wrapper,
.page-wrapper,
.site-wrapper {
    width: 100%;
    overflow: hidden;
}

section {
    max-width: 100%;
}