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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f97316;
    --accent-color: #06b6d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f3f4f6;
    --dark-bg: #111827;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    overflow-wrap: anywhere;
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
}

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

.text-white {
    color: var(--white);
}

.mt-5 {
    margin-top: 50px;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
        background-image: url('../../images/Gogia-club-logo-128.png');
    background-size: 28px;

    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #3174b8;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
}

.navbar.scrolled .logo a {
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
    color: #f9731600; /*var(--secondary-color);*/

}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .bar {
    background: var(--text-dark);
}

.callme {
    display :none;
}

.callme.strong {
    display :flex;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    top: 24px;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0);
    /*background: rgb(247 142 40 / 50%);*/

}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    backdrop-filter: blur(2px);

}

.hero-title {
    padding-top: 2em;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {

    background: rgba(37, 99, 235, 0.75);

    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: var(--secondary-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 30px;
    margin-top: 10px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

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

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   OVERVIEW SECTION
======================================== */
.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* ========================================
   ITINERARY PREVIEW
======================================== */
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.itinerary-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.itinerary-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.itinerary-card.featured {
    border: 3px solid var(--secondary-color);
}

.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image i {
    font-size: s0px;
    color: var(--white);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-tag {
    display: inline-block;
    background: var(--light-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   PRICING PREVIEW
======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    margin-bottom: 10px;
}

.price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.pricing-subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--success-color);
}

/* ========================================
   WHY CHOOSE SECTION
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-box-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-box-icon i {
    font-size: 42px;
    color: var(--white);
}

.feature-box h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.cta-box {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

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

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer h4 i {
    color: var(--secondary-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.page-header-content {
    background: #8e704542; /*#0000007a;*/
    backdrop-filter: blur(2px);

    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 12px;
}

/* ========================================
   ITINERARY TIMELINE
======================================== */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;

}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.timeline-marker span {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.timeline-marker.featured {
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-header {
    margin-bottom: 20px;
}

.timeline-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-tag.featured {
    background: var(--secondary-color);
    color: var(--white);
}

.timeline-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.highlights-list i {
    color: var(--success-color);
}

.timeline-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    opacity: 0.05;
    color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-image {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-image {
    left: 20px;
}

/* ========================================
   FOOD GRID
======================================== */
.food-grid {
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.food-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.food-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.food-icon i {
    font-size: 32px;
    color: var(--white);
}

.food-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.food-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   FLIGHT DETAILS
======================================== */
.flight-details {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.flight-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.flight-detail-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.flight-detail-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.flight-detail-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   CHURCH HIGHLIGHTS
======================================== */
.church-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.highlight-box i {
    font-size: 20px;
}

/* ========================================
   WHAT TO BRING
======================================== */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gear-item {
    text-align: center;
    padding: 30px;
}

.gear-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gear-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.gear-item p {
    color: var(--text-light);
}

/* ========================================
   PRICING DETAILED
======================================== */
.pricing-table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-table-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-table-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-table-card.popular {
    border: 3px solid var(--secondary-color);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
}

.pricing-table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.group-size {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.pricing-table-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-large .amount {
    font-size: 64px;
    font-weight: 800;
}

.price-large .currency {
    font-size: 28px;
    font-weight: 700;
}

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

.savings-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
}

.savings-badge.highlight {
    background: var(--secondary-color);
}

.pricing-table-body {
    padding: 40px 30px;
}

.pricing-includes {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-includes li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-includes li i.fa-check {
    color: var(--success-color);
}

.pricing-includes li i.fa-times {
    color: #ef4444;
}

/* Non-Flying Package */
.non-flying-package {
    background: linear-gradient(135deg, #fbbf24, var(--secondary-color));
    border-radius: 20px;
    padding: 50px;
    color: var(--white);
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-header h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.package-header p {
    font-size: 18px;
    opacity: 0.95;
}

.package-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.package-price {
    text-align: center;
}

.package-price .amount {
    font-size: 72px;
    font-weight: 800;
}

.package-price .currency {
    font-size: 32px;
    font-weight: 700;
}

.package-price .period {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.package-includes {
    list-style: none;
}

.package-includes li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.package-includes i.fa-check {
    color: var(--success-color);
    background: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.package-includes i.fa-times {
    color: #dc2626;
    background: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ========================================
   INCLUDED SECTION
======================================== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.included-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.included-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.included-icon i {
    font-size: 38px;
    color: var(--white);
}

.included-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.included-item p {
    color: var(--text-light);
}

/* ========================================
   BOOKING SECTION
======================================== */
.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.form-note {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.sidebar-card h3 i {
    color: var(--primary-color);
}

.info-list,
.gear-list {
    list-style: none;
}

.info-list li,
.gear-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child,
.gear-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 3px;
}

.info-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.info-list span {
    color: var(--text-light);
    font-size: 14px;
}

.gear-list i {
    color: var(--success-color);
    margin-top: 3px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.highlight-card h3 {
    color: var(--white);
}

.highlight-card h3 i {
    color: var(--white);
}

.highlight-card p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 40px;
}

.faq-category h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h3 i {
    color: var(--primary-color);
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s backwards;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-image {
        display: none;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .package-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: var(--text-dark);
        font-size: 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 42px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .price-large .amount {
        font-size: 48px;
    }
    
    .package-price .amount {
        font-size: 56px;
    }
}
/* ========================================
   TOP BANNER: PHONE & MESSENGER BUTTONS
======================================== */
.phone-sticker-banner {
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    color: var(--white);
    padding: 15px 0;
    position: relative;
    z-index: 999;
    margin-top: 80px; /* Sits below fixed navbar */
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

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

.sticker-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.sticker-text i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.sticker-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sticker-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.sticker-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Brand Colors */
.btn-phone {
    background: #ffffff;
    color: var(--secondary-color);
}
.btn-phone:hover { background: #fff8f0; }

.btn-whatsapp {
    background: #25D366; /* WhatsApp Green */
}
.btn-whatsapp:hover { background: #1ebe5d; }

.btn-telegram {
    background: #0088cc; /* Telegram Blue */
}
.btn-telegram:hover { background: #0077b5; }

/* ========================================
   FLOATING CONTACT GROUP (Bottom Right)
======================================== */
.floating-contact-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1001;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Staggered floating animation for visual appeal */
.floating-btn.btn-phone {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: float-bounce 3s ease-in-out infinite;
}

.floating-btn.btn-whatsapp {
    background: #25D366;
    animation: float-bounce 3s ease-in-out infinite 0.5s;
}

.floating-btn.btn-telegram {
    background: #0088cc;
    animation: float-bounce 3s ease-in-out infinite 1s;
}


