/* ========================================
   Tablet Styles (Max-width: 992px)
   ======================================== */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }

  /* Header */
  .header-content {
    flex-wrap: wrap;
  }

  .main-navigation .primary-menu {
    gap: 5px;
  }

  .primary-menu .menu-item a {
    font-size: 14px;
    padding: 6px 12px;
  }

  /* Hero */
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 26px;
  }

  .hero-description {
    font-size: 28px;
  }

  .hero-description em {
    font-size: 32px;
  }

  .hero-logo {
    right: 50px;
  }

  .hero-logo img {
    width: 150px;
    height: 150px;
  }

  /* About Section */
  .about-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-box {
    padding: 30px;
  }

  .about-heading {
    font-size: 22px;
  }

  .about-description p {
    font-size: 14px;
  }

  /* Product Section */
  .product-section {
    padding: 60px 0;
  }

  .product-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }

  /* Featured products stay as 3 columns on tablet */
  .product-card-featured {
    grid-column: span 4;
  }

  /* Regular products stay as 4 columns on tablet */
  .product-card:not(.product-card-featured) {
    grid-column: span 3;
  }

  .product-name {
    font-size: 15px;
  }

  .product-price {
    font-size: 17px;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-top {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }

  .gallery-payment {
    padding: 25px;
  }

  .payment-title {
    font-size: 20px;
  }

  .account-number {
    font-size: 24px;
  }

  .gallery-slider-wrapper {
    overflow: hidden;
  }

  .gallery-slide {
    width: 400px;
    min-width: 400px;
    height: 280px;
  }

  .gallery-card {
    width: 100%;
    height: 100%;
  }

  .gallery-image-wrapper {
    width: 100%;
    height: 100%;
  }

  .gallery-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .showcase-title {
    font-size: 40px;
  }

  .showcase-subtitle {
    font-size: 28px;
  }

  .rating-star-icon {
    width: 60px;
    height: 60px;
  }

  .rating-star-icon i {
    font-size: 30px;
  }

  /* Blog Section */
  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-image-wrapper {
    height: 300px;
  }

  .blog-title {
    font-size: 17px;
  }

  /* Map Section */
  .map-container {
    height: 450px;
  }

  .map-info-card {
    max-width: 300px;
    padding: 18px;
  }

  .map-title {
    font-size: 16px;
  }

  .map-address {
    font-size: 13px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-widget-title {
    font-size: 15px;
  }

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

  .floating-btn {
    width: 55px;
    height: 55px;
  }

  .floating-btn i {
    font-size: 24px;
  }

  /* Single Post - Tablet */
  .post-featured-image {
    height: 350px;
  }

  .post-category-badge {
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .post-header,
  .post-content,
  .post-tags,
  .post-share,
  .post-navigation {
    padding: 30px;
  }

  .post-title {
    font-size: 32px;
  }

  .post-meta {
    gap: 20px;
  }

  .post-content {
    font-size: 17px;
  }

  .post-content h2 {
    font-size: 28px;
  }

  .post-content h3 {
    font-size: 24px;
  }

  .post-content h4 {
    font-size: 20px;
  }

  .post-navigation {
    gap: 20px;
  }

  /* Blog Archive - Tablet */
  .archive-title {
    font-size: 32px;
  }

  .archive-header {
    padding: 30px;
  }

  .archive-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .archive-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .archive-sidebar {
    position: static;
    top: auto;
  }
}

/* ========================================
   Mobile Styles (Max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }

  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }

  /* Header */
  .top-bar {
    display: none;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .site-branding {
    width: auto;
    text-align: left;
  }

  .site-branding .logo-link {
    justify-content: flex-start;
  }

  .header-cta {
    display: none;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    order: 3;
    position: relative;
    z-index: 9999;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 9998;
    overflow-y: auto;
    padding: 80px 0 20px;
  }

  .main-navigation.active {
    left: 0;
  }

  .primary-menu {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .primary-menu .menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .primary-menu .menu-item a {
    display: block;
    padding: 15px 10px;
    font-size: 15px;
    color: #333;
  }

  .primary-menu .menu-item a.active,
  .primary-menu .menu-item a:hover {
    background: #f8f9fa;
    color: #4285f4;
  }

  .site-header.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero-section {
    height: auto;
    min-height: 280px;
  }

  .hero-content {
    flex-direction: column;
    padding: 40px 0;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 24px;
  }

  .hero-description em {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-hero-call {
    padding: 12px 30px;
    font-size: 16px;
  }

  .hero-contact {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .hero-logo {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 30px;
    text-align: center;
  }

  .hero-logo img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-slide-button {
    bottom: 70px;
  }

  .btn-slide-cta {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero-bottom-cta {
    flex-direction: column;
  }

  .cta-item {
    padding: 15px;
  }

  .cta-icon {
    font-size: 20px;
  }

  .cta-text {
    font-size: 14px;
  }

  /* About Section */
  .about-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image-wrapper {
    max-width: 400px;
  }

  .about-badge {
    padding: 12px 20px;
  }

  .badge-text-main {
    font-size: 18px;
  }

  .badge-text-sub {
    font-size: 14px;
  }

  .about-box {
    padding: 25px;
  }

  .about-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .about-description p {
    font-size: 14px;
    line-height: 1.7;
  }

  .btn-about {
    padding: 12px 30px;
    font-size: 15px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 25px;
  }

  .feature-logo {
    width: 70px;
    height: 70px;
  }

  .feature-title {
    font-size: 18px;
  }

  .policy-title {
    font-size: 20px;
  }

  .policy-subtitle {
    font-size: 15px;
  }

  /* Product Section */
  .product-section {
    padding: 50px 0;
  }

  .product-section .container {
    padding: 0 8px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* All products 2 columns on mobile landscape */
  .product-card-featured,
  .product-card:not(.product-card-featured) {
    grid-column: span 1;
  }

  .product-card {
    font-size: 14px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-header {
    padding: 12px;
  }

  .product-logo {
    width: 35px;
    height: 35px;
  }

  .product-brand {
    font-size: 10px;
  }

  .product-image-wrapper {
    padding: 0px;
    min-height: 180px;
  }

  .product-image-bg {
    width: 150px;
    height: 150px;
  }

  .product-image {
    max-width: 100%;
  }

  .product-info {
    padding: 15px;
  }

  .product-name {
    font-size: 14px;
    min-height: 35px;
  }

  .product-price {
    font-size: 16px;
  }

  .product-package {
    font-size: 12px;
  }

  .btn-booking {
    padding: 10px 15px;
    font-size: 13px;
  }

  .product-social {
    bottom: 10px;
    right: 10px;
    gap: 4px;
  }

  .social-link {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .product-modal-content {
    padding: 25px;
    width: 95%;
  }

  .product-modal h3 {
    font-size: 18px;
  }

  .product-modal li {
    font-size: 13px;
    padding: 10px 0;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-payment {
    padding: 20px;
  }

  .payment-title {
    font-size: 18px;
  }

  .payment-subtitle {
    font-size: 14px;
  }

  .account-number {
    font-size: 22px;
  }

  .account-name {
    font-size: 14px;
  }

  .gallery-slider-wrapper {
    overflow: hidden;
  }

  .gallery-slide {
    width: 320px;
    min-width: 320px;
    height: 220px;
  }

  .gallery-card {
    width: 100%;
    height: 100%;
  }

  .gallery-image-wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .gallery-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .gallery-banner {
    padding: 40px 20px;
    min-height: 400px;
  }

  .gallery-actions {
    position: absolute;
    bottom: 20px;
  }

  .gallery-landmarks {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
  }

  .rating-star-icon {
    width: 50px;
    height: 50px;
  }

  .rating-star-icon i {
    font-size: 24px;
  }

  .gallery-showcase {
    padding: 0 20px;
    text-align: center;
  }

  .showcase-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .showcase-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .showcase-image {
    max-width: 100%;
    display: none;
  }

  .gallery-actions {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .gallery-action-btn {
    padding: 12px 35px;
    font-size: 14px;
    flex-direction: row;
    gap: 8px;
    border-radius: 25px;
    min-width: 180px;
  }

  .gallery-action-btn i {
    font-size: 18px;
  }

  /* Blog Section */
  .blog-section {
    padding: 50px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .blog-image-wrapper {
    height: 300px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 17px;
  }

  .blog-excerpt {
    font-size: 13px;
  }

  .blog-meta {
    gap: 12px;
  }

  .blog-author,
  .blog-category,
  .blog-comments {
    font-size: 12px;
  }

  .btn-read-more {
    padding: 10px 20px;
    font-size: 13px;
  }

  .btn-view-all {
    padding: 12px 30px;
    font-size: 15px;
  }

  /* Map Section */
  .map-container {
    height: 400px;
  }

  .map-info-card {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin: 20px;
    padding: 15px;
  }

  .map-title {
    font-size: 16px;
  }

  .map-address {
    font-size: 13px;
  }

  .rating-score {
    font-size: 18px;
  }

  .rating-stars i {
    font-size: 13px;
  }

  .rating-count {
    font-size: 12px;
  }

  .btn-view-map,
  .btn-get-directions {
    font-size: 12px;
    padding: 8px 12px;
  }

  .contact-info-bar {
    padding: 30px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-label {
    font-size: 13px;
  }

  .contact-text {
    font-size: 13px;
  }

  /* Footer */
  .footer-main {
    padding: 40px 20px 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-widget-title {
    font-size: 15px;
    text-align: left;
  }

  .footer-description {
    text-align: left;
  }

  .footer-contact-list {
    max-width: 100%;
    margin: 0;
  }

  .footer-search {
    max-width: 100%;
    margin: 0 0 20px 0;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-copyright {
    font-size: 13px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 22px;
  }
}

/* ========================================
   Small Mobile Styles (Max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  /* Top Bar */
  .top-bar {
    padding: 10px 0;
  }

  .top-bar-text {
    font-size: 11px;
  }

  .follow-us-text {
    font-size: 11px;
  }

  .social-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  /* Header */
  .site-header {
    padding: 10px 0;
  }

  .mobile-menu-toggle {
    gap: 4px;
  }

  .mobile-menu-toggle span {
    height: 2px;
  }

  .main-navigation {
    width: 260px;
  }

  .primary-menu {
    padding: 0 15px;
  }

  .primary-menu .menu-item a {
    font-size: 14px;
    padding: 12px 8px;
  }

  .site-logo {
    width: 70px;
    height: 70px;
  }

  .site-title-main {
    font-size: 16px;
  }

  .site-title-sub {
    font-size: 11px;
  }

  .header-cta .btn-call {
    padding: 6px 16px;
    font-size: 14px;
  }

  /* Hero */
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-description em {
    font-size: 22px;
  }

  .btn-hero-call {
    padding: 10px 25px;
    font-size: 14px;
  }

  .contact-label {
    font-size: 12px;
  }

  .contact-number {
    font-size: 16px;
  }

  .hero-logo img {
    width: 100px;
    height: 100px;
  }

  .cta-item {
    padding: 12px;
  }

  .cta-icon {
    font-size: 18px;
  }

  .cta-text {
    font-size: 12px;
  }

  /* About Section */
  .about-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-badge {
    padding: 10px 15px;
    top: 10px;
    left: 10px;
  }

  .badge-text-main {
    font-size: 16px;
  }

  .badge-text-sub {
    font-size: 13px;
  }

  .about-box {
    padding: 20px;
  }

  .about-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .about-description p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .btn-about {
    padding: 10px 25px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-logo {
    width: 60px;
    height: 60px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-link {
    justify-content: center;
  }

  .feature-link span {
    font-size: 12px;
  }

  .policy-title {
    font-size: 18px;
  }

  .policy-subtitle {
    font-size: 14px;
  }

  /* Product Section */
  .product-section {
    padding: 40px 0;
  }

  .product-section .container {
    padding: 0 8px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* All products 1 column on mobile portrait */
  .product-card-featured,
  .product-card:not(.product-card-featured) {
    grid-column: span 1;
  }

  .product-card {
    max-width: 100%;
    width: 100%;
  }

  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .product-header {
    padding: 12px;
  }

  .product-logo {
    width: 35px;
    height: 35px;
  }

  .product-brand {
    font-size: 10px;
  }

  .product-image-wrapper {
    min-height: 180px;
    padding: 0px;
    height: 300px;
  }

  .product-image-bg {
    width: 140px;
    height: 140px;
  }

  .product-image {
    max-width: 100%;
  }

  .product-social {
    gap: 5px;
    bottom: 10px;
    right: 10px;
  }

  .social-link {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .product-info {
    padding: 15px;
  }

  .product-name {
    font-size: 14px;
    min-height: 35px;
  }

  .product-price {
    font-size: 16px;
  }

  .price-period {
    font-size: 13px;
  }

  .product-package {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .product-details {
    margin-bottom: 12px;
  }

  .product-details-link {
    font-size: 12px;
  }

  .btn-booking {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
  }

  .product-modal-content {
    padding: 20px;
    max-width: 100%;
  }

  .product-modal h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .product-modal li {
    font-size: 12px;
    padding: 8px 0;
  }

  .product-modal-close {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 40px 0;
  }

  .gallery-payment {
    padding: 15px;
  }

  .payment-title {
    font-size: 16px;
  }

  .payment-subtitle {
    font-size: 13px;
  }

  .bank-logo {
    max-width: 120px;
  }

  .account-number {
    font-size: 20px;
  }

  .account-name {
    font-size: 13px;
  }

  .gallery-slider-wrapper {
    overflow: hidden;
  }

  .gallery-slide {
    width: 280px;
    min-width: 280px;
    height: 200px;
  }

  .gallery-card {
    width: 100%;
    height: 100%;
  }

  .gallery-card-header {
    display: none;
  }

  .gallery-logo {
    display: none;
  }

  .gallery-brand {
    display: none;
  }

  .gallery-image-wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .gallery-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-social {
    gap: 6px;
    bottom: 15px;
    right: 15px;
  }

  .gallery-social-link {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-banner {
    padding: 30px 15px;
    min-height: 250px;
  }

  .gallery-landmarks {
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
    flex-direction: row;
  }

  .rating-star-icon {
    width: 40px;
    height: 40px;
  }

  .rating-star-icon i {
    font-size: 20px;
  }

  .showcase-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .showcase-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .showcase-image {
    display: none;
  }

  .gallery-actions {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .gallery-action-btn {
    padding: 12px 30px;
    font-size: 13px;
    gap: 6px;
    border-radius: 20px;
    min-width: 160px;
  }

  .gallery-action-btn i {
    font-size: 16px;
  }

  .gallery-action-btn span {
    font-size: 11px;
  }

  /* Blog Section */
  .blog-section {
    padding: 40px 0;
  }

  .blog-grid {
    gap: 20px;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-image-wrapper {
    height: 250px;
    padding: 8px;
  }

  .blog-logo {
    top: 15px;
    left: 15px;
  }

  .blog-logo img {
    width: 40px;
    height: 40px;
  }

  .blog-overlay {
    padding: 8px 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .blog-brand {
    font-size: 11px;
  }

  .blog-tagline {
    font-size: 10px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-date {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .blog-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .blog-excerpt {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .single-post-section {
    padding: 30px 0;
  }

  .blog-meta {
    gap: 10px;
    padding: 12px 0;
    margin-bottom: 15px;
  }

  .blog-author,
  .blog-category,
  .blog-comments {
    font-size: 11px;
  }

  .btn-read-more {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
  }

  .blog-view-all {
    margin-top: 30px;
  }

  .btn-view-all {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* Map Section */
  .map-container {
    height: 350px;
  }

  .map-info-card {
    margin: 15px;
    padding: 12px;
  }

  .map-title {
    font-size: 15px;
  }

  .map-address {
    font-size: 12px;
  }

  .map-rating {
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .rating-score {
    font-size: 16px;
  }

  .rating-stars {
    gap: 2px;
  }

  .rating-stars i {
    font-size: 12px;
  }

  .rating-count {
    font-size: 11px;
  }

  .map-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn-view-map,
  .btn-get-directions {
    font-size: 11px;
    padding: 8px 12px;
  }

  .contact-info-bar {
    padding: 25px 0;
  }

  .contact-info-grid {
    gap: 20px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-label {
    font-size: 12px;
  }

  .contact-text {
    font-size: 12px;
  }

  /* Footer */
  .footer-main {
    padding: 30px 15px 25px 15px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-logo {
    padding: 12px;
    justify-content: flex-start;
  }

  .footer-logo img {
    width: 40px;
    height: 40px;
  }

  .footer-brand-name {
    font-size: 12px;
  }

  .footer-brand-sub {
    font-size: 11px;
  }

  .footer-address {
    font-size: 13px;
    text-align: left;
  }

  .footer-address i {
    font-size: 16px;
  }

  .footer-address p {
    font-size: 13px;
  }

  .footer-widget-title {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
  }

  .footer-description {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }

  .footer-contact-list {
    max-width: 100%;
  }

  .footer-contact-list li {
    margin-bottom: 12px;
  }

  .footer-contact-list i {
    font-size: 18px;
  }

  .contact-type {
    font-size: 12px;
  }

  .contact-info a {
    font-size: 13px;
  }

  .footer-search {
    max-width: 100%;
  }

  .footer-search-input {
    padding: 8px 12px;
    font-size: 13px;
  }

  .footer-search-btn {
    padding: 8px 15px;
  }

  .footer-search-btn i {
    font-size: 14px;
  }

  .footer-social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-bottom {
    padding: 12px 0;
  }

  .footer-copyright {
    font-size: 11px;
    line-height: 1.6;
  }

  .floating-buttons {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
  }

  .floating-btn i {
    font-size: 20px;
  }

  /* Single Post */
  .post-featured-image {
    height: 250px;
  }

  .post-category-badge {
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .post-header,
  .post-content,
  .post-tags,
  .post-share {
    padding: 20px;
  }

  .post-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .post-meta {
    gap: 15px;
  }

  .post-author,
  .post-date,
  .post-comments-count,
  .post-reading-time {
    font-size: 12px;
  }

  .post-content {
    font-size: 15px;
    line-height: 1.7;
  }

  .post-content h2 {
    font-size: 22px;
    padding-left: 15px;
    margin-top: 25px;
  }

  .post-content h3 {
    font-size: 19px;
  }

  .post-content h4 {
    font-size: 17px;
  }

  .tags-list a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .share-title {
    font-size: 16px;
  }

  .share-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .post-navigation {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .nav-previous,
  .nav-next {
    padding: 15px;
    text-align: left;
  }

  .nav-next .nav-label {
    justify-content: flex-start;
  }

  .nav-label {
    font-size: 11px;
  }

  .nav-title {
    font-size: 15px;
  }

  .btn-back {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Blog Archive - Mobile */
  .archive-title {
    font-size: 24px;
  }

  .archive-header {
    padding: 20px;
    margin-bottom: 30px;
  }

  .archive-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .archive-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .archive-sidebar {
    position: static;
    top: auto;
  }

  .sidebar-widget {
    padding: 20px;
    margin-bottom: 20px;
  }

  .widget-title {
    font-size: 18px;
  }

  .recent-post-thumb {
    width: 60px;
    height: 60px;
  }

  .recent-post-title {
    font-size: 14px;
  }

  .archive-pagination .page-numbers a,
  .archive-pagination .page-numbers span {
    padding: 8px 12px;
    font-size: 13px;
  }

  .archive-pagination .page-numbers span:not(.current):not(.dots) {
    display: none;
  }
}
