/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #f8f9fa;
    --accent-color: #007bff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Prompt', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    height: 600px;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

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

/* About Section */
.about-section {
    background: var(--secondary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-card:hover .about-image img {
    transform: scale(1.1);
}

.about-content {
    padding: 2rem;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Car Models Slider */
.car-models-section {
    background: white;
}

.car-swiper {
    padding: 20px 0 60px;
}

.car-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.car-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-info {
    padding: 1.5rem;
}

.car-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.car-info p {
    color: var(--text-light);
}

/* Car Grid Section */
.car-grid-section {
    background: var(--secondary-color);
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.car-grid-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.car-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.car-grid-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.car-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.car-grid-card:hover .car-grid-image img {
    transform: scale(1.1);
}

.car-grid-info {
    padding: 1.5rem;
}

.car-grid-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.car-grid-info p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Activities Section */
.activities-section {
    background: var(--secondary-color);
}

.activities-swiper {
    padding: 20px 0 60px;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.activity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-info {
    padding: 1.5rem;
}

.activity-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.activity-info p {
    color: var(--text-light);
}

/* YouTube Section */
.youtube-section {
    background: white;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.youtube-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.youtube-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-phone {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-line {
    background: linear-gradient(135deg, #00c300, #00a300);
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.facebook-embed {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
}

.facebook-embed iframe {
    border-radius: 10px;
}

.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.share-section {
    margin-top: 3rem;
    text-align: center;
}

.share-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:nth-child(1) {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    color: white;
}

.share-btn:nth-child(2) {
    background: linear-gradient(135deg, #00c300, #00a300);
    color: white;
}

.share-btn:nth-child(3) {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-toggle:hover {
    transform: scale(1.1);
}

.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
    white-space: nowrap;
}

.floating-phone {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.floating-phone2 {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.floating-facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.floating-line {
    background: linear-gradient(135deg, #00c300, #00a300);
}

.floating-btn:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-to-top.active {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .car-grid,
    .gallery-grid,
    .youtube-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    

    .floating-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }

    .go-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .facebook-embed iframe {
        width: 100% !important;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* Footbar Fix */
.footer-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    z-index: 9999;
}

.footer-btn {
    flex: 1;
    margin: 0 5px;
    padding: 12px 0;
    background: #f1f1f1;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.call-btn {
    background: #00c853;
    color: white;
}

.line-btn {
    background: #06c755;
    color: white;
}


/* Prevent overlap with footbar */
.floating-buttons {
    bottom: 80px !important;
}
.go-to-top {
    bottom: 80px !important;
}


/* Updated call button color */
.call-btn {
    background: #2196F3 !important;
    color: white !important;
}


/* Smaller footer buttons on mobile */
@media (max-width: 600px) {
  .footer-btn {
     padding: 8px 0 !important;
     font-size: 14px !important;
     margin: 0 3px !important;
     border-radius: 8px !important;
  }
  .footer-fix {
     padding: 6px !important;
  }
}


/* Global Responsive Enhancements */
img {max-width:100%; height:auto;}
.container {width:100%; max-width:1200px; margin:auto; padding:0 15px;}

@media (max-width:768px){
  .about-grid, .car-grid {grid-template-columns:1fr !important;}
  .hero-title {font-size:28px !important;}
  .hero-subtitle {font-size:16px !important;}
}

@media (max-width:480px){
  nav .nav-menu {flex-direction:column !important;}
  .about-content, .about-card {padding:10px !important;}
}



/* Mobile improved floating menu */
@media (max-width: 768px){
  .floating-menu{
    display:none;
    flex-direction:column;
    gap:12px;
    margin-bottom:15px;
  }
  .floating-btn{
    width:260px;
    padding:16px;
    border-radius:40px;
    font-size:20px;
    font-weight:700;
    display:flex;
    gap:10px;
    align-items:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
  }
  .floating-phone{background:#c0392b;}
  .floating-phone2{background:#e67e22;}
  .floating-facebook{background:#2c3e8f;}
  .floating-line{background:#12b90f;}
}


/* Robust floating menu behavior */
.floating-buttons { z-index: 99999; }
.floating-menu { display: none !important; }
.floating-open .floating-menu { display: flex !important; flex-direction: column; gap:12px; margin-bottom:15px; }
.floating-open .floating-btn { display:flex !important; }

@media (max-width: 768px) {
  .floating-menu { display: none !important; }
  .floating-open .floating-menu { display: flex !important; }
}


/* FINAL FIX: Force text inside floating buttons always visible */
.floating-btn span {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-left: 8px;
}




/* MOBILE OPTIMIZED FLOATING BUTTON SIZE */
@media (max-width: 768px) {
    .floating-btn {
        width: 220px !important;
        padding: 12px 14px !important;
        font-size: 16px !important;
        border-radius: 32px !important;
    }

    .floating-menu {
        gap: 10px !important;
    }

    .floating-btn i {
        font-size: 18px !important;
    }

    .floating-btn span {
        font-size: 16px !important;
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-left: 8px;
    }
}



/* Mobile smaller navbar */
@media (max-width: 768px) {
    header,
    .navbar,
    .header-container {
        height: 48px !important;
        padding: 0 10px !important;
    }

    .logo h1,
    .logo,
    .logo img {
        font-size: 22px !important;
        height: 32px !important;
        line-height: 32px !important;
    }

    .mobile-toggle {
        width: 32px !important;
        height: 32px !important;
    }

    .mobile-toggle span {
        width: 22px !important;
        height: 2px !important;
        margin: 4px 0 !important;
    }

    header {
        box-shadow: none !important;
        border-bottom: 1px solid #eee !important;
    }
}



/* FIX – Show menu button clearly on mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 36px !important;
        height: 36px !important;
        position: absolute;
        right: 12px !important;
        top: 6px !important;
        z-index: 9999 !important;
    }

    .mobile-toggle span {
        width: 24px !important;
        height: 3px !important;
        margin: 4px auto !important;
        background: #000 !important;
        display: block !important;
    }

    /* FIX – Show JM + Freelance Tour on same line */
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .logo-title, 
    .logo-subtitle {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .logo-title {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    .logo-subtitle {
        font-size: 18px !important;
        font-weight: 500 !important;
    }
}


/* MOBILE: JM + Freelance Tour inline */
@media (max-width: 768px) {

    .logo {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .logo-title {
        display: inline-block !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .logo-subtitle {
        display: inline-block !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }
}





  25% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}





.footer-btn {
    transition: transform 0.25s ease;
}
.footer-btn:hover {
    transform: translateY(-3px) scale(1.06);
}


.contact-section { text-align:center; padding:40px 15px; }
.contact-title { font-size:2rem; font-weight:bold; margin-bottom:25px; }
.contact-grid { display:flex; justify-content:center; gap:25px; flex-wrap:wrap; }
.contact-box { background:white; padding:15px; border-radius:12px; box-shadow:0 4px 10px rgba(0,0,0,0.1); width:260px; }
.qr-img { width:100%; border-radius:10px; margin-bottom:10px; }
.contact-label { font-size:1.1rem; margin-bottom:10px; font-weight:600; }
.contact-btn { display:block; padding:10px; border-radius:8px; color:white; font-size:1.1rem; transition:0.25s ease; }
.contact-btn.line { background:#06C755; }
.contact-btn.whatsapp { background:#25D366; }
.contact-btn:hover { transform:translateY(-4px); }

/* Travel Section */ 
.travel-section{padding:40px 20px;background:#fff;}
.travel-slider{display:flex;overflow-x:auto;gap:15px;padding-bottom:15px;}
.travel-card{min-width:240px;background:#fff;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,.15);overflow:hidden;}
.travel-card img{width:100%;height:160px;object-fit:cover;}
.travel-text{padding:12px 15px;}
