/**
 * front-page.css
 * Specific styles for the homepage template
 */

/* ===== HERO SECTION ===== */
body {
    margin: 0;
    padding: 0;
}

/* Hero section - Below the navbar */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 90px); /* ADJUSTED from 130px to 90px (based on new navbar height) */
    height: calc(100vh - 90px); /* ADJUSTED from 130px to 90px */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.hero::before {
    display: none;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    color: #fff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    color: #fff;
}

.btn-book {
    display: inline-block;
    background: #ffcc00;
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffcc00;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-book:hover {
    background: transparent;
    color: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.btn-book i {
    margin-right: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== QUICK BOOKING FORM ===== */
.booking-section {
    padding: 80px 0;
    background: #fff;
}

.booking-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.booking-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    border-radius: 2px;
}

.booking-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.booking-form {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255,204,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.booking-submit {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    width: 100%;
    letter-spacing: 0.5px;
}

.booking-submit i {
    font-size: 18px;
}

.booking-submit:hover {
    background: #e6b800;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255,204,0,0.3);
}

.booking-submit:active {
    transform: scale(1);
}

.booking-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-response {
    margin: 20px 0;
}

.form-response .success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    font-weight: 500;
}

.form-response .error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
    font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.container-feature {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features-left {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-right h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.service-item i {
    font-size: 1.5rem;
    color: #ffcc00;
}

.availability-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.availability-info h3 {
    font-size: 2rem;
    margin-top: 10px;
    color: #ffcc00;
}

.availability-info h3 i {
    margin-right: 10px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    padding: 80px 0;
    background: #fff;
}

.experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-left h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.experience-left h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #666;
    font-weight: 400;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.progress-item {
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    border-radius: 5px;
    transition: width 1.5s ease;
}

.experience-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.experience-right img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffcc00;
}

.service-card i {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffcc00;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #999;
    font-size: 0.9rem;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .hero {
        min-height: calc(100vh - 80px); /* ADJUSTED from 120px to 80px */
        height: calc(100vh - 80px); /* ADJUSTED from 120px to 80px */
    }
    
    .booking-section form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 74px); /* ADJUSTED from 100px to 74px (based on mobile navbar height) */
        height: calc(100vh - 74px); /* ADJUSTED from 100px to 74px */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-book {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .features-wrapper,
    .experience-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-left {
        order: 2;
    }
    
    .features-right {
        order: 1;
        text-align: center;
    }
    
    .service-icons {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-left h2 {
        font-size: 2rem;
    }
    
    .experience-left h3 {
        font-size: 1.2rem;
    }
    
    .availability-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 60px); /* ADJUSTED from 80px to 60px */
        height: calc(100vh - 60px); /* ADJUSTED from 80px to 60px */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .features-left {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 20px;
    }
}