/* ==========================================
   MOBILE.CSS - PART 1
   Monika Tours & Travels
========================================== */

@media only screen and (max-width:768px){

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

section{
    padding:40px 15px;
}

/* ==========================================
   TOP BAR
========================================== */

.top-bar{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:8px 12px;

    gap:8px;

    text-align:center;

}

.contacts{

    display:flex;
    flex-direction:column;

    gap:6px;

    font-size:13px;

}

.contact-btn{

    display:none;

}

/* ==========================================
   MAIN HEADER
========================================== */

.main-header{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:15px;

}

/* Logo */

.logo-section{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.logo-section img{

    width:75px;

    margin-bottom:10px;

}

/* Company Name */

.title-section{

    text-align:center;

}

.title-section h1{

    font-size:26px;

    line-height:1.2;

    margin-bottom:5px;

}

.title-section p{

    font-size:12px;

    letter-spacing:2px;

}

/* Hide Feature Boxes */

.feature-section{

    display:none;

}

/* ==========================================
   MENU
========================================== */

.menu{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:8px;

    padding:10px;

}

.menu a{

    padding:10px 12px;

    font-size:13px;

    border-radius:5px;

}

.Book_btn{

    background:#ff6b00;

    color:#fff !important;

}

/* ==========================================
   HERO SECTION
========================================== */

.hero{

    height:300px;

    background-position:center;

    background-size:cover;

    position:relative;

    overflow:hidden;

}

/* Hide Vehicle */

.vehicle{

    display:none !important;

}

.hero-content{

    width:92%;

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

}

.hero-content h1{

    font-size:28px;

    line-height:1.2;

}

.script{

    font-size:32px;

    line-height:1.2;

    display:block;

    margin:5px 0;

}

.hero-content p{

    font-size:14px;

    margin-top:10px;

}

.btn{

    display:inline-block;

    padding:10px 20px;

    margin-top:15px;

    font-size:14px;

}

}
/* ==========================================
   MOBILE.CSS - PART 2
   TOUR PACKAGES + SERVICES
========================================== */

@media only screen and (max-width:768px){

/* ==========================================
   TOUR PACKAGES
========================================== */

.packages{
    padding:35px 15px;
}

.packages h2{
    font-size:28px;
    text-align:center;
    margin-bottom:20px;
    color:#003b8e;
}

/* Desktop Packages Hidden */
.desktop-packages{
    display:none !important;
}

/* Mobile Packages Visible */
.mobile-packages{
    display:block !important;
}

.packageSwiper{
    width:100%;
    padding-bottom:35px;
}

.packageSwiper .swiper-slide{
    display:flex;
    justify-content:center;
}

.package-card{

    width:92%;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.package-card img{

    width:100%;

    height:200px;

    object-fit:cover;

}

.package-card h3{

    font-size:20px;

    margin:15px 10px 8px;

    color:#003b8e;

    text-align:center;

}

.package-card p{

    font-size:14px;

    line-height:1.6;

    padding:0 15px 20px;

    text-align:center;

}

/* Swiper Pagination */

.swiper-pagination{

    bottom:0 !important;

}

.swiper-pagination-bullet{

    background:#003b8e;

}

.swiper-pagination-bullet-active{

    background:#ff6b00;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    padding:40px 15px;

}

.services h2{

    font-size:28px;

    text-align:center;

    margin-bottom:25px;

}

/* 2 Cards Per Row */

.service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.card{

    width:100%;

    margin:0;

    padding:15px;

    border-radius:12px;

    text-align:center;

}

.card img{

    width:55px;

    margin:auto;

    margin-bottom:10px;

}

.card h3{

    font-size:16px;

    margin-bottom:8px;

}

.card p{

    font-size:13px;

    line-height:1.5;

}

/* Button */

.card .btn{

    width:100%;

    margin-top:10px;

    padding:10px;

    font-size:13px;

}

}
/* ==========================================
   MOBILE.CSS - PART 3
   BOOK YOUR TRIP + VEHICLES + STATS
========================================== */

@media only screen and (max-width:768px){

/* ==========================================
   BOOK YOUR TRIP
========================================== */

.book-trip-section{
    padding:35px 15px !important;
    margin:0 !important;
}

.trip-heading{
    margin-bottom:25px !important;
}

.trip-heading h3{
    font-size:30px !important;
    line-height:1.3;
}

.trip-heading h3 span{
    font-size:24px !important;
}

.trip-heading p{
    font-size:14px;
}

/* Layout */

.trip-wrapper{
    display:grid !important;
    grid-template-columns:60% 40%;
    gap:12px;
    align-items:start;
}

/* Left */

.trip-left{
    width:100% !important;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}

/* Card */

.trip-card{
    padding:15px !important;
    border-radius:12px;
}

.trip-card h3{
    font-size:17px !important;
    margin-top:15px;
}

.trip-card p{
    font-size:12px !important;
    line-height:1.5;
}

.trip-card i{
    font-size:24px;
}

/* Step Number */

.step-number{
    width:34px;
    height:34px;
    font-size:13px;
}

/* Right */

.trip-right{
    width:100% !important;
    display:flex;
    justify-content:center;
    align-items:center;
}

.trip-right img{
    width:150px !important;
    max-width:100%;
    height:auto;
}

/* ==========================================
   FEATURE BAR
========================================== */

.trip-feature-bar{
    margin-top:25px !important;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.feature-box{
    padding:15px;
    text-align:center;
}

.feature-box i{
    font-size:22px;
    margin-bottom:10px;
}

.feature-box h4{
    font-size:15px;
}

.feature-box p{
    font-size:12px;
}

/* ==========================================
   VEHICLE SECTION
========================================== */

.vehicle-card{

    display:block;

    padding:15px;

    margin:20px 0;

}

.vehicle-image{

    width:100%;

    text-align:center;

}

.vehicle-image img{

    width:85%;

    max-width:220px;

    margin:auto;

}

.vehicle-details{

    width:100%;

    margin-top:20px;

}

.vehicle-details h2{

    font-size:24px;

    text-align:center;

}

.details-grid{

    grid-template-columns:1fr;

    gap:12px;

}

.details-grid div{

    font-size:14px;

}

/* Button */

.book-btn{

    width:100%;

    text-align:center;

}

/* ==========================================
   STATISTICS
========================================== */

.stats-section{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    padding:20px;

}

.stats-box{

    flex-direction:column;

    text-align:center;

}

.stats-icon{

    width:65px;

    height:65px;

    font-size:26px;

}

.stats-content h2{

    font-size:28px;

}

.stats-content p{

    font-size:14px;

}

}
/* ==========================================
   MOBILE.CSS - PART 4
   CONTACT + FOOTER + FINAL FIX
========================================== */

@media only screen and (max-width:768px){

/* ==========================================
   CONTACT
========================================== */

.contact-section{
    padding:40px 15px !important;
}

.contact-section h2{
    font-size:28px;
    text-align:center;
}

.contact-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-info,
.contact-form{
    width:100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:12px;
    font-size:14px;
    margin-bottom:12px;
}

.contact-form button{
    width:100%;
    padding:12px;
    font-size:15px;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    padding:35px 15px;
    text-align:center;
}

.footer-logo img{
    width:80px;
    margin:auto;
}

.footer h2{
    font-size:24px;
    margin:10px 0;
}

.footer p{
    font-size:13px;
    line-height:1.6;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:20px;
}

.footer-links a{
    display:block;
    padding:6px 0;
    font-size:14px;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#003b8e;
    color:#fff;
    font-size:18px;
}

/* ==========================================
   WHATSAPP BUTTON
========================================== */

.whatsapp{
    width:55px;
    height:55px;
    right:15px;
    bottom:20px;
}

.whatsapp img{
    width:100%;
}

/* ==========================================
   POPUP
========================================== */

.popup-content{
    width:95%;
    padding:20px;
}

.popup-content h2{
    font-size:24px;
}

.popup-content input,
.popup-content textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;
}

.popup-content button{
    width:100%;
    padding:12px;
}

/* ==========================================
   SPACING
========================================== */

section{
    padding-top:40px;
    padding-bottom:40px;
}

h2{
    margin-bottom:20px;
}

}

/* ==========================================
   SMALL MOBILE (320px - 430px)
========================================== */

@media only screen and (max-width:430px){

.hero-content h1{
    font-size:24px !important;
}

.script{
    font-size:28px !important;
}

.hero-content p{
    font-size:13px !important;
}

.menu a{
    font-size:12px;
    padding:8px 10px;
}

.package-card h3{
    font-size:18px;
}

.package-card p{
    font-size:13px;
}

.trip-heading h3{
    font-size:26px !important;
}

.trip-card h3{
    font-size:15px !important;
}

.trip-card p{
    font-size:11px !important;
}

.stats-content h2{
    font-size:24px;
}

.footer h2{
    font-size:22px;
}

}

/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media only screen and (max-width:360px){

.hero{
    height:260px;
}

.hero-content{
    width:95%;
}

.btn{
    padding:8px 18px;
    font-size:13px;
}

.trip-wrapper{
    grid-template-columns:1fr;
}

.trip-right{
    display:none;
}

.trip-feature-bar{
    grid-template-columns:1fr;
}

.stats-section{
    grid-template-columns:1fr;
}

.service-grid{
    grid-template-columns:1fr;
}
/* ==========================================
           MOBILE FOOTER
========================================== */

@media only screen and (max-width:768px){

.site-footer{
    margin-top:25px;
    background:#0B4EA2;
    color:#fff;
}

.footer-container{
    padding:18px 15px;
    text-align:center;
}

.footer-container h3{
    font-size:20px;
    margin-bottom:10px;
    color:#FFD54F;
}

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.social-icons a{
    width:40px;
    height:40px;
    font-size:18px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.social-icons a:hover{
    background:#FFD54F;
    color:#0B4EA2;
}

.footer-contact{
    margin-top:10px;
}

.footer-contact p{
    font-size:14px;
    line-height:1.7;
    margin:3px 0;
    word-break:break-word;
}

.footer-contact i{
    color:#FFD54F;
    margin-right:6px;
}

.footer-bottom{
    padding:10px 15px;
    border-top:1px solid rgba(255,255,255,0.25);
}

.footer-bottom p{
    font-size:12px;
    line-height:1.6;
    margin:3px 0;
}

.footer-bottom strong{
    color:#FFD54F;
}

/* Floating Buttons */

.call-btn,
.whatsapp-btn{
    width:50px;
    height:50px;
    right:12px;
}

.call-btn{
    bottom:90px;
}

.whatsapp-btn{
    bottom:25px;
}

.call-btn img,
.whatsapp-btn img{
    width:25px;
    height:25px;
}
/* ===================================
   MOBILE FOOTER
=================================== */
@media only screen and (max-width:768px){

.site-footer{
    background:linear-gradient(180deg,#0B4EA2,#1676D2);
    color:#fff;
    margin-top:20px;
}

.footer-container{
    padding:20px 15px;
    text-align:center;
}

.footer-container h3,
.footer-container h4{
    font-size:24px;
    color:#FFD54F;
    margin-bottom:15px;
}

/* Social Icons */

.social-icons{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-bottom:18px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    text-decoration:none;
}

/* Contact Details */

.footer-contact p{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin:8px 0;
    font-size:15px;
    color:#fff;
    line-height:1.5;
    text-align:center;
}

.footer-contact i{
    color:#FFD54F;
    min-width:18px;
}

/* Bottom Copyright */

.footer-bottom{
    margin-top:15px;
    border-top:1px solid rgba(255,255,255,.20);
    padding:12px 10px;
    text-align:center;
    background:rgba(0,0,0,.08);
}

.footer-bottom p{
    font-size:13px;
    margin:4px 0;
    color:#fff;
}

.footer-bottom strong{
    color:#FFD54F;
}

}

}
}
/* =====================================
   TRIP FEATURE BAR - MOBILE
===================================== */

@media only screen and (max-width:768px){

.trip-feature-bar{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:15px 10px;
}

.feature-box{
    padding:12px 8px;
    border-radius:12px;
    min-height:100px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.feature-box i{
    font-size:42px;
    color:#FFD700 !important;   /* Gold */
    display:block;
    margin-bottom:12px;
    text-align:center;
}
.feature-box h4{
    font-size:15px;
    margin-bottom:3px;
    line-height:1.2;
}

.feature-box p{
    font-size:12px;
    line-height:1.3;
    margin:0;
}

}
/* ============================
   FORCE MOBILE FOOTER STYLE
============================ */
@media only screen and (max-width:768px){

.site-footer,
.footer-container,
.footer-contact,
.footer-bottom{
    background:#0B4EA2 !important;
    color:#fff !important;
}

.footer-container{
    padding:20px 15px !important;
    text-align:center !important;
}

.footer-container h3,
.footer-container h4{
    color:#FFD54F !important;
    font-size:22px !important;
    margin-bottom:12px !important;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:12px 0;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff !important;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-contact p{
    color:#fff !important;
    font-size:14px !important;
    margin:6px 0 !important;
}

.footer-contact i{
    color:#FFD54F !important;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.25);
    padding:10px 0 !important;
}

.footer-bottom p{
    color:#fff !important;
    font-size:12px !important;
}

.footer-bottom strong{
    color:#FFD54F !important;
}

}

/* ======================================
   SERVICES PAGE - MOBILE RESPONSIVE
====================================== */

@media only screen and (max-width:768px){

/* Main Container */
.services{
    padding:20px 12px !important;
}

.services-container,
.service-container,
.services-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:15px !important;
    justify-content:center;
}

/* Main Service Cards */
.service-card,
.card{
    width:95% !important;
    max-width:320px !important;
    margin:0 auto 15px;
    padding:18px !important;
    border-radius:15px;
}

/* Card Icons */
.service-card img,
.service-card i,
.card img,
.card i{
    width:45px !important;
    height:45px !important;
    font-size:32px !important;
}

/* Heading */
.service-card h3,
.card h3{
    font-size:24px !important;
    margin:10px 0;
}

/* Description */
.service-card p,
.card p,
.service-card li,
.card li{
    font-size:14px !important;
    line-height:1.6;
}

/* Button */
.service-card a,
.service-card button,
.card a,
.card button{
    width:100%;
    padding:10px;
    font-size:14px;
    border-radius:8px;
}

/* Bottom Service Icons */
.service-icons,
.extra-services{
    display:grid !important;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.service-icons .icon-box,
.extra-services .icon-box{
    padding:15px 8px;
}

.service-icons i,
.extra-services i{
    font-size:24px;
}

.service-icons h4,
.extra-services h4{
    font-size:15px;
}

}
/* ========================================
   SERVICES PAGE MOBILE
======================================== */

@media only screen and (max-width:768px){

.service-section{
    width:100%;
    padding:35px 15px;
    overflow:hidden;
}

/* Tag */
.service-section .tag{
    font-size:12px;
    padding:6px 16px;
}

/* Main Heading */
.service-section .title{
    font-size:34px;
    line-height:1.2;
    margin:18px 0;
}

/* Description */
.service-section .subtitle{
    font-size:15px;
    line-height:1.7;
    margin-bottom:30px;
}

/* Cards Layout */
.service-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

/* Service Card */
.service-grid .card{
    width:100%;
    max-width:320px;
    padding:20px;
    border-radius:18px;
}

/* Icon */
.service-grid .icon{
    width:55px;
    height:55px;
    font-size:28px;
    margin:0 auto 12px;
}

/* Card Heading */
.service-grid h3{
    font-size:24px;
    margin-bottom:10px;
}

/* Description */
.service-grid p{
    font-size:14px;
    line-height:1.6;
}

/* List */
.service-grid ul{
    margin:15px 0;
    padding-left:18px;
}

.service-grid li{
    font-size:14px;
    margin-bottom:8px;
}

/* Button */
.service-grid .btn{
    width:100%;
    padding:12px;
    font-size:14px;
    border-radius:8px;
    text-align:center;
}

/* Small Cards */
.small-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:25px;
}

.small-card{
    padding:18px 10px;
    border-radius:12px;
    font-size:14px;
    line-height:1.5;
    text-align:center;
}

/* Emoji */
.small-card{
    font-size:15px;
}

}
/* ==========================================
   SERVICES PAGE - MOBILE ONLY
========================================== */

@media only screen and (max-width:768px){

/* Section */
.service-section{
    padding:30px 15px !important;
}

/* Tag */
.service-section .tag{
    font-size:12px !important;
    padding:6px 16px !important;
}

/* Heading */
.service-section .title{
    font-size:32px !important;
    line-height:1.3 !important;
    margin:15px 0 !important;
}

/* Subtitle */
.service-section .subtitle{
    font-size:15px !important;
    line-height:1.6 !important;
    margin-bottom:25px !important;
}

/* Main Cards */
.service-section .service-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
}

.service-section .card{
    width:100% !important;
    max-width:330px !important;
    margin:0 auto !important;
    padding:20px !important;
    border-radius:15px !important;
}

.service-section .icon{
    width:50px !important;
    height:50px !important;
    font-size:24px !important;
    margin-bottom:15px !important;
}

.service-section .card h3{
    font-size:22px !important;
    margin-bottom:10px !important;
}

.service-section .card p{
    font-size:14px !important;
    line-height:1.6 !important;
}

.service-section .card ul{
    padding-left:18px !important;
    margin:15px 0 !important;
}

.service-section .card li{
    font-size:14px !important;
    margin-bottom:6px !important;
}

/* Buttons */
.service-section .btn{
    width:100% !important;
    padding:10px !important;
    font-size:14px !important;
}

/* Bottom Cards */
.service-section .small-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:12px !important;
    margin-top:25px !important;
}

.service-section .small-card{
    padding:15px 10px !important;
    font-size:14px !important;
    border-radius:12px !important;
    text-align:center !important;
}

.service-section .small-card i{
    font-size:24px !important;
    display:block !important;
    margin-bottom:8px !important;
}

}
/* =====================================
   VEHICLE BOOKING MOBILE
===================================== */

@media only screen and (max-width:768px){

.vehicle-grid{
    display:flex;
    flex-direction:column;
    gap:20px;
    padding:10px;
}

.vehicle-card{
    display:flex !important;
    flex-direction:column !important;
    align-items:center;
    width:100%;
    padding:18px;
    border-radius:18px;
    text-align:left;
}

.vehicle-card img{
    width:230px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 15px;
}

.vehicle-card p{
    width:100%;
    font-size:15px;
    line-height:1.7;
    margin:6px 0;
}

.enquire-btn{
    width:100%;
    margin-top:15px;
    padding:12px;
    font-size:15px;
}

.vehicle-card .icon{
    display:none;
}

}
/* ==========================================
   VEHICLE BOOKING - MOBILE FIX
========================================== */

@media only screen and (max-width:768px){

.vehicle-card{
    display:block !important;
    width:100% !important;
    padding:18px !important;
    text-align:center !important;
}

.vehicle-card img{
    width:220px !important;
    max-width:100%;
    height:auto !important;
    display:block;
    margin:0 auto 15px;
    object-fit:contain;
}

.vehicle-card p{
    display:block;
    text-align:left;
    font-size:15px;
    line-height:1.8;
    margin:8px 0;
}

.enquire-btn{
    width:100%;
    margin-top:15px;
    padding:12px;
    font-size:15px;
}

.vehicle-card .icon{
    display:none;
}

}
/* ==========================================
   VEHICLE BOOKING - MOBILE ONLY
========================================== */

@media only screen and (max-width:768px){

/* Section */
.vehicles-section{
    padding:30px 15px !important;
}

.vehicles-section h5{
    font-size:14px;
    text-align:center;
}

.vehicles-section h2{
    font-size:28px;
    text-align:center;
    margin-bottom:25px;
}

/* Grid */
.vehicle-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:20px;
}

/* Card */
.vehicle-card{
    display:block !important;
    width:100% !important;
    max-width:340px !important;
    margin:0 auto !important;
    padding:18px !important;
    border-radius:15px;
    text-align:center !important;
    overflow:hidden !important;
}

/* Vehicle Image */
.vehicle-card img{
    width:100% !important;
    max-width:230px !important;
    height:auto !important;
    margin:0 auto 15px !important;
    display:block;
    object-fit:contain !important;
}

/* Details */
.vehicle-card p{
    display:block !important;
    width:100% !important;
    text-align:left !important;
    font-size:14px !important;
    line-height:1.7 !important;
    margin:8px 0 !important;
    white-space:normal !important;
    word-break:break-word !important;
}

/* Button */
.enquire-btn{
    width:100% !important;
    padding:12px !important;
    margin-top:15px !important;
    font-size:15px !important;
    border-radius:8px;
}

/* Taxi Icon */
.vehicle-card .icon{
    display:none !important;
}

}
@media (max-width:768px){

.review-banner{
    padding:45px 15px;
}

.review-banner h1{
    font-size:28px;
}

.review-banner p{
    font-size:15px;
    line-height:1.5;
}


}
/* ===== Feature Box Text Color (Mobile) ===== */

.trip-feature-bar .feature-box h4 {
    color: #ffffff !important;
}

.trip-feature-bar .feature-box p {
    color: #FFD700 !important;
    font-weight: 500;
}

.trip-feature-bar .feature-box i {
    color: #FFD700 !important;
}
.nav-menu a,
.navbar-nav .nav-link {
    color: #FFFFFF !important;
}
/* ========================= */
/* Mobile View Only */
/* ========================= */
@media only screen and (max-width: 768px) {

    /* Contact Us */
    .contact-btn {
        color: #ffffff !important;
    }

    /* Menu Links */
    .menu a {
        color: #ffffff !important;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

    /* Hover */
    .menu a:hover {
        color: #FFD700 !important;
    }
}
@media only screen and (max-width: 768px) {

    .menu a,
    nav a,
    .navbar a {
        color: #ffffff !important;
    }

}
/* Footer Social Icons - Mobile */
@media (max-width: 768px) {

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin: 15px 0;
        flex-wrap: wrap;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        text-decoration: none;
    }

    .social-icons a:hover {
        background: #25D366;
    }

}
@media (max-width: 768px){

    .review-banner{
        margin: 20px auto;
        padding: 0 10px;
    }

    .review-image{
        width: 95%;
        max-width: 350px;
        border-radius: 10px;
    }

}
/* ===========================
   CUSTOMER REVIEW MOBILE
=========================== */

@media only screen and (max-width:768px){

    .review-banner{
        padding:15px;
        text-align:center;
    }

    .review-image{
        width:100%;
        max-width:330px;
        height:auto;
        display:block;
        margin:0 auto;
    }

    .review-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        padding:0 15px;
    }

    .review-buttons a{
        width:100%;
        max-width:300px;
        text-align:center;
    }

    .trust-section{
        padding:30px 15px;
    }

    .trust-section h2{
        font-size:30px;
        line-height:1.3;
        text-align:center;
        margin-bottom:20px;
    }

    .trust-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:15px;
    }

    .trust-card{
        width:100%;
        padding:20px;
        box-sizing:border-box;
    }

    html,
    body{
        overflow-x:hidden;
    }

}
@media (max-width:768px){

.gallery-section{
    padding:40px 15px;
}

.gallery-section h2{
    font-size:30px;
}

.gallery-text{
    font-size:15px;
    line-height:24px;
}

.gallery{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.gallery-item{
    border-radius:15px;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.close{
    font-size:35px;
    right:20px;
}

/* Rotated images */
.rotate-img{
    transform:rotate(90deg);
    width:100%;
    height:250px !important;
    object-fit:contain;
    background:#fff;
}

}
@media(max-width:768px){

.popup-content{

    width:92%;
    padding:25px;

}

.popup-content form{

    grid-template-columns:1fr;

}

.popup-content textarea,
.popup-content button{

    grid-column:auto;

}

.popup-content h2{

    font-size:24px;

}

}
/* Mobile Contact Button */
@media (max-width:768px){

    .contacts{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:8px;
    }

    .contact-btn{
        display:inline-block !important;
        padding:10px 20px;
        background:#ff6600;
        color:#fff !important;
        text-decoration:none;
        border-radius:6px;
        font-weight:bold;
        margin-top:8px;
    }

}