/* Modern Travel Website Style for Acteezer */

:root {
    --primary-color: #5DD3BE;
    --primary-dark: #4BC5AA;
    --primary-light: #7CDDC9;
    --secondary-color: #4DB8E8;
    --accent-color: #FFB84D;
    --success-color: #5DD3BE;
    --warning-color: #FFB84D;
    --danger-color: #FF6B6B;
    --light-bg: #f8fdfc;
    --white: #ffffff;
    --dark-text: #1a2e2a;
    --gray-text: #64748b;
    --light-gray: #f0faf8;
    --border-color: #e0f2ef;
    --gradient-bg: linear-gradient(135deg, #5DD3BE 0%, #4BC5AA 100%);
    --gradient-warm: linear-gradient(135deg, #FFB84D 0%, #FF6B6B 100%);
    --gradient-hero: linear-gradient(135deg, rgba(93, 211, 190, 0.9) 0%, rgba(75, 197, 170, 0.9) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(93, 211, 190, 0.1) 0%, rgba(75, 197, 170, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-primary: 0 4px 6px -1px rgba(93, 211, 190, 0.2), 0 2px 4px -2px rgba(93, 211, 190, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

/* Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-lg);
}

.btn-primary {
    background: var(--gradient-bg);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    background: var(--primary-dark);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--light-gray);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: var(--gradient-bg);
    color: white;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0 !important;
    border: none;
    padding: 1.5rem;
    text-align: center;
}

.card-body {
    padding: 2rem;
}

/* Forms */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(93, 211, 190, 0.15);
    transform: translateY(-1px);
}

.form-label {
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.form-check-input {
    border-radius: 6px;
    border: 2px solid #e2e8f0;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Sections */
.hero-section {
    background: url('../hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="rgba(255,255,255,0.1)"><path d="M0,100 C150,200 300,0 450,100 C600,200 750,0 900,100 L1000,100 L1000,0 L0,0 Z"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        min-height: 60vh;
    }
}

/* Registration Steps */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 0.5rem;
    position: relative;
}

.step.active {
    background: var(--gradient-bg);
    color: white;
    box-shadow: var(--shadow-md);
}

.step.completed {
    background: var(--success-color);
    color: white;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 40px;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
}

.step.completed:not(:last-child)::after {
    background: var(--success-color);
    box-shadow: 0 0 8px rgba(93, 211, 190, 0.4);
}

/* Registration Container */
.registration-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.registration-card {
    max-width: 500px;
    margin: 0 auto;
}

/* Image Upload */
.image-upload-area {
    border: 3px dashed #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
}

.image-upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.1);
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Interest and Language Selection */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.selection-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.selection-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.selection-item.selected {
    border-color: var(--primary-color);
    background: var(--gradient-soft);
}

.selection-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.selection-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    margin: 1rem 0;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(93, 211, 190, 0.1);
    color: #4BC5AA;
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    border-left: 4px solid var(--secondary-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-left: 4px solid var(--warning-color);
}

/* Navigation Logo */
.navbar-logo {
    height: 32px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.language-selector {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-text);
    cursor: pointer;
}

.language-selector:hover {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Category Slider Section */
.category-slider-container {
    position: relative;
    width: 100%;
    padding: 0 60px;
    overflow: hidden;
}

.category-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    padding-right: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-slide {
    flex: none;
    text-align: center;
    min-width: 140px;
    max-width: 140px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-right: 1rem;
}

.category-slide:first-child {
    margin-left: 60px;
}

.category-slide:last-child {
    margin-right: 60px;
}

.category-slide:hover {
    transform: translateY(-5px);
}

.category-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-circle:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-circle:hover .category-img {
    transform: scale(1.1);
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(93, 211, 190, 0.3);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

.slider-btn i {
    font-size: 14px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.slider-btn:hover i {
    color: white;
}

/* Statistics Section */
.stats-section {
    background: url('../numbers.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 3rem;
    position: relative;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1200px;
}

.stat-item {
    color: white;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.9;
}

/* Footer */
.footer-section {
    background: url('../bg-footer.png') center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom 0;
    position: relative;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    color: #4a5568;
}

/* Removed opacity overlay to show clear background image */

.footer-content {
    position: relative;
    padding-bottom: 8rem;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    vertical-align: middle;
}

.footer-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    width: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Newsletter */
.newsletter-form {
    max-width: 100%;
}

.newsletter-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-right: none;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    border-right: none;
}

.newsletter-btn {
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.newsletter-text {
    color: #9ca3af;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.footer-social .social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-help {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-help i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.help-text {
    color: #6b7280;
    font-size: 0.8rem;
    display: block;
}

.help-number {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-payments .payment-icons {
    display: flex;
    align-items: center;
}

.payment-methods-img {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.payment-methods-img:hover {
    opacity: 0.8;
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-link-sm {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link-sm:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: #e5e7eb;
    margin: 2rem 0 1rem;
}

.copyright-text {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        border-right: 1px solid #e2e8f0;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-btn {
        border-radius: 8px;
        width: 100%;
    }
    
    .footer-links-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .footer-help {
        justify-content: center;
        text-align: center;
    }
    
    .footer-payments .payment-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-bg);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(93, 211, 190, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .registration-container {
        padding: 1rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .step-indicator {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

/* Hero Visual Components */
.hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.travel-illustration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.travel-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.travel-card:nth-child(2) {
    transform: rotate(-2deg);
    margin-top: 2rem;
}

.travel-card:nth-child(3) {
    transform: rotate(1deg);
    margin-top: -1rem;
    grid-column: span 2;
}

.travel-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
}

.category-image {
    margin-bottom: 1.5rem;
}

/* Step Cards */
.step-card {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-bg);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

/* Featured Activities Section */
.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    height: 100%;
    position: relative;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(93, 211, 190, 0.1), rgba(93, 211, 190, 0.05));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
}

.activity-badge .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.activity-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.activity-heart:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(93, 211, 190, 0.4);
}

.activity-heart:hover i {
    color: white;
}

.activity-heart i {
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.activity-content {
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.5) 100%);
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.activity-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    line-height: 1.4;
}

.activity-rating {
    display: flex;
    align-items: center;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.star-rating i {
    color: #ffd700;
    font-size: 14px;
}

.rating-score {
    font-weight: 600;
    color: var(--dark-text);
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.activity-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.activity-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.activity-join-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(93, 211, 190, 0.3);
}

.activity-join-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 211, 190, 0.4);
}

.activity-date,
.activity-participants {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.activity-date i,
.activity-participants i,
.activity-location i {
    color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-bg);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-bg);
    color: white;
    padding: 4rem 0;
    border-radius: var(--border-radius-xl);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,50 C250,150 750,-50 1000,50 L1000,0 L0,0 Z"/></svg>');
    background-size: cover;
}

/* Search Section */
.search-section {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .travel-illustration {
        grid-template-columns: 1fr;
    }
    
    .travel-card:nth-child(3) {
        grid-column: span 1;
    }
    
    /* Footer mobile styles */
    .footer-section .col-lg-3,
    .footer-section .col-md-6 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo-container {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-help {
        text-align: center;
    }
    
    .footer-links-bottom {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        text-align: center;
    }
    
    .newsletter-form .input-group {
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
