/* Redesigned Testimonials Section */
.testimonials-section {
    background: linear-gradient(to right, rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('images/testimonial-bg.jpg') no-repeat center center/cover;
    color: var(--light-text-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    margin-bottom: 15px;
    display: flex;
}

.testimonial-rating i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.author-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.testimonial-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-control:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Redesigned FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-left-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(46, 125, 50, 0.03);
}

.faq-item.active .faq-question {
    background: rgba(46, 125, 50, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-text-color);
    font-weight: 600;
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
}

.faq-answer p strong {
    color: var(--primary-color);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-category {
    padding: 10px 20px;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: var(--text-color);
}

.faq-category:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
}

.faq-category.active {
    background: var(--primary-color);
    color: #fff;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
    outline: none;
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.faq-more a:hover {
    color: var(--secondary-color);
}

.faq-more a i {
    transition: all 0.3s ease;
}

.faq-more a:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Redesigned Pickup Area Section */
.pickup-area-section {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9)), url('images/desktop/town-kodaikanal.webp') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.pickup-area-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pickup-area-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.pickup-area-section h2 .highlight {
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.pickup-area-section h2 .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(46, 125, 50, 0.2);
    z-index: -1;
}

.pickup-area-section .section-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color-muted);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.pickup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.pickup-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pickup-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.pickup-locations {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pickup-location-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.pickup-location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pickup-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pickup-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pickup-info {
    flex-grow: 1;
}

.pickup-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.pickup-info p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.location-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pickup-info-note {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--secondary-color);
}

.pickup-info-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.pickup-info-note p {
    font-size: 0.9rem;
    margin: 0;
}

.pickup-info-note a {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.pickup-info-note a:hover {
    color: var(--secondary-color);
}

/* Redesigned Testimonial CTA */
.testimonial-cta {
    margin-top: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
}

.cta-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.image-stack {
    position: relative;
    height: 100%;
    width: 100%;
}

.image-stack-item {
    position: absolute;
    width: 80%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.image-stack-item-top {
    top: 30px;
    left: 30px;
    z-index: 2;
    transform: rotate(-5deg);
}

.image-stack-item-bottom {
    bottom: 30px;
    right: 10px;
    z-index: 1;
    transform: rotate(5deg);
}

.image-stack-item.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.image-stack-item-top.animated {
    animation-name: floatTop;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
}

.image-stack-item-bottom.animated {
    animation-name: floatBottom;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
}

@keyframes floatTop {
    0% {
        transform: rotate(-5deg) translateY(0);
    }
    100% {
        transform: rotate(-8deg) translateY(-15px);
    }
}

@keyframes floatBottom {
    0% {
        transform: rotate(5deg) translateY(0);
    }
    100% {
        transform: rotate(8deg) translateY(15px);
    }
}

.cta-content:hover .image-stack-item-top {
    transform: rotate(-8deg) translateY(-10px);
}

.cta-content:hover .image-stack-item-bottom {
    transform: rotate(8deg) translateY(10px);
}

.cta-text {
    padding: 50px 40px;
    color: #fff;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.cta-text h3 .highlight {
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.cta-text h3 .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.cta-text p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-number i {
    font-size: 1.2rem;
    margin-top: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-note i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .pickup-content {
        grid-template-columns: 1fr;
    }
    
    .pickup-map {
        order: 2;
    }
    
    .pickup-locations {
        order: 1;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .cta-image {
        height: 300px;
    }
    
    .image-stack-item-top {
        left: 20%;
        width: 60%;
    }
    
    .image-stack-item-bottom {
        right: 20%;
        width: 60%;
    }
}

@media (max-width: 768px) {
    .pickup-area-section {
        padding: 60px 0;
    }
    
    .pickup-location-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .pickup-icon {
        margin: 0 auto 15px;
    }
    
    .cta-text {
        padding: 30px 20px;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Redesigned Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-background);
    display: flex;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    padding: 10px 10px 5px;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    width: 25%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-nav-item.active {
    color: var(--secondary-color);
}

.mobile-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.mobile-nav-item:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-nav-item.book-now {
    position: relative;
}

.mobile-nav-item.book-now::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.mobile-nav-item.book-now i {
    margin-bottom: 3px;
    font-size: 1.5rem;
}

.mobile-nav-item.book-now {
    color: var(--secondary-color);
    padding-top: 20px;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* Global Booking Form Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.booking-modal.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal-content {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.booking-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.8);
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1b5e20 100%);
    padding: 30px;
    text-align: center;
    color: #fff;
    position: relative;
}

.booking-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.booking-modal-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.booking-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.booking-modal-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

.booking-modal-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 50% 0);
}

.booking-form {
    padding: 30px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.step-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--primary-color);
    color: #fff;
}

.progress-step.active .step-text,
.progress-step.completed .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.required {
    color: #e53935;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.guest-selector {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
}

.guest-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
}

.guest-counter:last-child {
    margin-bottom: 0;
}

.guest-type {
    font-weight: 500;
}

.counter {
    display: flex;
    align-items: center;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    padding: 0 5px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(46, 125, 50, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.consent-label {
    font-size: 0.9rem;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid var(--primary-color);
}

.consent-label a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.secure-note {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secure-note i {
    color: var(--primary-color);
}

.booking-help {
    font-size: 0.9rem;
}

.booking-help a {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-success {
    padding: 50px 30px;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.booking-success p {
    max-width: 500px;
    margin: 0 auto 20px;
    color: #555;
}

.success-details {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto 30px;
}

.success-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.success-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.success-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(46, 125, 50, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-detail div {
    text-align: left;
}

.success-detail strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.success-detail span {
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .booking-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .booking-modal-header {
        padding: 20px;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .progress-step .step-text {
        display: none;
    }
}

/* Create a utility class for booking links throughout the site */
.book-now-link {
    cursor: pointer;
}
