/* General responsive improvements */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    button, input, select, textarea, .fa {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-clear {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/truckv.mp4);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
span{
    color: #f44336;
}

nav{
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 105px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: .5s;    
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 20px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
}


@media(max-width: 700px)
{
   .nav-links ul li
    {
        display: block;
    }
    .nav-links
    {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer; 
    }
    .text-box h1{
        font-size: 20px;
    }
}

/*---------- course --------*/

.product{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 30px;
    font-weight: 500;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;  
}
  
.product-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.product-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width:700px){
    .row{
        flex-direction: column;
    }
} 

/*---------------- global ----------------*/

.global{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.global-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.global-col img{
    width: 100%;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: .5s;
}
.layer:hover{
    background: rgba(226, 0, 0, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: .5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*-------------- Facilities ----------------*/

.truck{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.truck-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.truck-col img{
    width: 100%;
    border-radius: 10px;
}
.truck-col p{
    padding: 0;
}
.truck-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/*---------------- testimonials ------------------*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #f44336;
}

@media(max-width:700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*-------- Call To Action ----------*/


.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px; 
    padding: 0; 
}

@media(max-width:700px){
    .cta h1{
        font-size: 24px;
    }
}

/*--------------Footer---------------*/

.footer{
    height: 50%;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #f44336;
}


/*--------------- About Us Page --------------*/


.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/about.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 70px;
    color: white;
    padding: 2px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col h1{
    padding-top: 0;
    text-align: center;
}
.about-col p{
    padding: 15px 0 25px;
}

.hero-btn.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.hero-btn.red-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    color: #fff;
}
.hero-btn.red-btn::after{
    background: #f44336;
}
.hero-btn.red-btn::before{
    background: #f44336;
}
.content-image{
    flex-basis: 50%;
}
.about-col img{
    width: 100%;
}





#services{
  color: white;
  background-color: white;
  padding: 30px;
}
.sub-title{
    align-items: center;
}
.services-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  grid-gap: 40px;
  margin-top: 50px;
}
.services-list div{
  background: green;
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;

}
.services-list div i{
  font-size: 50px;
  margin-bottom: 30px;
}
.services-list div h2{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.services-list div a{
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}
.services-list div p{
    color: white;
}
.services-list div:hover{
  background: #ff004f;
  transform: translateY(-10px);
}

/*---------- Blog Page -------------*/

.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 65%;
}
.blog-right{
    flex-basis: 32%;
}
.blog-left img{
    width: 100%;
}
.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: #999;
    padding: 0;
}

.blog-right h3{
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
}


@media (max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
} 


/*------- Contact Us Page ------------*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
    
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
    
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}

/*------- Book Now Page ------------*/

.book-hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.book-hero nav {
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.book-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5%;
    min-height: 0;
    overflow: auto;
    height: calc(100vh - 80px);
}

.book-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 100%;
}

.book-info {
    flex: 1;
    color: white;
}

.quote-text {
    font-size: 16px;
    margin-bottom: 12px;
}

.book-info h1 {
    font-size: 3.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.1;
}

.book-info p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

/* Ensure inputs don't get too wide */
.form-group input,
.form-group select {
    max-width: 100%;
    min-height: 50px;
}

/* Style select dropdown */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 12px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Improve form container max-width */
.booking-form-container {
    max-width: 550px;
}
@media (hover: none) and (pointer: coarse) {
    .service-item:hover {
        transform: none;
    }
    
    .service-item:hover i {
        transform: none;
        color: white;
    }
    
    .service-item:hover h3 {
        color: white;
    }
    
    .service-item i {
        min-height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.service-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-item i {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-item:hover i {
    color: #f44336;
    transform: scale(1.1);
}

.service-item h3 {
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: #f44336;
}

.booking-form-container {
    flex: 0 0 520px;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow: visible;
    margin: 0 auto;
}

.booking-form {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    width: 100%;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.booking-form h2 {
    color: #333;
    margin-bottom: 35px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 50px 16px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    background: #f9f9f9;
}

.form-group input[type="date"] {
    color: #555;
    position: relative;
    padding-right: 16px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    color: #f44336;
    font-size: 18px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #f44336;
    background: white;
}

.form-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #f44336;
    cursor: pointer;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.form-clear:hover {
    color: #d32f2f;
    transform: translateY(-50%) scale(1.1);
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.book-now-btn {
    width: 100%;
    background: #f44336;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.book-now-btn:hover {
    background: #d32f2f;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .book-container {
        padding: 8px 4%;
        height: calc(100vh - 70px);
    }
    
    .book-content {
        gap: 25px;
    }
    
    .booking-form-container {
        flex: 0 0 480px;
    }
    
    .book-info h1 {
        font-size: 3.2rem;
    }
    
    .book-info p {
        font-size: 15px;
    }
    
    .service-item i {
        font-size: 36px;
    }
    
    .service-item h3 {
        font-size: 15px;
    }
    
    .booking-form {
        padding: 35px;
    }
    
    .form-group input,
    .form-group select {
        padding: 15px 40px 15px 15px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .book-hero {
        background-attachment: scroll;
        overflow-y: auto;
    }
    
    .book-container {
        padding: 5px 4%;
        height: calc(100vh - 60px);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .book-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        max-height: none;
        width: 100%;
    }
    
    .booking-form-container {
        flex: none;
        width: 100%;
        max-width: 600px;
        max-height: none;
        overflow: visible;
    }
    
    .book-info {
        text-align: center;
        margin-bottom: 0;
        flex-shrink: 0;
        width: 100%;
    }
    
    .book-info h1 {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    
    .book-info p {
        font-size: 14px;
        margin-bottom: 15px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
        margin: 10px auto 0;
        gap: 15px;
    }
    
    .service-item {
        text-align: center;
    }
    
    .service-item i {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .service-item h3 {
        font-size: 14px;
    }
    
    .booking-form {
        padding: 25px;
        max-height: none;
        overflow: visible;
    }
    
    .booking-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 40px 14px 14px;
        font-size: 14px;
    }
    
    .form-clear {
        right: 15px;
        font-size: 16px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .book-hero {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        background-attachment: scroll;
    }
    
    .book-container {
        padding: 5px 3%;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        min-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .book-content {
        gap: 15px;
        height: auto;
    }
    
    .booking-form-container {
        max-width: 100%;
        width: 100%;
    }
    
    .book-info h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .book-info p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 12px;
    }
    
    .service-item {
        text-align: center;
    }
    
    .service-item i {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .service-item h3 {
        font-size: 13px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .booking-form {
        padding: 25px 20px;
        max-height: none;
        overflow: visible;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .booking-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 40px 14px 14px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .form-clear {
        right: 15px;
        font-size: 14px;
        width: 18px;
        height: 18px;
    }
    
    .book-now-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    .booking-form-container {
        max-height: none;
        max-width: 100%;
        overflow: visible;
    }
    
    /* Navigation adjustments for mobile */
    .book-hero nav {
        padding: 2% 4%;
    }
    
    .nav-links ul li a {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .book-hero {
        background-attachment: scroll;
        overflow-y: auto;
    }
    
    .book-container {
        padding: 5px 2%;
        overflow-y: auto;
    }
    
    .booking-form-container {
        max-width: 100%;
        max-height: none;
        overflow: visible;
    }
    
    .booking-form {
        padding: 15px 10px;
        margin: 0;
        max-height: none;
        overflow: visible;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .service-item {
        text-align: center;
    }
    
    .service-item i {
        font-size: 24px;
        margin-bottom: 5px;
        display: block;
    }
    
    .service-item h3 {
        font-size: 11px;
        margin: 0;
    }
    
    .book-info h1 {
        font-size: 1.8rem;
    }
    
    .book-info p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .book-hero {
        background-attachment: scroll;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .book-container {
        padding: 5px 2%;
        overflow-y: auto;
        height: auto;
        min-height: calc(100vh - 60px);
    }
    
    .book-info h1 {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .book-info p {
        font-size: 10px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .service-item {
        text-align: center;
    }
    
    .service-item i {
        font-size: 20px;
        margin-bottom: 3px;
        display: block;
    }
    
    .service-item h3 {
        font-size: 9px;
        margin: 0;
    }
    
    .booking-form h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .booking-form {
        padding: 15px 10px;
        margin: 0;
        border-radius: 6px;
        max-height: none;
        overflow: visible;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    .book-now-btn {
        padding: 12px;
        font-size: 13px;
        border-radius: 4px;
    }
    
    .quote-text {
        font-size: 9px;
    }
    
    .booking-form-container {
        max-height: none;
        overflow: visible;
    }
    
    /* Mobile navigation improvements */
    .book-hero nav {
        padding: 3% 3%;
        height: 60px;
    }
    
    .book-hero nav img {
        width: 70px;
    }
    
    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 999;
        transition: 0.5s;
    }
    
    .nav-links ul {
        padding: 30px;
    }
    
    .nav-links ul li {
        display: block;
        margin: 20px 0;
    }
    
    .nav-links ul li a {
        font-size: 14px;
        color: white;
    }
    
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    .nav-links .fa {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
}

@media (max-width: 360px) {
    .book-info h1 {
        font-size: 1.3rem;
    }
    
    .service-item i {
        font-size: 18px;
    }
    
    .service-item h3 {
        font-size: 10px;
    }
    
    .booking-form {
        padding: 12px 8px;
        max-height: none;
        overflow: visible;
    }
    
    .booking-form h2 {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .book-now-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    .booking-form-container {
        max-height: none;
        overflow: visible;
    }
}

/* Map section responsive */
@media (max-width: 768px) {
    .location {
        width: 95%;
        padding: 40px 0;
    }
    
    .location iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .location {
        width: 100%;
        padding: 30px 0;
    }
    
    .location iframe {
        height: 250px;
        width: 100%;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 4%;
    }
    
    .footer h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .icons .fa {
        margin: 0 10px;
        padding: 15px 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 3%;
    }
    
    .footer img {
        width: 80px;
        margin-bottom: 15px;
    }
    
    .footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .icons .fa {
        margin: 0 8px;
        padding: 12px 0;
        font-size: 14px;
    }
}

.footer-link{
    text-decoration: none;
    color: #777;
}













