@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root{
    --primary-color: #89a7b6;
    --secondary-color: #869ca7;
    --background-color: #2d333a;
    --text-color: white;
    --service-card-1-color: #fef7db
}

body{
    background-color: white;
}

header {
    background: #ffc326;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img{
    width: auto;
    height: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    color: #4b1e1e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffc326;
}

.book-btn{
    background: #ffc326;
    color: #4b1e1e;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-btn a{
    font-size: small;
}

.book-btn:hover {
    background: #ffc326;
    transform: scale(1.05);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #4b1e1e;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

#bookNow-mobile{
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--background-color);
    background-size: cover;
    color: white;
    height: 100vh;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 0;
}

.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Services Section */
.services, .why-choose-us{
    /* background: rgb(134 156 167 / 48%); */
    height: fit-content;
    color: white;
    padding: 2rem 2rem;
    text-align: center;
}

.services h2 {
    color: var(--background-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.service-card-1 { 
    width: 100%;
    color: black;
    background: var(--service-card-1-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card-1:hover , .service-card-2:hover , .service-card-3:hover , .service-card-4:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.service-card-2 { 
    width: 100%;
    color: black;
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card-3 { 
    width: 100%;
    color: black;
    background: #ebd2a29f;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card-4 { 
    width: 100%;
    color: black;
    background: rgba(196, 241, 196, 0.671);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card-1 i, .service-card-2 i, .service-card-3 i, .service-card-4 i {
    color: #4b1e1e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card-1 h3, .service-card-2 h3, .service-card-3 h3, .service-card-4 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-1 p, .service-card-2 p, .service-card-3 p, .service-card-4 p {
    font-size: 1rem;
}

.services h2{
    color: #4b1e1e;
    font-size: 2rem;
    margin-top: 2rem;
}

.service-content-title{
    width: 100%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-content-title h3{
    font-size: 2rem;
    color: #4b1e1e;
}

.container {
    width: 100%;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-header {
    background: #ffc326;
    color: #4b1e1e;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-header .subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 1rem;
    align-items: center;
}

.service-content-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-content-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-content-image:hover img {
    transform: scale(1.1);
}

.service-content-text {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-content-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.services-list {
    background: #ffc326;
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.services-list strong {
    color: #4b1e1e;
    display: block;
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-item-home {
    color: #4b1e1e;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item-home:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item-home::before {
    content: '🔧';
    font-size: 1.5em;
    display: block;
    margin-bottom: 8px;
}

.service-item-home:nth-child(1)::before { content: '🔋'; }
.service-item-home:nth-child(2)::before { content: '🛞'; }
.service-item-home:nth-child(3)::before { content: '🔩'; }
.service-item-home:nth-child(4)::before { content: '⛽'; }
.service-item-home:nth-child(5)::before { content: '🗝️'; }

.additional-services {
    background: #f8f9fa;
    padding: 1rem;
    position: relative;
}

.additional-services h2 {
    color: #4b1e1e;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.showcase-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ffc326;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #4b1e1e;
}

.showcase-card h3 {
    color: #4b1e1e;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-card h3::before {
    content: '🚛';
    font-size: 1.5rem;
}

.showcase-card:nth-child(2) h3::before { content: '🔧'; }
.showcase-card:nth-child(3) h3::before { content: '✨'; }

.showcase-card p{
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-section {
    background: #4b1e1e;
    color: white;
    padding: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #ffc326;
    color: #4b1e1e;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    animation: none;
}

/* why choose us section */
.why-choose-us h2{
    text-align: center;
    font-size: 2rem;
    margin: 1rem 0;
    color: #4b1e1e;
}

.why-choose-us-content {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.feature-card {
    height: 100%;
    background: #ffc326;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.speed .feature-icon {
    background: linear-gradient(135deg, #78afaa, #a08eff);
    color: white;
}

.affordable .feature-icon {
    background: linear-gradient(135deg, #78afaa, #a08eff);
    color: white;
}

.experienced .feature-icon {
    background: linear-gradient(135deg, #78afaa, #a08eff);
    color: white;
}

.support .feature-icon {
    background: linear-gradient(135deg, #78afaa, #a08eff);
    color: #2d3436;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4b1e1e;
    margin: 0;
    flex: 1;
}

.feature-description {
    color: #4b1e1e;
    line-height: 1.6;
    font-size: 1rem;
}

/* testimonials */
.testimonials{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #4b1e1e;
}

.testimonials h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.testimonials p{
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    padding: 1rem;
    text-align: center;
}

.stats-section {
    width: 70%;
    align-self: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #667eea;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.slide-counter {
    color: white;
    font-size: 1rem;
    opacity: 0.8;
    min-width: 80px;
    text-align: center;
}

.testimonials-slider {
    position: relative;
    padding: 2rem 0 4rem;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.testimonial-card {
    width: 100%;
    max-width: 1200px; /* prevents it from being too wide on big screens */
    margin: 0 auto; /* centers it */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stars {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.2rem;
}

.star {
    font-size: 1.2rem;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #caa645 0%, #8a6b1d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b1e1e;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.customer-details h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.2rem;
}

.customer-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* faq and booking */
.faq-booking{
    display: flex;
    flex-direction: row;
}

.faq, .booking-main{
    width: 50%;
    padding: 1rem;
    /* background: rgb(134 156 167 / 48%); */
}

.faq-container, .booking-container {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideIn 0.8s ease-out;
}

.trust-signals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.trust-badge {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.badge-text small {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: normal;
}

.service-icons {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-icon {
    text-align: center;
    padding: 1rem;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    flex: 1;
    min-width: 120px;
}

.service-icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-header, .booking-header {
    background: #ffc326;
    color: white;
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-header::before, .booking-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: move 20s linear infinite;
}

@keyframes move {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.faq-header h1, .booking-header h1 {
    color: #4b1e1e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.faq-header p, .booking-header p{
    color: #4b1e1e;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.faq-content {
    padding: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-question.active {
    background: #ffc326;
    color: #4b1e1e;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    text-align: justify;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* footer */
.footer {
    background: #ffc326;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    max-width: fit-content;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4b1e1e;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 1px;
}

.footer-section p, .footer-section li {
    line-height: 1.6;
    text-align: justify;
    font-size: 0.8rem;
    color: #4b1e1e;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li{
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li:hover {
    color: #ffc326;
    padding-left: 10px;
    transform: translateX(5px);
}

.footer-section ul li a{
    text-decoration: none;
    color: #4b1e1e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4b1e1e;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-links a.facebook:hover { background: #3b5998; }
.social-links a.twitter:hover { background: #1da1f2; }
.social-links a.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a.linkedin:hover { background: #0077b5; }

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #4b1e1e;
    width: 16px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #4b1e1e;
    font-size: 0.9rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-elements::after {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: -4s;
}

.phone-button, .whatsapp-button{
    height: 50px;
    width: 50px;
    display: grid;
    place-items: center;
    border: none;
    outline: none;
    color: #fff;
    background: rgb(7, 136, 7);
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.whatsapp-button{
    height: 50px;
    width: 50px;
    display: grid;
    place-items: center;
    border: none;
    outline: none;
    color: #fff;
    background: rgb(7, 136, 7);
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.phone-button a, .whatsapp-button a{
    text-decoration: none;
}

.phone-button a{
    font-size: 1.3rem;
}

.whatsapp-button a{
    font-size: 1.8rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    /* For smooth fade in/out */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    display: flex; /* Only used here, optional */
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    color: #4b1e1e;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form{
    padding: 1rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffc326;
    color: #4b1e1e;
}

.btn-primary:hover {
    background: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.bmobile{
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header{
        padding: 0.6rem 0;
    }

    .mobile-menu {
        display: block;
    }

    .logo img{
        height: 2.5rem;
        padding-left: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffc326;
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero{
        height: 60vh;
    }

    .hero h1 {
        margin-top: 4rem;
        font-size: 1.3rem;
    }

    .hero h2 {
        font-size: 0.8rem;
    }

    .hero p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .hero-content{
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    nav {
        padding: 0 1rem;
    }

    #bookNow-mobile{
        font-size: 1rem;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    #bookNow-desk{
        display: none;
    }

    .call-now{
        display: none;
    }

    .services, .faq{
        width: 100%;
        padding: 2rem 1rem;
        padding-bottom: 0;
    }

    .services h2, .why-choose-us h2{
        font-size: 1.5rem;
        margin-top: 0;
    }

    .service-cards, .why-choose-us-content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .service-card-1, .service-card-2, .service-card-3, .service-card-4 {
        width: 100%;
        height: 100%;
        padding: 1rem;
        margin: 0 auto;
    }
    .service-card-1 i, .service-card-2 i, .service-card-3 i, .service-card-4 i {  
        font-size: 1.5rem;
    }

    .service-card-1 h3, .service-card-2 h3, .service-card-3 h3, .service-card-4 h3 {
        font-size: 1rem;
    }

    .service-card-1 p, .service-card-2 p, .service-card-3 p, .service-card-4 p {
        font-size: 0.8rem;
    }

    .service-content-title{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-content-title h3{
        font-size: 1rem;
        color: black
    }
    
    .service-header{
        padding: 1rem;
    }

    .service-content{
        flex-direction: column;
        width: 100%;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 1rem;
    }
    
    .service-header h1 {
        font-size: 1.5rem;
    }

    .subtitle, .services-list strong{
        font-size: 1rem;
    }

    .service-content-text p{
        font-size: 1rem;
    }

    .services-list{
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        font-size: 0.9rem;
    }
    
    .additional-services, .showcase-card {
        padding: 1rem;
    }

    .additional-services h2{
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .services-showcase{
        gap: 20px;
    }

    .showcase-card h3, .showcase-card h3::before{
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .showcase-card p{
        font-size: 0.8rem;
    }

    .cta-button, .cta-section{
        padding: 1rem;
    }

    .why-choose-us{
        padding: 1rem;
    }

    .feature-card{
        padding: 5px;
        display: flex;
        flex-direction: column;
    }

    .feature-header{
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
    }

    .feature-icon{
        font-size: 0.8rem;
        width: 25px;
        height: 25px;
    }

    .feature-title{
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-description{
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .modal-content {
        padding: 1rem;
        margin: 1rem;
    }

    .modal-header{
        margin-bottom: 0;
        padding-bottom: 1rem;
    }

    .modal-header h2{
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form{
        padding: 1rem;
    }

    .booking-form label{
        font-size: 0.8rem;
    }

    .booking-form .form-group{
        margin-bottom: 1rem;
    }

    .btn{
        font-size: smaller;
    }

    /* faq  */
    .faq-booking{
        flex-direction: column;
    }

    .faq-header, .faq-question, .faq-answer.active, .faq-content, .booking-header{
        padding: 1rem;
    }

    .faq-header h1, .booking-header h1{
        font-size: 1rem;
    }

    .faq-header p, .faq-answer p, .booking-header p{
        font-size: 0.7rem;
    }

    .booking-main{
        width: 100%;
        padding-top: 3rem;
    }

    #call-button{
        width: 100%;
        height: 70px;
        border-radius: 0;
    }

    /* testimonials */
    .testimonials{
        padding: 1rem;
    }

    .testimonials h2{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonials p{
        font-weight: 300;
        font-size: 1rem;
        padding: 0.5rem;
    }

    .stats-grid{
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(2px, 1fr));
    }

    .stat-number{
        font-size: 1.5rem;
    }

    .stats-section{
        width: 100%;
        margin-bottom: 0;
        padding: 1rem;
    }

    .stat-label{
        font-size: 0.8rem;
    }

    .testimonial-card {
        max-width: 320px;
        padding: 1rem; 
        border-radius: 15px; 
    }

    .testimonial-text{
        font-size: 0.8rem;
    }

    .slider-btn{
        height: 40px;
        width: 40px;
    }

    .indicator{
        height: 10px;
        width: 10px;
    }

    .slide-counter{
        font-size: 0.8rem;
    }

    .customer-avatar{
        display: none;
    }

    .customer-details h3{
        font-size: 1rem;
    }

    .customer-details p{
        font-size: 0.9rem;
        padding: 0;
    }

    .slider-controls{
        margin-top: 10px;
    }

    .testimonials-slider{
        padding: 2rem 0 2rem;
    }
}