/* Cuban Social - Modern Design CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E3D85;    /* Blue from logo */
    --secondary-color: #0F9CB6;  /* Light blue from logo */
    --accent-color: #D81E34;     /* Red from logo */
    --background-color: #ffffff; /* White */
    --card-background: #ffffff;  /* White */
    --text-color: #2E3D85;       /* Blue for main text */
    --text-light: #6b7280;       /* Keep gray for secondary text */
    --border-color: #e5e7eb;     /* Keep light gray for borders */
    --shadow: 0 1px 3px 0 rgba(46, 61, 133, 0.1), 0 1px 2px 0 rgba(46, 61, 133, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(46, 61, 133, 0.1), 0 4px 6px -2px rgba(46, 61, 133, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.logo-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link:hover {
    color: var(--accent-color);
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-light);
    font-size: 20px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--text-color);
}

/* Section Styles */
.section {
    padding: 48px 0;
}

.events-section {
    padding: 0;
}

/* Featured Events Section */
.featured-section {
    padding: 48px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
}

.pinned-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.featured-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.featured-event-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: box-shadow 0.2s;
}

.featured-event-card:hover {
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.recurring-badge {
    background-color: var(--accent-color);
}

.event-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
    padding-right: 100px; /* Space for badges */
    min-height: 48px; /* Fixed height for 2 lines */
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    min-height: 24px;
}

.event-meta-item i {
    width: 16px;
    color: var(--text-color);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Location meta item with fixed height */
.event-meta-item.location-item {
    min-height: 60px;
    align-items: flex-start;
}

/* Date/time meta item with fixed height for consistency */
.event-meta-item.date-item {
    min-height: 48px;
    align-items: flex-start;
}

.location-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.event-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.more-info-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    flex: 1;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.more-info-btn:hover {
    background-color: var(--primary-color);
}

/* Event Actions Container */
.event-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* Secondary Event Actions Container */
.event-actions-secondary {
    margin-top: 8px;
}

/* Event URL Button - Full Width */
.event-url-btn-full {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.event-url-btn-full:hover {
    background-color: #253270;
}

.event-url-btn-full i {
    margin-right: 8px;
    font-size: 14px;
}

/* Directions Button */
.directions-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.directions-btn:hover {
    background-color: var(--primary-color);
}

.directions-btn i {
    font-size: 14px;
}

/* Payment Button */
.payment-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.payment-btn:hover {
    background-color: #0D8AA3;
}

.payment-btn i {
    font-size: 14px;
}

/* Event URL Button - Full Width */
.event-url-btn-full {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.event-url-btn-full:hover {
    background-color: #253270;
}

.event-url-btn-full i {
    margin-right: 8px;
    font-size: 14px;
}

/* Location Link Hover */
.location-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Google Maps Link in Help Text */
.maps-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    padding: 2px 5px;
    background-color: rgba(216, 30, 52, 0.1);
    transition: all 0.2s;
}

.maps-link:hover {
    background-color: rgba(216, 30, 52, 0.2);
    color: var(--accent-color);
    text-decoration: none;
}

.maps-link i {
    margin-right: 3px;
}

/* Filters Section */
.filters-section {
    background-color: var(--secondary-color);
    padding: 24px 0;
}

.filters-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-color);
}

.filter-select, .filter-input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: white;
    color: var(--text-color);
    font-size: 14px;
    min-width: 120px;
}

.filter-input {
    min-width: 200px;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-btn.active, .view-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Calendar Styles */
.calendar-section {
    background-color: white;
    padding: 32px 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-nav {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-nav:hover {
    background-color: var(--secondary-color);
}

#calendar-title {
    font-size: 24px;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day-header {
    background-color: var(--secondary-color);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

.calendar-day {
    background-color: white;
    padding: 12px;
    min-height: 80px;
    position: relative;
    border: none;
    cursor: default;
}

.calendar-day.has-event {
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-day.has-event:hover {
    background-color: var(--secondary-color);
}

.calendar-day.other-month {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calendar-day.has-event:hover::after {
    transform: translateX(-50%) scale(1.2);
    transition: transform 0.2s;
}

/* Upcoming Events Section */
.upcoming-section {
    padding: 48px 0;
}

.upcoming-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 8px 0;
    justify-content: flex-start;
}

.event-type-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-type-badge.salsa { background: rgba(46, 61, 133, 0.1); color: var(--primary-color); }
.event-type-badge.timba { background: rgba(216, 30, 52, 0.1); color: var(--accent-color); }
.event-type-badge.bachata { background: rgba(15, 156, 182, 0.1); color: var(--secondary-color); }
.event-type-badge.merengue { background: rgba(46, 61, 133, 0.1); color: var(--primary-color); }
.event-type-badge.rueda { background: rgba(216, 30, 52, 0.1); color: var(--accent-color); }
.event-type-badge.cumbia { background: rgba(15, 156, 182, 0.1); color: var(--secondary-color); }

.load-more-btn {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    margin: 32px auto 0;
    display: block;
    transition: all 0.2s;
}

.load-more-btn:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 48px 0 24px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Form Styles */
.event-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.section-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--text-light);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.recurring-group {
    margin-left: 24px;
    margin-top: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    position: relative;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Switch Styles */
.switch-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.switch-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.filter-switch {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.switch-slider {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    margin-right: 12px;
    transition: background-color 0.3s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.filter-switch:checked + .switch-slider {
    background-color: var(--primary-color);
}

.filter-switch:checked + .switch-slider:before {
    transform: translateX(20px);
}

.switch-slider:hover {
    background-color: #bbb;
}

.filter-switch:checked + .switch-slider:hover {
    background-color: var(--secondary-color);
}

/* Switch Group Container for multiple switches */
.switch-group-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.switch-group-container .switch-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    cursor: pointer;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.form-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submission-info {
    max-width: 600px;
    margin: 48px auto 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.submission-info h3 {
    color: var(--text-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submission-info ol {
    margin: 16px 0;
    padding-left: 20px;
}

.submission-info ol li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.submission-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.submission-info a:hover {
    text-decoration: underline;
}

/* Congress Styles */
.congress-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.congress-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.congress-card h3 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.congress-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.congress-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    min-height: 24px;
}

.congress-meta-item i {
    width: 16px;
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.congress-artists {
    margin: 16px 0;
}

.congress-artists h4 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.artist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.artist-tag {
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.congress-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 16px;
}

.congress-link:hover {
    text-decoration: underline;
}

/* Congress Actions Container */
.congress-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.congress-actions .congress-link {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 0;
    text-align: center;
    transition: background-color 0.2s;
}

.congress-actions .congress-link:hover {
    background-color: #333;
    text-decoration: none;
}

.congress-actions .directions-btn {
    flex: 1;
}

/* Playlist Styles */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.playlist-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 16px;
}

.playlist-cover {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.playlist-emoji {
    font-size: 32px;
}

.playlist-info {
    flex: 1;
}

.playlist-info h3 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.playlist-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 14px;
}

.playlist-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.playlist-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    font-size: 12px;
}

.playlist-stats i {
    color: var(--accent-color);
}

.playlist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1db954;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.playlist-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background-color: #333;
}

.action-btn {
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.action-btn:hover {
    background-color: #B5182A;
}

.action-btn.secondary-btn {
    background-color: #28a745;
    color: white;
}

.action-btn.secondary-btn:hover {
    background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .featured-events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Hide sections by default, show landing */
.section {
    display: none;
}

.section.active {
    display: block;
}

#landing {
    display: block;
}

/* Landing Section Styles */
.landing-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.landing-hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 48px;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature p {
    opacity: 0.8;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary, .cta-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: white;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 30, 52, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-app {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.cta-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 156, 182, 0.3);
}

/* Cards Carousel Section */
.cards-carousel-section {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: white;
}

.section-title i {
    color: #fbbf24;
    margin-right: 12px;
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #fbbf24;
    transform: scale(1.2);
}

.carousel-info {
    text-align: center;
    margin-top: 32px;
    opacity: 0.8;
}

.carousel-info i {
    color: #fbbf24;
    margin-right: 8px;
}

/* Mobile Responsiveness for Landing */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary, .cta-app {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
}
