/* ============================================
   PANAMA KOSHER FEST 2026 - MAIN STYLESHEET
   Merged version: Designer's colors + AI's responsive structure
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap');

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.section-title-dark,
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER === */
.header {
    background: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    z-index: 1001;
}

.logo-img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger {
    background: #96c458;
}

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #96c458;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #96c458;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-package {
    background: #96c458;
    color: #4c2d6a;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 196, 88, 0.3);
}

.btn-package:hover {
    background: #7fb549;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 196, 88, 0.4);
}

/* === HERO SECTION === */
.hero {
    background-image: url('../images/hero-crowd-background.png');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
    padding-top: 160px;
    padding-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.hero-welcome {
    font-size: 18px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.95;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 40px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Playfair Display', Georgia, serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-details,
.btn-packages {
    padding: 12px 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-details {
    background: #e56125;
    color: white;
}

.btn-details:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-packages {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-packages:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-date-bar {
    background: #522665;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 20px;
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.5px;
    overflow: hidden;
    filter: drop-shadow(black 0.1rem 0.1rem 10px);
}

.hero-date-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-hero-date-bar.png');
    background-repeat: round;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.date-bar-flower-left {
    position: absolute;
    bottom: -22px;
    left: 0px;
    width: 120px;
    height: 100px;
    background-image: url('../images/sub-header-plants-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
}

.date-bar-flower-right {
    position: absolute;
    bottom: -22px;
    right: 0px;
    width: 120px;
    height: 100px;
    background-image: url('../images/sub-header-plants-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
}

/* === WHAT IS SECTION === */
.what-is-section {
    padding: 60px 0;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.pattern-left,
.pattern-right {
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 90px auto;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.pattern-left {
    left: 0;
    background-image: url('../images/pattern-left-border.png');
}

.pattern-right {
    right: 0;
    background-image: url('../images/pattern-right-border.png');
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #5D3A9B;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.section-description {
    text-align: center;
    font-size: 18px;
    max-width: 940px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 70px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.feature h3 {
    color: #E67E22;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* === ACTIVITY CARDS === */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.activity-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.activity-image {
    height: 240px;
    background: #ccc;
    background-size: cover;
    background-position: center;
    position: relative;
}

.activity-badge {
    position: absolute;
    top: 205px;
    left: 20px;
    padding: 6px 24px;
    border-radius: 10px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Designer's colors */
.badge-purple { background: #532667; }
.badge-orange { background: #e56125; }
.badge-green { background: #96c458; }
.badge-blue { background: #4f7dbf; }
.badge-pink { background: #f4a1a7; }
.badge-dark { background: #4c2d6a; }

.activity-content {
    padding: 30px 25px 25px;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.activity-content h3 {
    font-size: 19px;
    margin: 0;
    color: #2C3E50;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.activity-content p {
    color: #666;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.activity-content ul {
    list-style: none;
    padding: 0;
}

.activity-content ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.activity-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-size: 20px;
    line-height: 1;
}

/* === BROADCAST SECTION (BLUE) === */
.broadcast-section {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Optional: Uncomment for subtle texture overlay
.broadcast-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: repeat;
    background-size: 200px 200px;
    background-image: url('../images/broadcats-blue-background.png');
    opacity: 0.1;
    z-index: 1;
}
*/

.broadcast-container {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.broadcast-left {
    flex: 1;
    display: flex;
    gap: 25px;
    color: white;
    align-items: center;
}

.broadcaster-image {
    width: auto;
    height: auto;
    max-width: 260px;
    border-radius: 0;
    border: none;
    object-fit: contain;
    flex-shrink: 0;
}

.broadcast-content {
    flex: 1;
}

.broadcast-label {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.95;
}

.broadcast-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 700;
}

.broadcast-content p {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 16px;
}

.broadcast-content ul {
    list-style: none;
    padding: 0;
}

.broadcast-content ul li {
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 15px;
}

.broadcast-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: bold;
}

.broadcast-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    width: 400px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tropical-decor {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 120px;
    height: auto;
}

.broadcast-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2C3E50;
    font-weight: 700;
}

.broadcast-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.btn-apply {
    background: #e56125;
    color: white;
    border: none;
    padding: 16px 45px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-apply:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* === GREEN CTA BANNER === */
.green-cta-banner {
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.green-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.greenbanner {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* === GALA SECTION === */
.gala-section {
    padding: 60px 0;
    background: white;
    position: relative;
}

.gala-section > .container {
    position: relative;
    z-index: 2;
}

.section-title-dark {
    text-align: center;
    font-size: 48px;
    color: #5D3A9B;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.section-subtitle {
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-bottom: 50px;
}

.section-subtitle-gray {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 60px;
    font-style: italic;
}

.gala-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.gala-item {
    text-align: center;
}

.gala-image {
    height: 200px;
    background: #ccc;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 18px;
}

.gala-item h3 {
    font-size: 22px;
    color: #E67E22;
    margin-bottom: 12px;
    font-weight: 700;
}

.gala-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* === WHAT'S INCLUDED === */
.whats-included {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    padding: 50px 55px;
    border-radius: 12px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional: Uncomment for subtle texture overlay
.whats-included::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: repeat;
    background-size: 200px 200px;
    background-image: url('../images/gala-dinner-experience-background.png');
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}
*/

.whats-included > * {
    position: relative;
    z-index: 2;
}

.included-header {
    background: #5D3A9B;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.whats-included h2 {
    font-size: 38px;
    margin-bottom: 35px;
    border-bottom: 3px solid white;
    padding-bottom: 18px;
    font-weight: 700;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-weight: 400;
}

.star-bullet {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* === SPECIAL SECTION === */
.special-section {
    padding: 90px 0;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.special-section > .container {
    position: relative;
    z-index: 2;
}

.special-section .pattern-left,
.special-section .pattern-right {
    z-index: 5;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.special-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.special-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8F5FC 0%, #D5EBFA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid #cdcccc;
    position: relative;
    background-image: url('../images/pattern-left-border.png');
    background-size: 60px 60px;
}

.feature-icon-img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
}

.feature-icon-overlay {
    position: absolute;
    max-width: 60px;
    max-height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.special-card h3 {
    font-size: 24px;
    color: #4A90E2;
    margin-bottom: 16px;
    font-weight: 700;
}

.special-card p {
    color: #666;
    margin-bottom: 22px;
    line-height: 1.6;
    font-size: 15px;
}

.btn-outline {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4c2d6a;
    padding: 13px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

/* === SCHEDULE SECTION === */
.schedule-section {
    background: #5D3A9B;
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional: Uncomment for subtle texture overlay
.schedule-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: repeat;
    background-size: 200px 200px;
    background-image: url('../images/event-schedule-background.png');
    opacity: 0.1;
    z-index: 1;
}
*/

.schedule-section > .container {
    position: relative;
    z-index: 10;
}

.schedule-section h2 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 700;
}

.schedule-date {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.schedule-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(#29123f 0rem 0.535rem 8px);
}

.schedule-item {
    padding: 20px 45px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    color: #000;
    transition: transform 0.3s;
}

.schedule-item:hover {
    transform: translateX(10px);
}

.schedule-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.schedule-title {
    flex: 1;
    text-align: left;
    margin-left: 25px;
    font-weight: 700;
}

.schedule-time {
    font-size: 20px;
    font-weight: 600;
}

/* Designer's colors */
.schedule-yellow {
    background: linear-gradient(135deg, #ffde00 0%, #ffde00 100%);
}

.schedule-orange {
    background: linear-gradient(135deg, #ff6600 0%, #ff6600 100%);
}

.schedule-night {
    background: linear-gradient(135deg, #041e3d 0%, #041e3d 100%);
    color: white;
}

/* === BLUE BOTTOM BANNER === */
.blue-bottom-banner {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.bluebanner {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* === FOOTER === */
/* === FOOTER - MODERN MINIMAL DESIGN === */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 20px 30px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 14px;
}

.footer-grid h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

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

.footer-grid ul li {
    margin-bottom: 12px;
}

.footer-grid ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-grid ul li a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 40px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FF6B35;
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #FF6B35;
    width: 20px;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-logo-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* === RESPONSIVE DESIGN === */

/* Tablet and below */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }

    .nav-menu a {
        font-size: 15px;
    }

    .btn-package {
        padding: 10px 22px;
        font-size: 13px;
    }

    .activity-grid,
    .special-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gala-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 20px;
    }

    /* Mobile Header */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        justify-content: flex-start;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 16px 0;
        display: block;
        font-size: 18px;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .header-actions {
        width: 100%;
    }

    .btn-package {
        width: 100%;
        padding: 16px;
        font-size: 15px;
        border-radius: 8px;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .hero {
        padding-top: 120px;
        min-height: 450px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hero-welcome {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .hero-date-bar {
        font-size: 14px;
        padding: 12px 10px;
    }

    .date-bar-flower-left,
    .date-bar-flower-right {
        width: 80px;
        height: 70px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-details,
    .btn-packages {
        width: 100%;
    }

    .features-row,
    .activity-grid,
    .gala-grid,
    .special-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .broadcast-container {
        flex-direction: column;
    }

    .broadcast-left {
        flex-direction: column;
        text-align: center;
    }

    .broadcast-card {
        width: 100%;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .green-cta-banner {
        padding: 20px 0;
    }

    .blue-bottom-banner {
        padding: 20px 0;
    }

    .whats-included {
        padding: 30px 20px;
    }

    .included-header {
        font-size: 14px;
        padding: 8px 20px;
    }

    .whats-included h2 {
        font-size: 24px;
    }

    .included-item {
        font-size: 16px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px;
        font-size: 22px;
    }

    .schedule-title {
        margin-left: 0;
        text-align: center;
    }

    .section-title,
    .section-title-dark {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .what-is-section,
    .gala-section,
    .special-section {
        padding: 40px 0;
    }

    .schedule-section {
        padding: 40px 0;
    }

    .broadcast-section {
        padding: 40px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Hide decorative pattern borders on mobile */
    .pattern-left,
    .pattern-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-welcome {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-date-bar {
        font-size: 12px;
        padding: 10px 8px;
    }

    .date-bar-flower-left,
    .date-bar-flower-right {
        display: none;
    }

    .section-title,
    .section-title-dark {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .btn-details,
    .btn-packages {
        padding: 12px 24px;
        font-size: 13px;
    }

    .activity-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .schedule-section h2 {
        font-size: 32px;
    }

    .schedule-item {
        font-size: 18px;
        padding: 15px;
    }

    .broadcast-content h2 {
        font-size: 28px;
    }
}

/* === TERMS OF SERVICE PAGE === */
.hero-terms {
    padding-top: 180px;
    min-height: 420px;
    background-image: url('../images/hero-crowd-background.png');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-terms .hero-content {
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 15px;
}

.terms-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-item:last-of-type {
    border-bottom: none;
}

.terms-item h3 {
    font-size: 24px;
    color: #5D3A9B;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.terms-item p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.terms-item p:last-child {
    margin-bottom: 0;
}

.terms-item p strong {
    color: #333;
    font-weight: 600;
}

.terms-item a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-item a:hover {
    color: #5D3A9B;
    text-decoration: underline;
}

.terms-acknowledgment {
    background: linear-gradient(135deg, #E8F5FC 0%, #D5EBFA 100%);
    border-left: 5px solid #4A90E2;
    padding: 25px 30px;
    margin: 60px 0 50px 0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.terms-acknowledgment p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-acknowledgment i {
    color: #4A90E2;
    font-size: 24px;
    flex-shrink: 0;
}

.terms-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #4A90E2;
    color: white;
}

.btn-primary:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

/* Terms Page Responsive Design */
@media (max-width: 768px) {
    .hero-terms {
        padding-top: 140px;
        min-height: 360px;
    }

    .hero-terms h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .terms-section {
        padding: 50px 0;
    }

    .terms-item h3 {
        font-size: 20px;
    }

    .terms-item p {
        font-size: 15px;
    }

    .terms-actions {
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 32px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-terms {
        padding-top: 120px;
        min-height: 320px;
    }

    .hero-terms h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .terms-section {
        padding: 40px 0;
    }

    .terms-content {
        padding: 0 15px;
    }

    .terms-item {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .terms-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .terms-item p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .terms-acknowledgment {
        padding: 20px;
        font-size: 14px;
        margin: 40px 0 30px 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* === WEBP IMAGE OPTIMIZATION === */
/* Modern browsers that support WebP will use these optimized versions */

@supports (background-image: url('test.webp')) {
    .hero {
        background-image: url('../images/hero-crowd-background.webp');
    }
    
    .hero-terms {
        background-image: url('../images/hero-crowd-background.webp');
    }
}

/* Reduce initial image sizes for faster loading */
@media (max-width: 768px) {
    .hero, .hero-terms {
        background-image: url('../images/hero-crowd-background.jpg');
    }
}

/* === FLIGHTS PAGE STYLES === */

/* Flights Intro Section */
.flights-intro-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lead-text {
    font-size: 24px;
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.6;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.benefit-item {
    text-align: center;
}

.benefit-item p {
    font-size: 18px;
    color: #1F2937;
    margin: 15px 0 5px;
}

.benefit-item strong {
    font-weight: 700;
}

.benefit-item small {
    color: #6B7280;
    font-size: 14px;
}

.savings-highlight {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.savings-highlight i {
    font-size: 48px;
}

.savings-highlight h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

/* Why Book Section */
.why-book-section {
    padding: 80px 0;
    background: white;
}

.why-book-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-book-card {
    text-align: center;
    padding: 30px 20px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.icon-wrapper i {
    font-size: 36px;
    color: white;
}

.why-book-card h3 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-book-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Flight Options Section */
.flight-options-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.flight-options-section .container {
    position: relative;
    z-index: 2;
}

.flight-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.flight-option-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.preferred-card {
    border: 3px solid #10B981;
}

.custom-card {
    border: 2px solid #e5e7eb;
}

.star-badge,
.search-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.search-icon {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.star-badge i,
.search-icon i {
    font-size: 28px;
    color: white;
}

.flight-option-card h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.card-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 30px;
    font-size: 16px;
}

.price-section {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: #F9FAFB;
    border-radius: 8px;
}

.price {
    font-size: 36px;
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', Georgia, serif;
}

.price-alt {
    font-size: 24px;
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 10px;
}

.compare-price {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.savings-badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    color: #4B5563;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: #10B981;
    font-size: 18px;
    flex-shrink: 0;
}

.btn-primary-flight,
.btn-outline-flight {
    width: 100%;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-flight {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-flight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline-flight {
    background: white;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.btn-outline-flight:hover {
    background: #3B82F6;
    color: white;
}

/* Preferred Departures Section */
.preferred-departures-section {
    padding: 80px 0;
    background: white;
}

.flights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.flight-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.flight-card:hover {
    border-color: #10B981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

.teaser-card {
    background: #F9FAFB;
    border-style: dashed;
}

.teaser-card:hover {
    transform: none;
    border-color: #9CA3AF;
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F3F4F6;
}

.flight-route i {
    color: #3B82F6;
    margin-right: 10px;
}

.flight-route h3 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 5px;
    font-weight: 700;
}

.flight-route p {
    color: #6B7280;
    font-size: 14px;
}

.badge-best-value,
.badge-lowest-price {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-lowest-price {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.flight-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
}

.time-item small {
    display: block;
    color: #6B7280;
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-item strong {
    color: #1F2937;
    font-size: 16px;
}

.flight-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.flight-features li {
    padding: 8px 0;
    color: #4B5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flight-features i {
    color: #10B981;
    font-size: 16px;
}

.flight-price-section {
    margin: 25px 0;
    padding: 20px;
    background: #F0FDF4;
    border-radius: 8px;
    text-align: center;
}

.price-large {
    font-size: 36px;
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', Georgia, serif;
}

.savings-box {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    color: #059669;
    font-size: 15px;
}

.urgency-alert {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 12px 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
    color: #92400E;
}

.urgency-alert i {
    color: #F59E0B;
    margin-right: 8px;
}

.btn-select-flight {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-flight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Custom Flight Section */
.custom-flight-section {
    padding: 100px 0;
    background: #F9FAFB;
    position: relative;
    overflow: visible;
}

.custom-flight-section .container {
    position: relative;
    z-index: 2;
}

.custom-flight-container {
    max-width: 920px;
    margin: 0 auto;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header i {
    margin-bottom: 16px;
    opacity: 0.9;
}

.form-header h2 {
    font-size: 42px;
    color: #111827;
    margin: 20px 0 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 17px;
    line-height: 1.6;
}

.form-subtitle {
    color: #6B7280;
    font-size: 18px;
    margin-bottom: 10px;
}

.flight-form {
    background: white;
    padding: 0;
}

/* Flight Discount Banner */
.flight-discount-banner {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.flight-discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.discount-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-icon i {
    font-size: 24px;
    color: white;
}

.discount-content {
    flex: 1;
}

.discount-content h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.discount-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
}

.discount-cta {
    background: white;
    color: #059669;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.discount-cta:hover {
    background: #F0FDF4;
    transform: translateX(4px);
}

/* Flight CTA Section */
.flight-cta-section {
    text-align: center;
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 12px;
    border: 1px solid #BFDBFE;
}

.flight-cta-section p {
    font-size: 18px;
    color: #1E40AF;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Search Container - Horizontal Layout */
.search-container {
    display: flex;
    gap: 0;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: visible;
}

.search-fields {
    display: flex;
    flex: 1;
    gap: 0;
}

.field-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-right: 1px solid #E5E7EB;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

.field-group:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.field-group:last-child {
    border-right: none;
}

.field-group:hover {
    background: #F9FAFB;
}

.field-group label {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-group label i {
    font-size: 12px;
    color: #9CA3AF;
}

.field-group input {
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    background: transparent;
    padding: 0;
}

.field-group input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.field-group input:focus {
    outline: none;
}

.field-group:focus-within {
    background: #F9FAFB;
    border-color: #3B82F6;
}

/* Travelers Field & Dropdown */
.travelers-field {
    min-width: 220px;
}

.travelers-field input {
    cursor: pointer;
}

.travelers-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.travelers-dropdown.active {
    display: block;
}

.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
}

.traveler-row:last-child {
    border-bottom: none;
    padding-bottom: 12px;
}

.traveler-row span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.traveler-row small {
    color: #9CA3AF;
    font-weight: 400;
}

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background: white;
    color: #374151;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: #F3F4F6;
    border-color: #3B82F6;
}

.counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 600;
    color: #111827;
    padding: 0;
}

/* Class Selector in Dropdown */
.class-selector {
    padding: 16px 0 12px;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
    margin: 12px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-option span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Baggage Selector */
.baggage-selector {
    padding-top: 12px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-option span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Search Button */
.btn-search-main {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    border: none;
    border-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0 24px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.btn-search-main:hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    transform: scale(1.02);
}

/* Contact Section */
.quote-contact {
    margin-top: 20px;
    padding: 20px 24px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.quote-contact p {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.quote-contact p i {
    color: #3B82F6;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-row input {
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.contact-row input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-size: 12px;
    color: #6B7280;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #F9FAFB;
    font-family: inherit;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #D1D5DB;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
    background: white;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #3B82F6;
    background: #F9FAFB;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-info-box {
    background: #EFF6FF;
    border-left: 4px solid #3B82F6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.form-info-box i {
    color: #3B82F6;
    font-size: 24px;
    flex-shrink: 0;
}

.form-info-box p {
    color: #1E40AF;
    margin: 0;
    line-height: 1.6;
}

.btn-submit-form {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-submit-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit-form:hover::before {
    left: 100%;
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.btn-submit-form:active {
    transform: translateY(-1px);
}

/* Multi-Step Form */
.form-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 60px;
    gap: 0;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border: 3px solid transparent;
}

.step.active .step-number {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
    transform: scale(1.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.step.completed .step-number {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.step.completed .step-number::after {
    content: '\2713';
    position: absolute;
    font-size: 24px;
}

.step-label {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.step.active .step-label {
    color: #1F2937;
    font-weight: 700;
}

.step.completed .step-label {
    color: #6B7280;
}

.step-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, #E5E7EB 0%, #E5E7EB 100%);
    margin: 0 -10px;
    position: relative;
    top: 30px;
    max-width: 120px;
}

.step.completed + .step-line {
    background: linear-gradient(to right, #10B981 0%, #059669 100%);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.passenger-block {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.passenger-block:hover {
    border-color: #D1D5DB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.passenger-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
    letter-spacing: 0.3px;
}

.form-navigation {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.btn-next,
.btn-prev {
    flex: 1;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-next {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.btn-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-next:hover::before {
    left: 100%;
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.btn-next:active {
    transform: translateY(-1px);
}

.btn-prev {
    background: white;
    color: #6B7280;
    border: 2px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-prev:hover {
    border-color: #3B82F6;
    color: #3B82F6;
    background: #F9FAFB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-guarantee {
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-guarantee i {
    color: #10B981;
    font-size: 18px;
}

.max-savings-tip {
    background: #FEF3C7;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid #FCD34D;
}

.max-savings-tip i {
    font-size: 32px;
    color: #F59E0B;
    margin-bottom: 10px;
}

.max-savings-tip h4 {
    color: #92400E;
    font-size: 20px;
    margin-bottom: 10px;
}

.max-savings-tip p {
    color: #78350F;
    margin: 0;
}

.max-savings-tip a {
    color: #3B82F6;
    font-weight: 700;
    text-decoration: none;
}

.max-savings-tip a:hover {
    text-decoration: underline;
}

/* Flights CTA Section */
.flights-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5D3A9B 0%, #4c2d6a 100%);
    text-align: center;
    color: white;
}

.flights-cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #96c458 0%, #7fb549 100%);
    color: #4c2d6a;
    box-shadow: 0 4px 15px rgba(150, 196, 88, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 196, 88, 0.4);
}

.btn-cta-secondary {
    background: white;
    color: #5D3A9B;
}

.btn-cta-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive Styles for Flights Page */
@media (max-width: 1024px) {
    .why-book-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .flights-intro-section,
    .why-book-section,
    .flight-options-section,
    .preferred-departures-section,
    .custom-flight-section,
    .flights-cta-section {
        padding: 50px 0;
    }

    .lead-text {
        font-size: 20px;
    }

    .benefits-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .savings-highlight {
        flex-direction: column;
        padding: 25px;
    }

    .savings-highlight h3 {
        font-size: 20px;
        text-align: center;
    }

    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .flight-options-grid {
        grid-template-columns: 1fr;
    }

    .form-header h2 {
        font-size: 26px;
    }

    .form-header p {
        font-size: 14px;
    }

    .search-container {
        flex-direction: column;
        padding: 8px;
    }

    .search-fields {
        flex-direction: column;
    }

    .field-group {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        padding: 16px;
    }

    .field-group:last-child {
        border-bottom: none;
    }

    .btn-search-main {
        width: 100%;
        padding: 16px;
        border-radius: 10px;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .quote-contact {
        padding: 16px;
    }

    .flight-discount-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .discount-content h3 {
        font-size: 20px;
    }

    .discount-content p {
        font-size: 14px;
    }

    .discount-cta {
        width: 100%;
        justify-content: center;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .flight-times {
        grid-template-columns: 1fr;
    }

    .flights-cta-section h2 {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto !important;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
  text-decoration: none;
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
