* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E86C1;
    --secondary-color: #F39C12;
    --accent-color: #E74C3C;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --white: #FFFFFF;
    --text-dark: #34495E;
    --text-light: #7F8C8D;
    --gradient-primary: linear-gradient(135deg, #2E86C1 0%, #1ABC9C 100%);
    --gradient-secondary: linear-gradient(135deg, #F6D365 0%, #FDA085 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-spacer {
    width: 40px; /* Same width as Instagram button for balance */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    align-items: center;
}

.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #833ab4 0%, #c13584 45%, #e1306c 75%, #fd1d1d 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.instagram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.45);
}

.instagram-btn i {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--white);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-btn.primary:hover {
    background: #E67E22;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: #2471A3;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.credentials li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.image-placeholder i {
    font-size: 6rem;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-color);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2471A3;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-color);
}

.modal h3 {
    color: var(--dark-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
}

#paymentDetails p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-note {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    text-align: center;
    color: var(--text-dark);
}

.payment-actions {
    text-align: center;
}

.venmo-btn {
    background: #3D95CE;
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.venmo-btn:hover {
    background: #2E7BA8;
    transform: translateY(-2px);
}

.venmo-btn i {
    font-size: 1.4rem;
}

.payment-info {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
    color: var(--primary-color);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #556281;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-spacer {
        display: none;
    }

    .nav-social {
        order: 2;
        margin-right: 60px;
    }

    .instagram-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
        transform: none;
        left: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image i {
        font-size: 8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    .contact-form {
        padding: 25px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.success-message {
    background: #D5EDDA;
    color: #155724;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid #C3E6CB;
    margin-top: 20px;
    display: none;
}

.error-message {
    background: #F8D7DA;
    color: #721C24;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid #F5C6CB;
    margin-top: 20px;
    display: none;
}

/* Past Trips Section */
.past-trips {
    padding: 100px 0;
    background: var(--light-color);
}

.past-trips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trip-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.trip-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.trip-image i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.trip-info {
    padding: 25px;
}

.trip-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.trip-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.view-gallery-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-gallery-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* Photo Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.gallery-modal-content {
    position: relative;
    margin: 20px auto;
    width: 95%;
    max-width: 1200px;
    height: calc(100vh - 40px);
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-header {
    background: var(--dark-color);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-header h3 {
    font-size: 1.5rem;
    color: white;
}

.gallery-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gallery-close:hover {
    opacity: 1;
}

.gallery-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    background: #f8f9fa;
}

.gallery-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.gallery-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: 60%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: opacity 0.3s ease;
}

.gallery-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-color);
    display: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    padding: 20px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0,0,0,0.8);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-counter {
    text-align: center;
    padding: 10px;
    background: var(--light-color);
    font-weight: 500;
    color: var(--dark-color);
}

.gallery-thumbnails {
    background: var(--white);
    padding: 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    border-top: 1px solid #dee2e6;
    max-height: 120px;
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    border-color: var(--primary-color);
}

.gallery-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(46, 134, 193, 0.3);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
    }
    
    .gallery-header {
        padding: 15px 20px;
    }
    
    .gallery-nav {
        padding: 15px 10px;
        font-size: 1.2rem;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
    
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-thumbnails {
        padding: 15px;
        max-height: 100px;
    }
    
    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Payment Section */
.payment {
    padding: 100px 0;
    background: var(--white);
}

.payment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Payment Section */
.payment-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.payment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.payment-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.payment-options {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.payment-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
    padding: 12px;
}

.payment-options a[title*="PayPal"] {
    background: #0070ba;
    color: white;
    width: auto;
    height: auto;
}

.payment-options a[title*="PayPal"]:hover {
    background: #005ea6;
    transform: scale(1.05);
}

.payment-options a[title*="PayPal"] i {
    font-size: 48px;
}

.payment-options a[title*="Venmo"] {
    background: transparent;
    color: white;
    padding: 0;
    overflow: hidden;
    border: none;
}

.payment-options a[title*="Venmo"]:hover {
    transform: scale(1.05);
}

.venmo-logo {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
}

.payment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.payment-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.payment-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.payment-btn i {
    font-size: 1.3rem;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .payment-card {
        padding: 30px;
        margin: 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .email-signup-form {
        margin-top: 15px;
    }
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 25px;
}

.newsletter-signup h5 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.email-signup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.email-signup-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-signup-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.email-signup-form button {
    background: var(--secondary-color);
    border: none;
    padding: 12px 18px;
    border-radius: 25px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-signup-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.signup-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Social Links Enhancement */
.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links i {
    color: var(--white);
    font-size: 1.2rem;
}/* Layout specific styles for new design */

/* Hero Background Placeholder */
.hero-background {
    width: 100%;
    min-height: 100vh;
    background: url('PIctures/HomePage/LogoBackGround.webp') center top / cover no-repeat, var(--gradient-primary);
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: left;
    padding: 78px 20px 40px;
}

.hero-background .hero-content {
    width: min(1180px, 100%);
    max-width: 1180px;
    margin: 0 auto;
    padding-top: clamp(155px, 18vh, 195px);
    display: grid;
    grid-template-columns: minmax(330px, 470px) minmax(420px, 1fr);
    gap: 30px;
    align-items: center;
}

.hero-logo {
    position: absolute;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    width: min(300px, 68vw);
    height: auto;
    margin: 0;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.hero-text h1,
.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
    max-width: 520px;
}

.hero-jess-header {
    display: block;
    width: min(100%, 700px);
    max-width: 700px;
    aspect-ratio: 945 / 1148;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

.hero-text p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 520px;
    margin: 0;
    margin-top: 0;
}

.hero-background .hero-buttons {
    justify-content: flex-start;
    margin-top: 14px;
}

.hero-background .cta-btn.primary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 1rem;
}

.hero-background .cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
}

/* About Section Layout */
.about-layout {
    display: grid;
    gap: 80px;
}

.story-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image .image-placeholder,
.meet-jess-image .image-placeholder {
    width: 100%;
    height: 400px;
    max-width: 400px;
    border-radius: var(--border-radius);
    background: var(--gradient-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.meet-jess-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.meet-jess-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.meet-jess-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Trips Section */
.trips {
    padding: 100px 0;
    background: var(--white);
}

.trips h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.trips-layout {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.upcoming-trips, .past-trips {
    text-align: center;
}

.upcoming-trips h3, .past-trips h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.upcoming-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.upcoming-cta {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.upcoming-cta:hover {
    background: #2471A3;
    transform: translateY(-2px);
}

/* Upcoming Trips Grid */
.upcoming-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.upcoming-trip-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.upcoming-trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.upcoming-trip-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    position: relative;
}



.upcoming-trip-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}



.upcoming-trip-details {
    padding: 25px;
    text-align: left;
}

.upcoming-trip-details h5 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.itinerary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.itinerary-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    line-height: 1.5;
}

.itinerary-list li:last-child {
    border-bottom: none;
}

.itinerary-list .more-days {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.upcoming-trip-actions {
    padding: 0 25px 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trip-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.itinerary-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.itinerary-btn:hover {
    background: #eef6fb;
    transform: translateY(-2px);
}

.available-btn {
    background: var(--secondary-color);
    color: var(--white);
}

.available-btn:hover {
    background: #E67E22;
    transform: translateY(-2px);
}

.inactive-btn {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

.inactive-btn:hover {
    background: #ddd;
    color: #999;
    transform: none;
}

.itinerary-modal-content {
    max-width: 760px;
    max-height: 80vh;
    overflow-y: auto;
}

.full-itinerary-list {
    margin: 0;
    padding-left: 24px;
}

.full-itinerary-list li {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}



.no-trips-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.no-trips-message p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.no-reviews-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.no-reviews-message p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    padding: 40px;
}

.past-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.trip-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.trip-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.trip-info {
    padding: 25px;
    text-align: center;
}

.trip-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.trip-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.view-gallery-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-gallery-btn:hover {
    background: #E67E22;
    transform: translateY(-2px);
}

/* Visual Tour Section */
.visual-tour {
    padding: 100px 0;
    background: var(--light-color);
}

.visual-tour h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tour-galleries {
    margin-top: 60px;
}

/* Join Us Section */
.join-us {
    padding: 100px 0;
    background: var(--white);
}

.join-us-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-us h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.join-us p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.join-us-image {
    margin: 40px 0;
}

.join-us-image .image-placeholder {
    width: 100%;
    height: 300px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #E67E22;
}

.social-follow {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-follow a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-follow a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--light-color);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .hero-background {
        padding: 74px 16px 28px;
    }

    .hero-background .hero-content {
        padding-top: 152px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-logo {
        top: 70px;
        width: min(260px, 78vw);
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero-jess-header {
        width: min(100%, 560px);
        max-width: 560px;
        height: auto;
        order: 2;
        margin: 0 auto;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-background .hero-buttons {
        justify-content: center;
    }

    .story-section,
    .meet-jess-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .story-content h3,
    .meet-jess-content h3 {
        font-size: 1.8rem;
    }

    .story-image .image-placeholder,
    .meet-jess-image .image-placeholder {
        height: 300px;
    }

    .past-trips-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-trips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-background {
        padding: 70px 14px 24px;
    }

    .hero-background .hero-content {
        padding-top: 138px;
    }

    .hero-logo {
        top: 66px;
        width: min(200px, 82vw);
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-jess-header {
        width: min(100%, 420px);
        max-width: 420px;
        height: auto;
    }

    .story-content h3,
    .meet-jess-content h3 {
        font-size: 1.5rem;
    }

    .trips h2,
    .visual-tour h2,
    .join-us h2,
    .reviews h2 {
        font-size: 2rem;
    }

    .upcoming-trips h3,
    .past-trips h3 {
        font-size: 1.5rem;
    }

    .trip-card-header {
        font-size: 1.1rem;
    }

    .trip-card-book {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .trip-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .upcoming-trip-header {
        padding: 15px;
    }

    .upcoming-trip-header h4 {
        font-size: 1.1rem;
    }
}
