/* Book Now Page Styles */

/* Hero Section */
.book-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #34B0DC;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.form-container {
    max-width: none;
    margin: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #34B0DC;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Info Container Styles */
.info-container {
    padding-left: 20px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34B0DC;
    margin-bottom: 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #34B0DC, #1e90ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.benefit i {
    color: #34B0DC;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.benefit span {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34B0DC;
    box-shadow: 0 0 0 3px rgba(52, 176, 220, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: #34B0DC;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e90ff;
}

/* Travel Showcase Section */
.travel-showcase {
    padding: 40px 0;
    background: #f8fafc;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.destination-card:nth-child(1) {
    height: 250px;
    margin-top: 0;
}

.destination-card:nth-child(2) {
    height: 180px;
    margin-top: 35px;
}

.destination-card:nth-child(3) {
    height: 250px;
    margin-top: 0;
}

.destination-card:nth-child(4) {
    height: 180px;
    margin-top: 35px;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 15px;
}

.card-content h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.travel-cta {
    text-align: center;
}

.plan-trip-btn {
    display: inline-block;
    background: #34B0DC;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.plan-trip-btn:hover {
    background: #1e90ff;
    text-decoration: none;
    color: white;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 50px 0;
    background: white;
}

.section-header {
    display: none;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    text-align: left;
}

.contact-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 18px;
    color: white;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.additional-info {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-btn {
    display: inline-block;
    background: #3b82f6;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
    margin-top: 5px;
}

.contact-btn:hover {
    background: #1d4ed8 !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-container {
        padding-left: 0;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .travel-showcase {
        padding: 40px 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .destination-card:nth-child(1) {
        height: 220px;
        margin-top: 0;
    }
    
    .destination-card:nth-child(2) {
        height: 200px;
        margin-top: 0;
    }
    
    .destination-card:nth-child(3) {
        height: 220px;
        margin-top: 0;
    }
    
    .destination-card:nth-child(4) {
        height: 200px;
        margin-top: 0;
    }
    
    .destination-card img {
        height: 100%;
    }
    
    .contact-cards-section {
        padding: 40px 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 16px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 16px;
    }
    
    .travel-showcase {
        padding: 40px 0;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-card:nth-child(1) {
        height: 250px;
        margin-top: 0;
    }
    
    .destination-card:nth-child(2) {
        height: 180px;
        margin-top: 35px;
    }
    
    .destination-card:nth-child(3) {
        height: 250px;
        margin-top: 0;
    }
    
    .destination-card:nth-child(4) {
        height: 180px;
        margin-top: 35px;
    }
    
    .destination-card img {
        height: 100%;
    }
    
    .contact-cards-section {
        padding: 40px 0;
    }
    
    .contact-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .book-hero {
        padding: 40px 0 30px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .contact-form-section {
        padding: 30px 0;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .form-header {
        margin-bottom: 20px;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .info-section h3 {
        font-size: 1.3rem;
    }
    
    .step {
        gap: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .travel-showcase {
        padding: 30px 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-cards-section {
        padding: 30px 0;
    }
    
    .contact-cards {
        gap: 12px;
    }
    
    .contact-card {
        padding: 14px;
    }
    
    .travel-showcase {
        padding: 30px 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .destination-card img {
        height: 100%;
    }
    
    .contact-cards-section {
        padding: 30px 0;
    }
    
    .contact-cards {
        gap: 12px;
    }
    
    .contact-card {
        padding: 14px;
    }
}

.travel-showcase {
    padding: 50px 0;
}

.showcase-header {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.showcase-header p {
    font-size: 1rem;
}

.destinations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    gap: 15px;
}

.featured-card {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 300px;
}

.travel-image-card {
    height: 250px;
}

.image-overlay {
    padding: 20px;
    transform: translateY(0);
}

.category {
    font-size: 0.7rem;
    padding: 4px 12px;
}

.image-overlay h3 {
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.featured-card .image-overlay h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.image-overlay p {
    font-size: 0.85rem;
}

.featured-card .image-overlay p {
    font-size: 0.95rem;
}

.card-features {
    gap: 6px;
}

.feature {
    font-size: 0.7rem;
    padding: 3px 8px;
}

.travel-showcase {
    padding: 30px 0;
}

.showcase-header h2 {
    font-size: 1.8rem;
}

.showcase-header p {
    font-size: 1rem;
}

.destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.destination-card {
    height: 180px;
}

.card-content {
    padding: 12px;
}

.card-content h3 {
    font-size: 1.1rem;
}

.plan-trip-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
} 