@import"https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth
}

body {
    font-family: "Lato", sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0a2463
}

h1 {
    font-size: 50px
}

@media(max-width: 768px) {
    h1 {
        font-size: 38px
    }
}

@media(max-width: 500px) {
    h1 {
        font-size: 32px
    }
}

h2,
h3 {
    font-size: 42px
}

@media(max-width: 768px) {

    h2,
    h3 {
        font-size: 32px
    }
}

@media(max-width: 500px) {

    h2,
    h3 {
        font-size: 24px
    }
}

h4 {
    font-size: 22px
}

@media(max-width: 768px) {
    h4 {
        font-size: 20px
    }
}

p {
    font-size: 17px;
    line-height: 1.6;
    color: #333
}

@media(max-width: 768px) {
    p {
        font-size: 16px;
        line-height: 1.5
    }
}

ul li {
    list-style: none
}

img {
    width: 100%;
    height: auto
}

a {
    text-decoration: none;
    display: inline-block
}

.container {
    width: 100%;
    max-width: 1260px;
    padding: 0px 15px;
    margin: 0 auto
}

.section-padding {
    padding: 100px 0px
}

@media(max-width: 992px) {
    .section-padding {
        padding: 70px 0px
    }
}

@media(max-width: 600px) {
    .section-padding {
        padding: 40px 0px
    }
}

.primary-btn {
    border-radius: 50px;
    background-color: #05a9f4;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all .3s ease-in-out
}

.primary-btn a {
    padding: 12px 30px;
    color: #fff;
    font-family: "Lato", sans-serif;
    display: flex;
    align-items: center;
    font-weight: 900
}

.primary-btn a img {
    width: 30px
}

.primary-btn:hover {
    background-color: #0a2463
}

.primary-btn:hover a {
    color: #fff
}

@media(max-width: 500px) {
    .primary-btn {
        font-size: 16px
    }
}

.section-tagline {
    padding: 10px;
    border: 1px solid #0a2463;
    border-radius: 20px;
    color: #000;
    display: flex;
    justify-content: start;
    gap: 10px;
    font-size: 18px;
    align-items: center;
    text-transform: uppercase
}
.section-tagline h1 {

   
    font-size: 18px;
   
    text-transform: uppercase;
}

.section-tagline svg {
    fill: #000;
    width: 20px
}

@media(max-width: 500px) {
    .section-tagline {
        font-size: 16px
    }
}

header {
    position: absolute;
    top: 0;
    width: 100%
}

header .top-header {
    background-color: #07295d;
    padding: 10px 0px
}

header .top-header ul {
    display: flex;
    justify-content: space-between
}

header .top-header ul a {
    color: #fff
}

header .bottom-header {
    background-color: rgba(0, 0, 0, .2941176471);
    padding: 10px 0px
}

header .bottom-header .main-bottom-header {
    display: flex;
    align-items: center
}

header .bottom-header .main-bottom-header .logo {
    width: 20%
}

header .bottom-header .main-bottom-header .menu-icon {
    width: 60px;
    display: none;
    flex-direction: column;
    gap: 10px;
    align-items: end;
    z-index: 9
}

header .bottom-header .main-bottom-header .menu-icon span {
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: all .3s ease-in-out
}

header .bottom-header .main-bottom-header .menu-icon span:nth-child(1) {
    width: 80%
}

header .bottom-header .main-bottom-header .menu-icon span:nth-child(2) {
    width: 60%
}

@media(max-width: 768px) {
    header .bottom-header .main-bottom-header .menu-icon {
        width: 42px
    }
}

header .bottom-header .main-bottom-header .menu-active span:nth-child(2) {
    display: none
}

header .bottom-header .main-bottom-header .menu-active span:nth-child(1) {
    transform: rotate(45deg);
    width: 100%
}

header .bottom-header .main-bottom-header .menu-active span:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -10px
}

header .bottom-header .main-bottom-header .primary-menu {
    width: 60%;
    text-align: center
}

header .bottom-header .main-bottom-header .primary-menu nav a {
    padding: 10px 12px;
    text-transform: uppercase;
    color: #f5f5f5;
    letter-spacing: 2px;
    position: relative;
    text-align: center
}

header .bottom-header .main-bottom-header .primary-menu nav a::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: gray;
    transition: all .2s ease-in-out
}

header .bottom-header .main-bottom-header .primary-menu nav a:hover::before {
    width: 100%
}

header .bottom-header .main-bottom-header .primary-menu nav .active-menu::before {
    width: 100%
}

header .bottom-header .main-bottom-header .button-box {
    width: 20%;
    display: flex;
    justify-content: end
}

@media(max-width: 1100px) {
    header .bottom-header .main-bottom-header {
        justify-content: space-between
    }

    header .bottom-header .main-bottom-header .logo {
        width: 30%
    }

    header .bottom-header .main-bottom-header .menu-icon {
        display: flex
    }

    header .bottom-header .main-bottom-header .primary-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background-color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s ease-in-out
    }

    header .bottom-header .main-bottom-header .primary-menu nav {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    header .bottom-header .main-bottom-header .active-primary-menu {
        right: 0%
    }

    header .bottom-header .main-bottom-header .button-box {
        display: none
    }
}

@media(max-width: 768px) {
    header .bottom-header .main-bottom-header .logo {
        width: 50%
    }

    header .bottom-header .main-bottom-header .primary-menu {
        width: 280px
    }
}

.hero-section {
    background: linear-gradient(90deg, rgba(9, 25, 63, 0.7) 20%, rgba(7, 7, 73, 0.4) 34%, rgba(18, 99, 116, 0.3) 100%), url(../uploads/banner/hero-banner.jpg);
    padding: 370px 0px 80px;
    background-position: center;
    background-size: cover
}

.hero-section .main-hero-section {
    display: flex;
    align-items: center;
    gap: 30px
}

.hero-section .main-hero-section .hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px
}

.hero-section .main-hero-section .hero-content .section-tagline {
    border: 1px solid #f5f5f5;
    color: #fff
}

.hero-section .main-hero-section .hero-content .section-tagline svg {
    fill: #05a9f4
}

.hero-section .main-hero-section .hero-content h1 {
    color: #f5f5f5
}
.hero-section .main-hero-section .hero-content h3{
     color: #f5f5f5
}



.hero-section .main-hero-section .hero-content h3 span {
    color: #05a9f4
}

.hero-section .main-hero-section .hero-content p {
    color: #f5f5f5
}

.hero-section .main-hero-section .hero-img {
    margin-bottom: -150px;
    width: 50%
}

@media(max-width: 1100px) {
    .hero-section .main-hero-section {
        flex-direction: column;
        align-items: self-start
    }

    .hero-section .main-hero-section .hero-content {
        width: 60%
    }
}

@media(max-width: 992px) {
    .hero-section .main-hero-section .hero-content {
        width: 100%
    }

    .hero-section .main-hero-section .hero-img {
        width: 100%
    }
}

@media(max-width: 768px) {
    .hero-section .main-hero-section .hero-content p {
        display: none
    }

    .hero-section .main-hero-section .hero-img {
        margin-bottom: -60px
    }
}

@media(max-width: 1100px) {
    .hero-section {
        padding: 150px 0 0
    }
}

@media(max-width: 768px) {
    .hero-section {
        padding: 200px 0 0;
        background-position: left
    }
}

.car-collection {
    background: linear-gradient(169deg, rgba(5, 169, 244, 0.3057598039) 4%, rgba(6, 9, 68, 0.3141631653) 97%)
}

.car-collection .section-heading {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center
}

@media(max-width: 992px) {
    .car-collection .section-heading {
        width: 100%
    }
}

.car-collection .main-car-collection {
    margin-top: 50px
}

.car-collection .main-car-collection .car-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    align-items: stretch
}

.car-collection .main-car-collection .car-cards .item {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all .3s ease-in-out
}

.car-collection .main-car-collection .car-cards .item h4 {
    margin: 20px 0
}

.car-collection .main-car-collection .car-cards .item .img-box {
    display: flex;
    overflow: hidden;
    border-radius: 8px
}

.car-collection .main-car-collection .car-cards .item .item-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px 0px;
    border-top: 1px solid #ccc
}

.car-collection .main-car-collection .car-cards .item .item-bottom .car-seat {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.car-collection .main-car-collection .car-cards .item .item-bottom .car-seat img {
    width: 30px
}

.car-collection .main-car-collection .car-cards .item .item-bottom .item-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #222
}

.car-collection .main-car-collection .car-cards .item .item-bottom .item-btn a img {
    padding: 3px;
    background: #05a9f4;
    box-shadow: 0px 0px 12px #ccc
}

.car-collection .main-car-collection .car-cards .item .item-bottom img {
    width: 30px
}

.car-collection .main-car-collection .car-cards .item:hover {
    box-shadow: 1px 5px 12px rgba(36, 36, 36, .2901960784);
    transform: translateY(-5px);
    transition: all .3s ease-in-out
}

@media(max-width: 768px) {
    .car-collection .main-car-collection .car-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
    }

    .car-collection .main-car-collection .car-cards .item {
        padding: 15px
    }
}

@media(max-width: 768px) {
    .car-collection {
        margin-top: 60px
    }
}

.group-fleet {
    background: #f9f9f9
}

.group-fleet .section-heading {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px
}

@media(max-width: 992px) {
    .group-fleet .section-heading {
        width: 100%
    }
}

.group-fleet .section-heading h3 {
    font-size: 36px;
    color: #222
}

.group-fleet .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6
}

.group-fleet .fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.group-fleet .fleet-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease
}

.group-fleet .fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

.group-fleet .vehicle-image {
    height: 200px;
    overflow: hidden
}

.group-fleet .vehicle-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease
}

.group-fleet .fleet-card:hover .vehicle-image img {
    transform: scale(1.05)
}

.group-fleet .vehicle-details {
    padding: 20px
}

.group-fleet .vehicle-details h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222
}

.group-fleet .vehicle-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px
}

.group-fleet .vehicle-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px
}

.group-fleet .vehicle-features svg {
    fill: #d4af37
}

.group-fleet .vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee
}

.group-fleet .capacity {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-weight: 500
}

.group-fleet .capacity svg {
    fill: #666
}

.group-fleet .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #d4af37;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease
}

.group-fleet .book-btn:hover {
    background: #b5942a;
    transform: translateX(3px)
}

.group-fleet .book-btn svg {
    fill: #fff
}

.our-services {
    background-image: radial-gradient(at center center, #ff531b 0%, #07295d 50%)
}

.our-services .section-heading {
    display: flex;
    justify-content: space-between;
    color: #f5f5f5
}

.our-services .section-heading .left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px
}

.our-services .section-heading .left h3 {
    color: #f5f5f5
}

.our-services .section-heading .left .section-tagline {
    border: 1px solid #f5f5f5;
    color: #fff
}

.our-services .section-heading .left .section-tagline svg {
    fill: #05a9f4
}

.our-services .section-heading .right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: end;
    text-align: end
}

.our-services .section-heading .right p {
    color: #f5f5f5
}

@media(max-width: 1100px) {
    .our-services .section-heading .left {
        width: 60%
    }

    .our-services .section-heading .right {
        width: 40%
    }
}

@media(max-width: 992px) {
    .our-services .section-heading {
        flex-direction: column;
        gap: 30px
    }

    .our-services .section-heading .left {
        width: 100%
    }

    .our-services .section-heading .right {
        width: 100%;
        align-items: self-start;
        text-align: start
    }
}

.our-services .main-services {
    display: flex;
    gap: 30px;
    margin-top: 80px
}

.our-services .main-services .item {
    flex: 1;
    background-color: #0a2463;
    border: 1px solid #ccc;
    overflow: hidden;
    border-radius: 20px
}

.our-services .main-services .item .img-box {
    overflow: hidden;
    display: flex
}

.our-services .main-services .item .content-box {
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.our-services .main-services .item .content-box h4 {
    color: #f5f5f5
}

.our-services .main-services .item .content-box p {
    color: #f5f5f5;
    font-size: 16px
}

.our-services .main-services .item .content-box .primary-btn a {
    display: flex;
    justify-content: space-between
}

.our-services .main-services .item .content-box .primary-btn a img {
    padding: 3px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(112, 112, 112, .6509803922)
}

@media(max-width: 992px) {
    .our-services .main-services .item {
        flex: auto;
        width: 46%
    }
}

@media(max-width: 768px) {
    .our-services .main-services .item {
        width: 100%
    }

    .our-services .main-services .item .content-box {
        padding: 20px 10px 20px
    }
}

@media(max-width: 1100px) {
    .our-services .main-services {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px
    }
}

.about-us {
    background-image: radial-gradient(at center center, rgba(255, 84, 27, 0.3215686275) 0%, #ffffff 50%)
}

.about-us .main-about-us {
    display: flex;
    gap: 50px
}

.about-us .main-about-us .about-img {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ccc;
    width: 50%
}

.about-us .main-about-us .about-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: self-start
}

.about-us .main-about-us .about-content .primary-btn {
    margin-top: 30px
}

@media(max-width: 992px) {
    .about-us .main-about-us {
        flex-direction: column
    }

    .about-us .main-about-us .about-img {
        width: 100%
    }

    .about-us .main-about-us .about-content {
        width: 100%
    }
}

.cta .main-cta {
    background: linear-gradient(90deg, rgba(255, 84, 27, 0.337254902) 0%, rgba(7, 41, 93, 0.3137254902) 65%), url(../uploads/other/cta-banner.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding: 60px 40px
}

.cta .main-cta .cta-content {
    width: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 20px
}

.cta .main-cta .cta-content .section-tagline {
    border: 1px solid #f5f5f5;
    color: #fff
}

.cta .main-cta .cta-content .section-tagline svg {
    fill: #05a9f4
}

.cta .main-cta .cta-content h3 {
    color: #fff;
    font-size: 50px;
    font-weight: 800
}

.cta .main-cta .cta-content p {
    color: #fff
}

@media(max-width: 992px) {
    .cta .main-cta .cta-content {
        width: 100%
    }
}

@media(max-width: 768px) {
    .cta .main-cta {
        background: linear-gradient(90deg, rgba(255, 84, 27, 0.568627451) 0%, rgba(7, 41, 93, 0.6784313725) 65%), url(../uploads/other/cta-banner.jpg);
        background-position: center;
        background-size: cover;
        padding: 20px
    }

    .cta .main-cta .cta-content {
        gap: 10px
    }

    .cta .main-cta .cta-content h3 {
        font-size: 34px
    }
}

.footer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../uploads/banner/footer-background.jpg);
    background-position: bottom;
    background-size: cover;
    color: #fff;
    padding: 40px 0
}

.footer-section .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

.footer-section .footer-content .footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px
}

.footer-section .footer-content .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f39c12
}

.footer-section .footer-content .footer-col ul {
    list-style: none;
    padding: 0
}

.footer-section .footer-content .footer-col ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-section .footer-content .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease
}

.footer-section .footer-content .footer-col ul li a:hover {
    color: #f39c12
}

.footer-section .footer-content .footer-col ul li strong {
    color: #f39c12
}

.footer-section .footer-content .footer-col svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

.footer-section .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 12px
}

.footer-section .footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #bdc3c7
}

.footer-section .footer-bottom a {
    color: #fff
}

.footer-section .footer-bottom img {
    margin-top: 10px
}

@media(max-width: 768px) {
    .footer-section .footer-content {
        flex-direction: column;
        gap: 0px
    }

    .footer-section .footer-content .footer-col {
        min-width: 100%;
        text-align: center
    }

    .footer-section .footer-content .footer-col h4 {
        font-size: 16px
    }

    .footer-section .footer-content .footer-col ul li {
        justify-content: center
    }

    .footer-section .footer-bottom p {
        font-size: 10px
    }
}

@media(max-width: 480px) {
    .footer-section .footer-content .footer-col h4 {
        font-size: 14px
    }

    .footer-section .footer-content .footer-col ul li {
        font-size: 12px
    }

    .footer-section .footer-bottom {
        font-size: 12px
    }
}

.inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banner/inner-banner.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 0 100px
}

.inner-banner .inner-title {
    text-align: center;
    font-size: 40px;
    color: #fff
}

.services-page .services-section {
    background-color: #f9f9f9
}

.services-page .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 50%
}

.services-page .service-icon svg {
    width: 40px;
    height: 40px;
    fill: #d4af37
}

.services-page .section-header {
    text-align: center;
    margin-bottom: 50px
}

.services-page .section-title {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px
}

.services-page .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.services-page .service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease
}

.services-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.services-page .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 50%
}

.services-page .service-icon img {
    width: 40px;
    height: 40px
}

.services-page .service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222
}

.services-page .service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6
}

.services-page .service-link {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease
}

.services-page .service-link:hover {
    color: #b5942a
}

.contact-page .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto
}

.contact-page .contact-info h3,
.contact-page .contact-form h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222
}

.contact-page .contact-info p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6
}

.contact-page .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px
}

.contact-page .contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px
}

.contact-page .contact-icon svg {
    width: 28px;
    fill: #d4af37
}

.contact-page .contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222
}

.contact-page .contact-details p,
.contact-page .contact-details a {
    color: #666;
    text-decoration: none;
    transition: color .3s ease
}

.contact-page .contact-details a:hover {
    color: #d4af37
}

.contact-page .contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05)
}

.contact-page .form-group {
    margin-bottom: 20px
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color .3s ease
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
    border-color: #d4af37;
    outline: none
}

.contact-page .form-group textarea {
    resize: vertical;
    min-height: 120px
}

.contact-page .submit-btn {
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color .3s ease;
    width: 100%;
    font-weight: 600
}

.contact-page .submit-btn:hover {
    background-color: #b5942a
}

.contact-page .map-section {
    padding: 60px 0;
    background-color: #f5f5f5
}

.contact-page .map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #222
}

.contact-page .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

@media(max-width: 768px) {
    .contact-page .contact-wrapper {
        grid-template-columns: 1fr
    }

    .contact-page .contact-form {
        padding: 30px
    }
}

.spinter-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    align-items: stretch
}

.spinter-gallery .item {
    display: flex;
    overflow: hidden
}

.spinter-gallery .item img {
    transition: all .2s linear
}

.spinter-gallery .item:hover img {
    transform: scale(1.05)
}

@media(max-width: 768px) {
    .spinter-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))
    }
}

.book-now-page iframe {
    width: 100%;
    height: 630px
}

.feature-item {
    display: flex;
    margin: 10px 0;
    align-items: center;
    gap: 10px
}
.seo-none{
    display: none;
}