/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

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

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a21, #3a5f42);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    color: #2c5530;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.nav-brand .tagline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5530;
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23228B22" width="1200" height="600"/><path fill="%2332CD32" d="M0 300c200-50 400-50 600 0s400 50 600 0v300H0z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.experiences-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%238B4513" width="1200" height="600"/><path fill="%23A0522D" d="M0 300c200-100 400-100 600 0s400 100 600 0v300H0z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Search Section */
.search-section {
    padding: 4rem 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1000px;
}

.search-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #2c5530;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-label i {
    color: #2c5530;
}

.search-input {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.search-button {
    width: 100%;
    height: 55px;
    margin-top: 1.5rem;
}

.search-button-field {
    display: flex;
    align-items: end;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-title {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.results-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.property-location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 85, 48, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.property-content {
    padding: 1.5rem;
}

.property-name {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.property-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.property-details {
    margin-bottom: 1.5rem;
}

.property-capacity {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-tag {
    background: #e8f5e8;
    color: #2c5530;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.amenity-more {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
}

.property-book-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.contact-item p {
    opacity: 0.9;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    margin-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    width: 100%;
    background: white;
    color: #2c5530;
}

.contact-form button:hover {
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a7c59;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #4a7c59;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a7c59;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.7;
}

/* Experiences Page Styles */
.coming-soon-section {
    padding: 5rem 0;
    background: white;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #4a7c59;
    margin-bottom: 2rem;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.experience-preview {
    margin-bottom: 4rem;
}

.experience-preview h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 2rem;
}

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

.preview-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.preview-item i {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.preview-item h4 {
    font-size: 1.2rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.preview-item p {
    color: #666;
    font-size: 0.95rem;
}

.notification-signup {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.notification-signup h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.notification-signup p {
    color: #666;
    margin-bottom: 2rem;
}

.notify-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.notify-form button {
    padding: 12px 24px;
    white-space: nowrap;
}

.temp-experiences-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.temp-experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.temp-experience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.temp-experience-card:hover {
    transform: translateY(-5px);
}

.temp-experience-image {
    margin-bottom: 1.5rem;
}

.temp-experience-image i {
    font-size: 3rem;
    color: #4a7c59;
}

.temp-experience-content h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.temp-experience-content p {
    color: #666;
    margin-bottom: 1rem;
}

.availability {
    background: #e8f5e8;
    color: #2c5530;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-button-field {
        margin-top: 1rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .temp-experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .notify-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .search-title {
        font-size: 1.8rem;
    }
    
    .results-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5530;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4a7c59;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c5530;
}

/* ============================================
   ENHANCED SEARCH STYLES (Working Version)
   ============================================ */

.enhanced-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-header h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.search-header p {
    color: #666;
    font-size: 1rem;
}

.enhanced-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    background: rgba(44, 85, 48, 0.02);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(44, 85, 48, 0.08);
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(44, 85, 48, 0.15);
    background: rgba(44, 85, 48, 0.05);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-label i {
    color: #4a7c59;
    font-size: 1.3rem;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-option:hover {
    border-color: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.1);
}

.location-option.selected {
    border-color: #2c5530;
    background: rgba(44, 85, 48, 0.05);
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
}

.location-text h4 {
    color: #2c5530;
    margin-bottom: 4px;
    font-size: 1rem;
}

.location-text p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Date Inputs */
.date-inputs {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e9ecef;
}

.date-group {
    flex: 1;
}

.date-group label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.enhanced-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.enhanced-input:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.date-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4a7c59;
    font-weight: 600;
}

.date-separator i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.date-separator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guest Controls */
.guest-controls {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e9ecef;
}

.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.guest-type:last-child {
    border-bottom: none;
}

.guest-info h4 {
    color: #2c5530;
    margin-bottom: 4px;
    font-size: 1rem;
}

.guest-info span {
    color: #666;
    font-size: 0.85rem;
}

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

.counter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #666;
}

.counter-btn:hover {
    border-color: #4a7c59;
    background: #4a7c59;
    color: white;
}

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

.count-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5530;
    min-width: 25px;
    text-align: center;
}

/* Search Button */
.enhanced-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.enhanced-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 85, 48, 0.4);
}

.search-promise {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* ============================================
   DYNAMIC PROPERTIES GRID STYLES
   ============================================ */

.dynamic-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.property-card.enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 85, 48, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(44, 85, 48, 0.05);
}

.property-card.enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.2);
}

/* Property Image Container */
.property-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card.enhanced:hover .property-main-image {
    transform: scale(1.05);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.property-card.enhanced:hover .property-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Property Badges */
.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.property-badge.popular {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.property-badge.luxury {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.property-badge.nature {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.property-location-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c5530;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

/* Property Details */
.property-details {
    padding: 25px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.property-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.property-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

/* Property Amenities */
.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(44, 85, 48, 0.08);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #4a7c59;
    font-weight: 500;
}

.amenity i {
    font-size: 0.85rem;
}

/* Property Stats */
.property-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.stat i {
    color: #4a7c59;
    font-size: 1.1rem;
}

.stat span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* Property Price Section */
.property-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-display {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c5530;
    font-family: 'Playfair Display', serif;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    margin-top: -5px;
}

.booking-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-book-now {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(44, 85, 48, 0.1);
    border: 2px solid rgba(44, 85, 48, 0.2);
    border-radius: 50%;
    color: #4a7c59;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-favorite:hover {
    background: #4a7c59;
    color: white;
    transform: scale(1.1);
}

.btn-favorite.favorited {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
}

.btn-favorite.favorited i {
    animation: heartPulse 0.6s ease-in-out;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dynamic-properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .property-card.enhanced {
        margin: 0 10px;
    }
    
    .property-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .property-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        flex-direction: row;
        justify-content: center;
    }
    
    .property-price-section {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .booking-actions {
        justify-content: center;
    }
}

/* ============================================
   ENHANCED CONTACT SECTION STYLES
   ============================================ */

.enhanced-contact-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.enhanced-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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="25" cy="25" r="0.5" fill="%234a7c59" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%234a7c59" opacity="0.1"/><circle cx="50" cy="50" r="0.3" fill="%232c5530" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-main-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-subtitle-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4a7c59;
    font-weight: 600;
    font-style: italic;
}

.contact-subtitle-accent i {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Dynamic Contact Grid */
.dynamic-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(44, 85, 48, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(44, 85, 48, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #4a7c59, #6b9b47);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(44, 85, 48, 0.2);
}

.contact-card.whatsapp:hover {
    box-shadow: 0 25px 70px rgba(37, 211, 102, 0.2);
}

/* Contact Card Header */
.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    position: relative;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    font-size: 1.8rem;
}

.contact-icon-wrapper.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon-wrapper.email {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    border: 2px solid #4a7c59;
    animation: pulse 2s infinite;
}

.whatsapp-pulse {
    border-color: #25d366;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Contact Badges */
.contact-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-badge.urgent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.contact-badge.popular {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.contact-badge.professional {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
}

/* Contact Card Content */
.contact-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-action {
    margin-bottom: 20px;
}

.dynamic-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.dynamic-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #4a7c59;
    font-weight: 500;
}

/* Location Showcase */
.location-showcase {
    margin-bottom: 50px;
}

.location-showcase-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
}

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

.dynamic-location-card {
    height: 300px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dynamic-location-card:hover {
    transform: scale(1.02);
}

.location-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.dynamic-location-card.coorg .location-bg-image {
    background-image: linear-gradient(135deg, rgba(44, 85, 48, 0.8), rgba(74, 124, 89, 0.6)), 
                      url('https://images.unsplash.com/photo-1563408312-98cce93c43ec?w=800');
}

.dynamic-location-card.mysore .location-bg-image {
    background-image: linear-gradient(135deg, rgba(180, 142, 42, 0.8), rgba(218, 165, 32, 0.6)), 
                      url('https://images.unsplash.com/photo-1598618443855-232ee0d7c0a6?w=800');
}

.dynamic-location-card:hover .location-bg-image {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.location-content h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.location-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.location-highlights {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.explore-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.dynamic-location-card:hover .explore-btn {
    transform: translateX(10px);
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(44, 85, 48, 0.1);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enhanced-contact-section {
        padding: 60px 0;
    }
    
    .contact-main-title {
        font-size: 2.2rem;
    }
    
    .dynamic-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dynamic-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .contact-features {
        justify-content: center;
    }
    
    .location-showcase-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation on Scroll */
.contact-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.search-experience-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #4a7c59, #6b9b47, #4a7c59, #2c5530);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Search Header */
.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 10px;
    font-weight: 700;
}

.search-subtitle {
    color: #666;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Dynamic Search Form */
.dynamic-search-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Search Steps */
.search-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(44, 85, 48, 0.02);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: translateY(10px);
}

.search-step.active {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(44, 85, 48, 0.15);
    background: rgba(44, 85, 48, 0.05);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 18px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
}

.search-step.active .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(44, 85, 48, 0.4);
}

.step-content {
    flex: 1;
}

.step-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

/* Location Selection */
.location-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
    transition: left 0.5s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.15);
    border-color: #4a7c59;
}

.location-card.selected {
    border-color: #2c5530;
    background: rgba(44, 85, 48, 0.05);
    transform: scale(1.02);
}

.location-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 12px;
    color: white;
    font-size: 1.3rem;
}

.location-info h4 {
    color: #2c5530;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.location-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Date Range Container */
.date-range-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.date-range-container:focus-within {
    border-color: #4a7c59;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.1);
}

.date-input-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.date-field {
    flex: 1;
    position: relative;
}

.date-field label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.dynamic-date-picker {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: #f8f9fa;
    transition: all 0.3s ease;
    color: #2c5530;
}

.dynamic-date-picker:focus {
    outline: none;
    border-color: #4a7c59;
    background: white;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.1);
}

.field-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a7c59;
    font-size: 1.1rem;
    margin-top: 12px;
}

.date-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4a7c59;
    font-weight: 600;
    margin-top: 20px;
}

.date-connector i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.connector-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stay-duration {
    text-align: center;
    padding: 12px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.duration-text {
    color: #2c5530;
    font-weight: 500;
    font-style: italic;
}

/* Guest Selection */
.guest-selection-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e9ecef;
}

.guest-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.guest-category:last-child {
    border-bottom: none;
}

.guest-info h4 {
    color: #2c5530;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.guest-info span {
    color: #666;
    font-size: 0.9rem;
}

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

.counter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.counter-btn:hover {
    border-color: #4a7c59;
    background: #4a7c59;
    color: white;
    transform: scale(1.1);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.counter-display {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5530;
    min-width: 30px;
    text-align: center;
}

.guest-summary {
    margin-top: 15px;
    text-align: center;
    padding: 12px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 10px;
    color: #2c5530;
    font-weight: 500;
    font-style: italic;
}

/* Search Action */
.search-action {
    text-align: center;
    margin-top: 20px;
}

.dream-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 85, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.dream-search-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.4);
}

.btn-loading {
    display: none;
}

.dream-search-btn.loading .btn-text {
    display: none;
}

.dream-search-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-promise {
    margin-top: 15px;
    color: #666;
    font-style: italic;
    opacity: 0.8;
}

/* Quick Suggestions */
.quick-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.suggestions-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    border-color: #4a7c59;
    background: rgba(44, 85, 48, 0.05);
    color: #2c5530;
    transform: translateY(-2px);
}

.suggestion-tag i {
    color: #4a7c59;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-element.coffee {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.mountain {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.palace {
    bottom: 40%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element.heart {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

/* Responsive Design for Dynamic Search */
@media (max-width: 768px) {
    .search-experience-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .search-title {
        font-size: 1.8rem;
    }
    
    .location-options {
        grid-template-columns: 1fr;
    }
    
    .date-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .date-connector {
        transform: rotate(90deg);
    }
    
    .quick-suggestions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .search-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        align-self: center;
    }
}