/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --primary: #00B1EE;
    --primary-dark: #0095c7;
    --accent: #FF9800;
    --accent-dark: #e57c00;
    --light-bg: #f8fafc;
    --shadow-sm: 0 10px 30px -5px rgba(0, 177, 238, 0.2);
    --shadow-hover: 0 25px 35px -8px rgba(255, 152, 0, 0.25);
    --gradient: linear-gradient(135deg, var(--primary) 0%, #6fc9ff 50%, var(--accent) 100%);
}

/* ===== global ===== */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 5rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-primary:active::after,
.btn-secondary:active::after {
    width: 300px;
    height: 300px;
}

/* sticky navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

/* hero (unchanged) */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(115deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%), url(./bg.png) center/cover no-repeat;
    background-blend-mode: overlay;
    color: white;
    padding: 0 2rem;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(0, 177, 238, 0.4), rgba(255, 152, 0, 0.3));
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1.1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.floating-icon {
    position: absolute;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.4);
    animation: float 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.icon1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon2 {
    bottom: 25%;
    right: 8%;
    animation-delay: 1.2s;
    font-size: 3.5rem;
}

.icon3 {
    top: 40%;
    right: 18%;
    animation-delay: 2.4s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* package container (two columns) */
.package-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}

/* pricing card */
.pricing-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s;
    border: 1px solid rgba(0, 177, 238, 0.2);
}

.pricing-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.highlights {
    list-style: none;
    margin: 1.8rem 0;
}

.highlights li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.highlights i {
    color: var(--accent);
    font-weight: 900;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.price-item {
    background: #f1f5f9;
    border-radius: 40px;
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.price-item strong {
    color: var(--primary);
    font-size: 1.2rem;
    display: block;
}

.price-item small {
    color: #64748b;
}

/* itinerary */
.itinerary h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.day-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.day-card {
    display: flex;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid rgba(0, 177, 238, 0.1);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.day-card img {
    width: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.day-info {
    padding: 1rem 1.2rem;
    flex: 1;
}

.day-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.day-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.day-info p {
    color: #475569;
    font-size: 0.95rem;
}

/* about (unchanged) */
.about-card {
    background: var(--light-bg);
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    background: linear-gradient(145deg, #ffffff, #f1f9ff);
    border-left: 6px solid var(--accent);
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* why us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.25s;
    border: 1px solid #eef2f6;
}

.feature-item:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

/* lead form */
.form-card {
    background: white;
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 30px 50px -20px #00b1ee55;
    max-width: 700px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group input[type="date"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.25s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 177, 238, 0.15);
    transform: scale(1.01);
}

.btn-block {
    width: 100%;
    background: var(--accent);
    color: white;
    font-size: 1.2rem;
    padding: 1.1rem;
}

.btn-block:hover {
    background: var(--accent-dark);
}

/* footer */
.footer {
    background: #0b1a2a;
    color: white;
    padding: 3rem 2rem;
    border-radius: 3rem 3rem 0 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social a {
    color: white;
    font-size: 1.8rem;
    margin-left: 1.2rem;
    transition: 0.2s;
}

.social a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

/* floating CTA (chat toggle) */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
    z-index: 999;
    transition: 0.25s;
    animation: float 4s infinite;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.floating-cta:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 20px 40px #00b1ee80;
}

/* chat widget */
.chat-widget {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget.open {
    display: flex;
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
}

.chat-header button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.chat-messages {
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.message {
    display: flex;
    flex-direction: column;
}

.message.bot {
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

.message-content {
    max-width: 85%;
    padding: 0.7rem 1rem;
    border-radius: 1.2rem;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.user .message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 0.2rem;
}

.message.bot .message-content {
    background: #e9eef3;
    border-bottom-left-radius: 0.2rem;
}

/* typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.7rem 1rem;
    background: #e9eef3;
    border-radius: 1.2rem;
    border-bottom-left-radius: 0.2rem;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #64748b;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }
}

.whatsapp-btn-small,
.whatsapp-btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.2s;
}

.whatsapp-btn-small:hover,
.whatsapp-btn-footer:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.chat-input-area {
    display: flex;
    padding: 0.8rem;
    border-top: 1px solid #ddd;
    background: white;
}

.chat-input-area input {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 40px;
    outline: none;
    font-size: 0.9rem;
}

.chat-input-area button {
    background: var(--accent);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.2rem;
}

.chat-input-area button:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.chat-footer {
    padding: 0.8rem;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.chat-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

/* responsive */
@media (max-width: 900px) {
    .package-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .day-card {
        flex-direction: column;
    }

    .day-card img {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 500px) {
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .chat-widget {
        width: 280px;
        right: 15px;
        bottom: 100px;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== redesigned contact section ===== */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 1.5rem;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    border-radius: 3rem;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
}

/* left image side */
.contact-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-container:hover .contact-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* right form side */
.contact-form-wrapper {
    padding: 3rem 3rem 3rem 1rem;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-intro {
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form-wrapper .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.contact-form-wrapper .form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    background: white;
}

.contact-form-wrapper .form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 177, 238, 0.1);
}

.contact-form-wrapper .form-group input:focus+i {
    color: var(--accent);
}

.contact-form-wrapper .btn-block {
    background: var(--accent);
    color: white;
    font-size: 1.2rem;
    padding: 1rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    width: 100%;
}

.contact-form-wrapper .btn-block:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
}

.contact-form-wrapper .btn-block i {
    transition: transform 0.2s;
}

.contact-form-wrapper .btn-block:hover i {
    transform: translateX(5px);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        border-radius: 2rem;
    }

    .contact-image {
        min-height: 250px;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .image-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
}

/* form message alerts */
.form-message {
    padding: 1rem;
    border-radius: 60px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    animation: fadeIn 0.5s;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}