/* =============================================================================
   EXTENDED CUSTOM STYLES
   ========================================================================== */

/* Hero Section */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 193, 0, 0.8) 0%, rgba(43, 43, 43, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 1;
}

/* Search Bar */
.search-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(24, 193, 0, 0.1);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(24, 193, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 24px;
    color: var(--primary-green);
}

.feature-card h3 {
    margin-bottom: var(--spacing-md);
}

/* Destination Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.destination-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.destination-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-card-img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
    color: white;
    z-index: 1;
}

.destination-name {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-body {
    padding: var(--spacing-lg);
}

.package-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--secondary-grey);
    margin-bottom: var(--spacing-md);
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-lg);
}

.package-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.package-features li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.package-features li:last-child {
    border: none;
}

.package-features li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: 600;
    margin-right: 8px;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-green);
    text-align: center;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--secondary-grey);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 12px;
}

/* Inquiry Form */
.inquiry-form {
    background: var(--light-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

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

.form-row input,
.form-row select,
.form-row textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(24, 193, 0, 0.1);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--secondary-grey);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
}

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

.blog-body {
    padding: var(--spacing-lg);
}

.blog-category {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.blog-meta {
    font-size: 12px;
    color: var(--secondary-grey);
    margin-bottom: var(--spacing-md);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--secondary-grey);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: var(--primary-green);
}

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

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--secondary-grey);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-lg);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 193, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    font-size: 32px;
    color: white;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0fa000 100%);
    color: white;
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.newsletter-title {
    color: white;
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: flex-end;
    max-width: 500px;
    margin: var(--spacing-lg) auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 12px 28px;
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* CTA Buttons */
.cta-section {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-2xl);
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Elementor Integration */
.elementor-widget-text-editor {
    color: var(--dark-text);
}

.elementor-button-wrapper .elementor-button {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.elementor-button-wrapper .elementor-button:hover {
    background-color: #0fa000;
}

/* Print Styles */
@media print {
    .sticky-whatsapp,
    .sticky-call,
    .site-header,
    .site-footer {
        display: none;
    }
}

/* ===== NEW PREMIUM DESIGN STYLES ===== */

/* Hero Section */
.hero-section {
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #18C100, #0da800);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--secondary-grey);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

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

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Travelers Card */
.travelers-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
}

.travelers-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.travelers-emoji {
    font-size: 32px;
    margin: 10px 0;
}

.travelers-text {
    font-size: 14px;
    color: var(--secondary-grey);
    margin-bottom: 20px;
    font-weight: 600;
}

.travelers-avatars {
    display: flex;
    justify-content: center;
    gap: -8px;
}

.avatar-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid white;
    margin: 0 -8px;
}

.avatar-item:nth-child(2) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.avatar-item:nth-child(3) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Category Section */
.category-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

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

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 700;
}

/* Journeys Section */
.journeys-section {
    padding: 80px 0;
}

.journeys-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journeys-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.journeys-content p {
    font-size: 16px;
    color: var(--secondary-grey);
    line-height: 1.8;
    margin-bottom: 40px;
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--secondary-grey);
    margin-top: 8px;
    font-weight: 600;
}

.journeys-images {
    display: flex;
    gap: 20px;
}

.journey-image-main {
    flex: 1;
    min-height: 300px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.journey-image-collage {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0.7;
}

.collage-img {
    height: 90px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dream Trip Section */
.dream-trip-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.dream-trip-header {
    text-align: center;
    margin-bottom: 60px;
}

.dream-trip-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.dream-trip-header p {
    font-size: 16px;
    color: var(--secondary-grey);
}

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

.destination-showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.destination-showcase-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-showcase-body {
    padding: 24px;
}

.destination-showcase-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.destination-rating {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 14px;
}

.destination-showcase-body p {
    font-size: 13px;
    color: var(--secondary-grey);
    margin-bottom: 16px;
}

.destination-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.destination-link:hover {
    gap: 12px;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-green);
    width: 30px;
    border-radius: 5px;
}

/* Expert Guidance Section */
.expert-guidance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.expert-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expert-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.expert-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.expert-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expert-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.expert-stat-label {
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.8;
}

.promo-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0da800 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.promo-discount {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.promo-percentage {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.promo-text {
    font-size: 13px;
    margin: 15px 0 30px;
    opacity: 0.95;
}

.promo-box .btn {
    width: 100%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.testimonials-section > .container > h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.section-desc {
    text-align: center;
    color: var(--secondary-grey);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-grey);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info {}

.author-name {
    font-weight: 700;
    color: var(--dark-text);
}

.author-title {
    font-size: 12px;
    color: var(--secondary-grey);
}

/* Blog Insights Section */
.blog-insights-section {
    padding: 80px 0;
}

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

.blog-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-text);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-body {
    padding: 30px;
}

.blog-body h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.blog-body p {
    font-size: 14px;
    color: var(--secondary-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0da800 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.newsletter-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 32px;
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(0, 0, 0, 0.85);
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.final-cta-section p {
    font-size: 18px;
    color: var(--secondary-grey);
    margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .travelers-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .journeys-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expert-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
    }
    
    .journeys-images {
        flex-direction: column;
    }
    
    .expert-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .final-cta-section .cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-section .cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-showcase {
        grid-template-columns: 1fr;
    }
    
    .pagination-dots {
        margin-top: 20px;
    }
    
    .promo-box {
        padding: 30px 20px;
    }
    
    .newsletter-box {
        padding: 40px 20px;
    }
    
    .blog-header h2 {
        font-size: 28px;
    }
}
