@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --primary-light: #7209b7;
    --secondary: #f72585;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 15px 40px rgba(67, 97, 238, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    --gradient-secondary: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
    --gradient-accent: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    --gradient-dark: linear-gradient(135deg, #212529 0%, #3a0ca3 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e6f3ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    font-size: 1.3rem;
    transform: rotate(-10deg);
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    background: transparent;
    color: var(--dark);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--gradient-light);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.btn-signup {
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
    transition: all 0.3s ease;
}

.btn-signup:hover {
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-light);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-text {
    max-width: 45%;
    animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
    line-height: 1.6;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
}

.badge span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 1rem;
    color: var(--secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--glass-bg);
    color: var(--dark);
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gradient-light);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.trust-signals {
    display: flex;
    gap: 30px;
    color: var(--gray);
    font-size: 0.95rem;
}

.trust-signals .users-count,
.trust-signals .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.trust-signals .rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.hero-visual {
    max-width: 50%;
    animation: fadeInRight 1s ease-out;
    position: relative;
}

.itinerary-board {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(67, 97, 238, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    border: 1px solid rgba(230, 230, 230, 0.5);
    backdrop-filter: blur(10px);
}

.itinerary-board:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 80px rgba(67, 97, 238, 0.15);
}

.board-header {
    background: var(--gradient-primary);
    padding: 20px;
    color: white;
}

.board-header h3 {
    font-size: 1.2rem;
}

.board-content {
    display: flex;
    gap: 20px;
    padding: 20px;
    min-height: 300px;
}

.day-column {
    flex: 1;
    min-width: 200px;
    background-color: rgba(248, 249, 250, 0.5);
    border-radius: 10px;
    padding: 15px;
    min-height: 250px;
}

.day-header {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray);
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: grab;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.card-time {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.card-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.add-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--light-gray);
    background-color: transparent;
    color: var(--gray);
    border-left: none;
}

.add-card:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.add-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.plane {
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234a6bff"><path d="M21,16V14L13,9V3.5A1.5,1.5,0,0,0,11.5,2h0A1.5,1.5,0,0,0,10,3.5V9L2,14v2l8-2.5V19l-2,1.5V22l3.5-1h1L15,22V20.5L13,19V13.5Z"/></svg>');
    background-repeat: no-repeat;
    top: 15%;
    right: 10%;
    animation-name: floatPlane;
}

.cloud1 {
    width: 120px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234a6bff"><path d="M19.35,10.04C18.67,6.59,15.64,4,12,4C9.11,4,6.6,5.64,5.35,8.04C2.34,8.36,0,10.91,0,14c0,3.31,2.69,6,6,6h13c2.76,0,5-2.24,5-5C24,12.36,21.95,10.22,19.35,10.04z"/></svg>');
    background-repeat: no-repeat;
    top: 60%;
    left: 15%;
    animation-name: floatCloud;
}

.cloud2 {
    width: 80px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234a6bff"><path d="M19.35,10.04C18.67,6.59,15.64,4,12,4C9.11,4,6.6,5.64,5.35,8.04C2.34,8.36,0,10.91,0,14c0,3.31,2.69,6,6,6h13c2.76,0,5-2.24,5-5C24,12.36,21.95,10.22,19.35,10.04z"/></svg>');
    background-repeat: no-repeat;
    top: 30%;
    left: 75%;
    animation-name: floatCloud;
    animation-delay: 2s;
}

.map-point1 {
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234a6bff"><path d="M12,2C8.13,2,5,5.13,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.13,15.87,2,12,2z M12,11.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S13.38,11.5,12,11.5z"/></svg>');
    background-repeat: no-repeat;
    bottom: 20%;
    right: 25%;
    animation-name: pulse;
}

.map-point2 {
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234a6bff"><path d="M12,2C8.13,2,5,5.13,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.13,15.87,2,12,2z M12,11.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S13.38,11.5,12,11.5z"/></svg>');
    background-repeat: no-repeat;
    top: 15%;
    left: 20%;
    animation-name: pulse;
    animation-delay: 1s;
}

/* Features Section */
.features {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0.5;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(67, 97, 238, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f3ff 100%);
    padding: 100px 0;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 30px;
    min-width: 350px;
    max-width: 450px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(230, 230, 230, 0.5);
    /* border: 2px solid var(--primary); */
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
    
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding: 0 10px;
    padding-inline-start: 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    font-size: 3rem;
    position: absolute;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p::before {
    content: '❝';
    top: -20px;
    left: -15px;
}

.testimonial-content p::after {
    content: '❞';
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light);
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial .testimonial-rating {
    color: var(--primary-light);
} 

/* CTA Section */
/*
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 90%;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 15px 35px;
}

.cta-content .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
}*/

/* CTA section enhancements */
/*  
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section .shape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.cta-section .shape2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
}

.cta-section .shape3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 30%;
}

.cta-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}*/

.cta-section {
    background: var(--gradient-primary, linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%));
    color: white;
    text-align: center;
    padding: 100px 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 90%;
}

.cta-section .container{
    display: flex;
    gap: 100px;
}
.cta-section .cta-content{
    flex: 1;
}

.cta-section .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 15px 35px;
    border-radius: var(--border-radius, 8px);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition, all 0.3s ease);
}

.cta-section .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section .shape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.cta-section .shape2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
}

.cta-section .shape3 {
    width: 200px;
    height: 200px;
    top: 45%;
    right:37%;
}

.cta-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}


.btn-light {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.125rem;
}

.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 90%;
    justify-items: flex-start;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: left;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 15px 35px;
}

.cta-content .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
}

.cta-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-section .cta-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.cta-section .cta-image {
    width: 100%;
    max-width: 450px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.cta-section .cta-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.cta-section .cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    gap: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(0, 0, 0, 0.7);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(6, 6, 6, 0.5);
    font-size: 0.9rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatPlane {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

@keyframes floatCloud {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .testimonial {
        min-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial {
        min-width: 100%;
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Badge styling */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 0.9rem;
}

.badge-center {
    margin: 0 auto 20px;
}

/* Trust signals */
.trust-signals {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.trust-signals .users-count,
.trust-signals .rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-signals .rating i {
    color: #FFD700;
    font-size: 0.8rem;
}

/* Card tag */
.card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Hero shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.15) 0%, rgba(114, 9, 183, 0.15) 100%);
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Add card styling */
.add-card {
    background: rgba(67, 97, 238, 0.05);
    border: 2px dashed rgba(67, 97, 238, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
    color: var(--primary);
}

.add-card:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
}

.add-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.add-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    flex: 1;
    max-width: 350px;
    border: 1px solid rgba(230, 230, 230, 0.8);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 30px;
}

/* FAQ section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 90%;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding-bottom: 20px;
    display: none;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer enhancements */
.footer-info {
    max-width: 300px;
}

.footer-info p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* Responsive updates */
@media (max-width: 1024px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1.03);
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-visual {
        max-width: 100%;
    }
    
    .hero-text {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .trust-signals {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonial {
        min-width: 280px;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-menu-open .nav-links {
        display: flex;
        flex-direction: column; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 0 0 16px 16px;
        align-items: center;
    }
    
    .mobile-menu-open .auth-buttons {
        display: flex;
        flex-direction: column;
        width: 80%;
        margin: 20px auto 0;
        gap: 15px;
    }
}

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 300px;
    max-width: 400px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    gap: 15px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.notification.success::before {
    background: #2ecc71;
}

.notification.error::before {
    background: #e74c3c;
}

.notification.info::before {
    background: var(--primary);
}

.notification.warning::before {
    background: #f39c12;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification.success .notification-icon {
    color: #2ecc71;
}

.notification.error .notification-icon {
    color: #e74c3c;
}

.notification.info .notification-icon {
    color: var(--primary);
}

.notification.warning .notification-icon {
    color: #f39c12;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 5px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4).visible {
    transition-delay: 0.4s;
}

.card-time {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.card-title {
    font-weight: 500;
    margin-bottom: 5px;
}

@media print {
    body * {
        visibility: hidden;
    }
    
    .itinerary-board, .itinerary-board * {
        visibility: visible;
    }
    
    .itinerary-board {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        transform: none !important;
    }
} 

#feedbackBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-image: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

#feedbackBtn:hover {
  background-color: var(--primary-dark);
}

.feedback-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  background-color: var(--light);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  border: 1.5px solid var(--primary);
  font-family: "Segoe UI", sans-serif;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.feedback-popup h3 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
}

.feedback-popup p {
  margin: 6px 0 12px;
  color: var(--gray);
  font-size: 14px;
}

.feedback-popup textarea {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  border: 1.5px solid var(--gray);
  padding: 10px;
  font-size: 14px;
  resize: none;
  outline: none;
  transition: border 0.2s ease;
}

.feedback-popup textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.feedback-popup button.submit-btn {
  margin-top: 12px;
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.feedback-popup button.submit-btn:hover {
  background-color: var(--primary-dark);
}

.text {
    font-family: 'Inter', sans-serif;
}

.feedback-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray);
  cursor: pointer;
}

#thankYouBox {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-image: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
  font-weight: bold;
  animation: fadeInOut 4s forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
