/*============================================
   Modern Enhancements for Green Origin Tours
   Enhanced styling, animations, and modern design patterns
==============================================*/

/* Modern Color Scheme & Variables */
:root {
    --primary-green: #1a5d1a;
    --secondary-green: #2d8f2d;
    --accent-green: #4ade80;
    --light-green: #86efac;
    --dark-green: #15803d;
    
    --primary-gold: #d7821c;
    --secondary-gold: #f59e0b;
    --light-gold: #fbbf24;
    
    --modern-white: #fefefe;
    --soft-white: #f8fafc;
    --light-gray: #f1f5f9;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Enhanced Typography */
body {
    background-color: var(--soft-white);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-weight: 400;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

/* Modern Button Styles */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.modern-btn:hover::before {
    transform: translateX(100%);
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    box-shadow: var(--shadow-md);
}

.modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.modern-btn-secondary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    box-shadow: var(--shadow-md);
}

.modern-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.modern-btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.modern-btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-1px);
}

/* Modern Card Components */
.modern-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 24px;
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.modern-card:hover::before {
    transform: scaleX(1);
}

.modern-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.modern-card:hover .modern-card-image {
    transform: scale(1.05);
}

.modern-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.modern-card-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Enhanced Hero Section */
.modern-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.85), rgba(45, 143, 45, 0.7));
    z-index: 1;
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    color: white;
    font-weight: 500;
}

.modern-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    letter-spacing: 0.025em;
}

.modern-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #4ade80);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-text {
    color: var(--light-gold);
    display: inline-block;
    position: relative;
}

.modern-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-stats {
    margin: 24px 0;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.modern-hero-buttons {
    gap: 16px;
    margin: 32px 0;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-weight: 600;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.modern-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    color: white;
    transition: var(--transition-normal);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Modern Booking Form Styles */
.modern-booking-area {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 40px;
}

.modern-booking-header {
    margin-bottom: 32px;
}

.modern-booking-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.modern-booking-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin: 0;
}

.modern-booking-form-wrap {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-booking-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--primary-gold));
}

.modern-nav-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: var(--light-gray);
    padding: 8px;
    border-radius: var(--radius-lg);
}

.modern-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--medium-gray);
    font-weight: 500;
    position: relative;
}

.modern-nav-link.active {
    background: white;
    color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.nav-link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    font-size: 20px;
}

.nav-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.nav-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.nav-subtitle {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1;
}

/* Enhanced Form Inputs */
.tg-booking-form-input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
}

.tg-booking-form-parent-inner {
    flex: 1;
    min-width: 200px;
}

.tg-booking-form-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.custom-select {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.custom-select:hover {
    border-color: var(--accent-green);
}

.custom-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
}

.custom-options {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.custom-option {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

.tg-booking-add-input-date input {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--dark-gray);
    transition: var(--transition-normal);
    width: 100%;
}

.tg-booking-add-input-date input:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
}

.bk-search-button {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    min-width: 140px;
}

.bk-search-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.bk-search-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-trust-badges {
        gap: 16px;
    }
    
    .modern-booking-form-wrap {
        padding: 24px;
        margin: 0 16px;
    }
    
    .tg-booking-form-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modern-nav-tabs {
        flex-direction: column;
    }
    
    .nav-link-content {
        justify-content: center;
    }
}
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
    z-index: 1;
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.modern-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, white, var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
}

.modern-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
}

.modern-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Modern Form Styling */
.modern-form {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.modern-form-group {
    margin-bottom: 24px;
}

.modern-form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modern-form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: white;
}

.modern-form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
    transform: translateY(-1px);
}

.modern-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

/* Modern Grid System */
.modern-grid {
    display: grid;
    gap: 24px;
}

.modern-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.modern-grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.modern-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.fade-in-up { animation: fadeInUp 0.8s ease both; }
.fade-in-down { animation: fadeInDown 0.8s ease both; }
.fade-in-left { animation: fadeInLeft 0.8s ease both; }
.fade-in-right { animation: fadeInRight 0.8s ease both; }
.scale-in { animation: scaleIn 0.6s ease both; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Modern Section Styling */
.modern-section {
    padding: 80px 0;
    position: relative;
}

.modern-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.modern-section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.modern-section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 400;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .modern-btn {
        width: 100%;
        padding: 16px 24px;
    }
    
    .modern-card {
        padding: 20px;
    }
    
    .modern-form {
        padding: 24px;
    }
    
    .modern-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .modern-section {
        padding: 40px 0;
    }
    
    .modern-section-header {
        margin-bottom: 40px;
    }
}

/* Modern Navigation Enhancement */
.modern-nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition-normal);
}

.modern-nav-item {
    position: relative;
    padding: 12px 20px;
    transition: var(--transition-fast);
    border-radius: var(--radius-md);
}

.modern-nav-item:hover {
    background: rgba(26, 93, 26, 0.05);
    color: var(--primary-green);
}

.modern-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.modern-nav-item:hover::after,
.modern-nav-item.active::after {
    width: 80%;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, var(--dark-gray), #0f172a);
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.modern-footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.modern-footer-section {
    margin-bottom: 40px;
}

.modern-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-green);
}

.modern-footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    padding: 4px 0;
}

.modern-footer-link:hover {
    color: var(--accent-green);
    transform: translateX(4px);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for keyboard navigation */
.modern-btn:focus,
.modern-form-input:focus,
.modern-nav-item:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .modern-card {
        border: 2px solid var(--dark-gray);
    }
    
    .modern-btn {
        border: 2px solid currentColor;
    }
}

/* ==================================================
   ENHANCED MODERN CTA SECTION STYLES
   ================================================== */

.modern-cta-section-enhanced {
    position: relative;
    padding: 40px 0 80px;
    background: linear-gradient(135deg, 
        rgba(26, 93, 26, 0.03) 0%, 
        rgba(74, 222, 128, 0.05) 25%,
        rgba(251, 191, 36, 0.03) 75%,
        rgba(26, 93, 26, 0.03) 100%);
    overflow: hidden;
    z-index: 10;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 25% 25%, rgba(74, 222, 128, 0.06), transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 93, 26, 0.03), transparent 70%);
    animation: ctaPatternFloat 20s ease-in-out infinite;
}

.modern-cta-floating-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transform: translateY(0);
    transition: var(--transition-slow);
    margin-bottom: -40px;
    z-index: 20;
}

.modern-cta-floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08);
}

/* CTA Stats Bar */
.cta-stats-bar {
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.85), rgba(45, 143, 45, 0.85));
    padding: 12px 20px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    overflow: hidden;
}

.cta-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08), transparent);
    z-index: 1;
}

.stat-item-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
    margin-bottom: 4px;
}

.stat-item-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-number-cta {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.1;
}

.stat-label-cta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.1;
}

/* Main CTA Content */
.modern-cta-main-content {
    padding: 30px 25px;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 93, 26, 0.01), 
        rgba(74, 222, 128, 0.02),
        rgba(251, 191, 36, 0.01));
    z-index: 1;
}

/* CTA Visual Elements */
.modern-cta-visual {
    position: relative;
    height: 180px;
}

.cta-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-image-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cta-image-card.card-1 {
    width: 120px;
    height: 140px;
    top: 0;
    left: 15px;
    z-index: 2;
    transform: rotate(-5deg);
}

.cta-image-card.card-1:hover {
    transform: rotate(-3deg) scale(1.05);
    z-index: 3;
}

.cta-image-card.card-2 {
    width: 90px;
    height: 80px;
    bottom: 15px;
    right: 8px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.8), rgba(26, 93, 26, 0.8));
    z-index: 1;
    transform: rotate(8deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-card.card-2:hover {
    transform: rotate(5deg) scale(1.08);
}

.cta-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: white;
    text-align: center;
    padding: 15px;
}

.experience-badge i {
    font-size: 20px;
    margin-bottom: 2px;
}

.experience-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 93, 26, 0.8);
    font-size: 10px;
    box-shadow: var(--shadow-sm);
    animation: floatUpDown 3s ease-in-out infinite;
}

.float-icon.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon.float-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.float-icon.float-3 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

/* CTA Content */
.modern-cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(26, 93, 26, 0.05));
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50px;
    padding: 6px 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    left: 12px;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: ctaPulse 2s ease-in-out infinite;
}

.badge-text {
    color: rgba(26, 93, 26, 0.8);
    font-weight: 600;
    font-size: 0.75rem;
}

.cta-main-title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 12px;
}

.gradient-text-enhanced {
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.9), rgba(74, 222, 128, 0.9), rgba(215, 130, 28, 0.9));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.cta-description {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.4;
    margin-bottom: 16px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.feature-point i {
    color: rgba(74, 222, 128, 0.8);
    font-size: 12px;
    flex-shrink: 0;
}

/* CTA Action Column */
.modern-cta-action {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-urgency {
    margin-bottom: 18px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(238, 90, 82, 0.8));
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: ctaUrgencyPulse 2s ease-in-out infinite;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.25);
}

.cta-primary-button {
    display: block;
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.9), rgba(45, 143, 45, 0.9));
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    margin-bottom: 12px;
}

.cta-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-icon-group {
    display: flex;
    gap: 4px;
}

.btn-icon-group i {
    transition: transform 0.3s ease;
}

.cta-primary-button:hover .btn-icon-group i:first-child {
    transform: translateX(4px);
}

.cta-primary-button:hover .btn-icon-group i:last-child {
    transform: translateX(8px);
}

.button-glow {
    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.6s ease;
}

.cta-primary-button:hover .button-glow {
    left: 100%;
}

.cta-guarantee {
    margin-top: 12px;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.guarantee-item i {
    color: rgba(74, 222, 128, 0.7);
    font-size: 11px;
}

/* Floating Contact Options */
.floating-contact-options {
    position: absolute;
    top: 25px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 30;
}

.contact-option {
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
}

.contact-option a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-option:hover {
    transform: translateX(-3px) scale(1.03);
}

.whatsapp-option a {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-option:hover a {
    background: #25D366;
    color: white;
}

.phone-option a {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.phone-option:hover a {
    background: #007bff;
    color: white;
}

.email-option a {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.email-option:hover a {
    background: #dc3545;
    color: white;
}

/* Footer Transition Wave */
.footer-transition-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 15;
}

.footer-transition-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 45px;
}

.footer-transition-wave .shape-fill {
    fill: linear-gradient(135deg, #0f172a, #1e293b);
    fill: #0f172a;
}

/* Animations */
@keyframes ctaPatternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -10px) rotate(1deg); }
    66% { transform: translate(-15px, 15px) rotate(-1deg); }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ctaPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes ctaUrgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.modern-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-white), rgba(34, 197, 94, 0.05));
    position: relative;
    overflow: hidden;
}

.modern-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.1), transparent);
    animation: ctaFloat 15s ease-in-out infinite;
}

.modern-cta-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.3s ease;
}

.modern-cta-card:hover {
    transform: translateY(-5px);
}

.modern-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    z-index: 1;
}

.modern-cta-content {
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.modern-cta-image {
    text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.cta-phone-img {
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .cta-phone-img {
    transform: scale(1.05) rotate(2deg);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.image-wrapper:hover .image-glow {
    opacity: 1;
}

.modern-cta-text {
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.modern-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.modern-cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

.modern-cta-actions {
    text-align: center;
}

.modern-cta-btn {
    background: white;
    color: var(--primary-green);
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
    max-width: 280px;
}

.modern-cta-btn:hover {
    background: var(--soft-white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 16px;
    color: var(--light-gold);
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ==================================================
   MODERN FOOTER STYLES
   ================================================== */

.modern-footer {
    position: relative;
    overflow: hidden;
}

.modern-footer-bg {
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    position: relative;
}

.modern-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.05), transparent),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.03), transparent);
    z-index: 1;
}

.modern-footer-content {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.modern-footer-section {
    margin-bottom: 40px;
}

.modern-footer-logo {
    margin-bottom: 24px;
}

.logo-container {
    display: inline-block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.logo-container:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.modern-footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.modern-footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.modern-footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--light-gold));
    border-radius: 2px;
}

/* Social Links */
.social-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: currentColor;
}

.social-link.facebook:hover { color: #1877f2; }
.social-link.facebook::before { background: #1877f2; }

.social-link.instagram:hover { color: #E4405F; }
.social-link.instagram::before { background: linear-gradient(45deg, #F56040, #E4405F, #C13584); }

.social-link.twitter:hover { color: #1DA1F2; }
.social-link.twitter::before { background: #1DA1F2; }

.social-link.youtube:hover { color: #FF0000; }
.social-link.youtube::before { background: #FF0000; }

.social-link.tripadvisor:hover { color: #00AF87; }
.social-link.tripadvisor::before { background: #00AF87; }

.social-link.tiktok:hover { color: #000; }
.social-link.tiktok::before { background: #fff; }

.social-link.pinterest:hover { color: #E60023; }
.social-link.pinterest::before { background: #E60023; }

.social-link.google:hover { color: #EA4335; }
.social-link.google::before { background: #EA4335; }

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-gray);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--dark-gray);
}

.social-link:hover .tooltip {
    opacity: 1;
}

/* Footer Links */
.modern-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer-links li {
    margin-bottom: 12px;
}

.modern-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-footer-links a i {
    font-size: 10px;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.modern-footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.modern-footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.modern-contact-info {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    border-radius: 50%;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-content h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-content a,
.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.4;
    margin: 0;
}

.contact-content a:hover {
    color: var(--accent-green);
}

/* Newsletter */
.modern-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: var(--transition-normal);
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    transform: scale(1.05);
}

/* Trust Badges */
.modern-footer-trust {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Compact Trust Badges */
.trust-badges-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.trust-badge-small {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    flex: 0 1 auto;
    min-width: 140px;
}

.trust-badge-small:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.trust-badge-small i {
    font-size: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.trust-content-small {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.trust-title-small {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.trust-desc-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    line-height: 1.2;
}

/* Enhanced Newsletter Section */
.modern-newsletter-large {
    background: rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.modern-newsletter-large:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.newsletter-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.newsletter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    border-radius: 50%;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.newsletter-info {
    flex: 1;
    min-width: 0;
}

.newsletter-title-large {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.newsletter-text-large {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.newsletter-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-input-group-large {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: var(--transition-normal);
}

.newsletter-input-group-large:focus-within {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.newsletter-input-large {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.newsletter-input-large::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn-large {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.newsletter-btn-large:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    transform: scale(1.02);
}

.btn-text-newsletter {
    font-weight: 600;
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 12px;
    color: var(--accent-green);
}

/* Original Trust Badges (for backward compatibility) */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 24px;
    color: var(--accent-green);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1;
}

.footer-cta {
    text-align: center;
}

.footer-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.footer-btn:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--light-gold));
    transform: translateY(-2px);
    color: white;
}

/* Footer Bottom */
.modern-footer-bottom {
    background: linear-gradient(135deg, 
        rgba(26, 93, 26, 0.9) 0%, 
        rgba(21, 128, 61, 0.85) 25%,
        rgba(26, 93, 26, 0.9) 50%,
        rgba(45, 143, 45, 0.85) 75%,
        rgba(26, 93, 26, 0.9) 100%);
    padding: 20px 0;
    border-top: 1px solid rgba(74, 222, 128, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.modern-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 222, 128, 0.1), transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(134, 239, 172, 0.08), transparent 60%);
    z-index: -1;
}

.footer-copyright {
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.brand-name {
    color: var(--light-green);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-links-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.footer-links-bottom a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(134, 239, 172, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.footer-links-bottom a:hover::before {
    transform: scaleX(1);
}

.footer-links-bottom a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ==================================================
   RESPONSIVE DESIGN FOR FOOTER
   ================================================== */

@media (max-width: 1200px) {
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        flex: none;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .modern-cta-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .modern-cta-title {
        font-size: 2rem;
    }
    
    .modern-footer-content {
        padding: 60px 0 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-badge {
        min-width: auto;
    }
    
    /* Compact Trust Badges Mobile */
    .trust-badges-compact {
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .trust-badge-small {
        min-width: 120px;
        flex: 0 1 calc(50% - 6px);
    }
    
    .trust-title-small {
        font-size: 0.7rem;
    }
    
    .trust-desc-small {
        font-size: 0.6rem;
    }
    
    /* Large Newsletter Mobile */
    .modern-newsletter-large {
        padding: 20px;
        margin-top: 20px;
    }
    
    .newsletter-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .newsletter-title-large {
        font-size: 1rem;
        text-align: center;
    }
    
    .newsletter-text-large {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .newsletter-benefits {
        justify-content: center;
        gap: 12px;
    }
    
    .newsletter-input-group-large {
        flex-direction: column;
    }
    
    .newsletter-btn-large {
        padding: 12px 16px;
        justify-content: center;
    }
    
    .footer-cta {
        margin-top: 20px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .modern-cta-section {
        padding: 60px 0;
    }
    
    .modern-cta-content {
        padding: 30px 15px;
    }
    
    .cta-trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .modern-footer-section {
        text-align: center;
    }
    
    .modern-footer-links a {
        justify-content: center;
    }
}

/* Modern Feature Card Hover Effects */
.modern-feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.modern-feature-card:hover::before {
    left: 100%;
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
    border-color: var(--primary-green) !important;
}

.modern-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.feature-icon {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Enhanced booking form styling */
.modern-form {
    transition: all 0.3s ease;
    position: relative;
}

.modern-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--primary-gold));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-form:hover::after {
    opacity: 1;
}

.modern-form:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Modern section styling with animated background */
.modern-section {
    position: relative;
    overflow: hidden;
}

.modern-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite alternate;
    z-index: 0;
}

.modern-section > * {
    position: relative;
    z-index: 1;
}

@keyframes backgroundShift {
    0% { transform: translate(-25%, -25%) rotate(0deg); }
    100% { transform: translate(-75%, -75%) rotate(360deg); }
}

/* Enhanced tab styling for booking form */
.nav-links {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-links:hover::before,
.nav-links.active::before {
    transform: translateX(100%);
}

/* Improved form input styling */
.input, .tg-booking-add-input-date input {
    transition: all 0.3s ease;
    position: relative;
}

.input:focus, .tg-booking-add-input-date input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

/* Custom dropdown enhancements */
.custom-select {
    transition: all 0.3s ease;
}

.custom-select:hover {
    border-color: var(--primary-green);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.custom-options {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.custom-option {
    transition: all 0.2s ease;
    position: relative;
}

.custom-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-green);
    transition: width 0.3s ease;
    opacity: 0.1;
}

.custom-option:hover::before {
    width: 100%;
}

.custom-option:hover {
    color: var(--primary-green);
    padding-left: 16px;
}

/* Enhanced button styling */
.bk-search-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bk-search-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.bk-search-button:hover::before {
    width: 300px;
    height: 300px;
}

.bk-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Loading animation for buttons */
.bk-search-button.loading {
    pointer-events: none;
}

.bk-search-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
