/* ========================================
   Top Bar Styles
   ======================================== */
.top-bar {
  background: #4285f4;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-icon {
  font-size: 16px;
}

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

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.follow-us-text {
  font-size: 13px;
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #4285f4;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ea4335;
  color: #fff;
}

/* ========================================
   Main Header Styles
   ======================================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.site-title-wrapper {
  display: flex;
  flex-direction: column;
}

.site-title-main {
  font-size: 20px;
  font-weight: bold;
  color: #2856a3;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.site-title-sub {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* ========================================
   Navigation Styles
   ======================================== */
.main-navigation .primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
}

.primary-menu .menu-item a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.primary-menu .menu-item.active a,
.primary-menu .menu-item a:hover {
  background: #34a853;
  color: #fff;
}

/* ========================================
   Header CTA
   ======================================== */
.header-cta .btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #4285f4;
  color: #4285f4;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.header-cta .btn-call:hover {
  background: #4285f4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #4285f4;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section Styles
   ======================================== */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: relative;
}

.hero-slide.active .hero-background img {
  animation: shimmerReveal 2s ease-out forwards;
}

.hero-slide.active .hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmerSlide 2s ease-out forwards;
  z-index: 2;
}

@keyframes shimmerReveal {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  display: none;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.hero-indicators .indicator.active {
  background: #fff;
  width: 36px;
  border-radius: 6px;
}

/* Hero Slide Button */
.hero-slide-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.btn-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-slide-cta i {
  transition: transform 0.3s ease;
}

.btn-slide-cta:hover i {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-text {
  color: #fff;
  max-width: 600px;
}

.hero-title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-subtitle {
  font-size: 32px;
  font-style: italic;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 36px;
  margin-bottom: 40px;
  line-height: 1.4;
}

.hero-description em {
  font-style: italic;
  font-size: 42px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-hero-call {
  display: inline-block;
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-hero-call:hover {
  background: #fff;
  color: #ea4335;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(34, 160, 94, 0.9);
  padding: 12px 25px;
  border-radius: 8px;
}

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

.contact-number {
  font-size: 20px;
  font-weight: bold;
}

.hero-logo {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

/* ========================================
   Slider Navigation
   ======================================== */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-nav:hover {
  background: rgba(34, 160, 94, 0.9);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* ========================================
   Hero Bottom CTA
   ======================================== */
.hero-bottom-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 10;
}

.cta-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-welcome {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
}

.cta-contact {
  background: rgba(34, 160, 94, 0.95);
  color: #fff;
}

.cta-item:hover {
  transform: translateY(-5px);
}

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

.cta-text {
  font-size: 16px;
  font-weight: bold;
}

/* ========================================
   About Section Styles
   ======================================== */
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  font-weight: normal;
}

.section-title {
  font-size: 36px;
  color: #fbbc04;
  font-weight: bold;
  margin: 0;
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* About Image Side */
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #34a853;
  color: #fff;
  padding: 15px 25px;
  border-radius: 0 30px 30px 0;
  box-shadow: 0 4px 15px rgba(34, 160, 94, 0.3);
  z-index: 2;
}

.badge-text-main {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.badge-text-sub {
  display: block;
  font-size: 16px;
  font-style: italic;
  line-height: 1.2;
}

.cars-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.about-website {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
}

.website-icon {
  font-size: 18px;
  color: #4285f4;
}

.website-url {
  font-size: 14px;
  color: #666;
}

/* About Text Side */
.about-text {
  display: flex;
  align-items: center;
}

.about-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-heading {
  font-size: 24px;
  color: #ea4335;
  margin-bottom: 25px;
  font-weight: bold;
}

.about-description {
  margin-bottom: 30px;
}

.about-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: #2856a3;
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fbbc04;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 160, 94, 0.3);
}

.btn-about:hover {
  background: #34a853;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 160, 94, 0.4);
}

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

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-info {
  flex: 1;
}

.feature-title {
  font-size: 20px;
  color: #34a853;
  font-weight: bold;
  margin: 0 0 10px 0;
  font-style: italic;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.link-icon {
  font-size: 16px;
  color: #4285f4;
}

.feature-link span {
  font-size: 14px;
  color: #666;
}

/* Feature Policy Box */
.feature-policy {
  background: #ea4335;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-policy::before,
.feature-policy::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.feature-policy::before {
  top: 0;
  left: 0;
  border-width: 60px 60px 0 0;
  border-color: #34a853 transparent transparent transparent;
}

.feature-policy::after {
  bottom: 0;
  right: 0;
  border-width: 0 0 60px 60px;
  border-color: transparent transparent #34a853 transparent;
}

.feature-badge {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.policy-title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.policy-subtitle {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Product Section Styles
   ======================================== */
.product-section {
  padding: 80px 0;
  background: #fff;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
}

/* Featured products (first 3) - 3 columns */
.product-card-featured {
  grid-column: span 4;
}

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

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-image-wrapper {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
  width: 100%;
  height: 250px;
  flex-shrink: 0;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Product Social */
.product-social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  color: #34a853;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: #4285f4;
  color: #fff;
  transform: scale(1.1);
}

/* Product Info */
.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #e74c3c;
  margin: 0 0 5px 0;
  text-align: center;
}

.price-period {
  font-size: 14px;
  color: #666;
}

.product-package {
  font-size: 13px;
  color: #666;
  margin: 0 0 15px 0;
  text-align: center;
}

/* Product Details Accordion */
.product-details {
  margin-bottom: 15px;
}

.product-details-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  color: #666;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.product-details-toggle:hover {
  background: #4285f4;
  color: #fff;
  border-color: #4285f4;
}

.product-details-toggle .toggle-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.product-details-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.product-details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
  margin-top: 8px;
  border-radius: 6px;
}

.product-details-content.active {
  max-height: 500px;
  padding: 15px;
}

.product-details-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details-content li {
  padding: 8px 0;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-details-content li i {
  color: #34a853;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Booking Button */
.btn-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #34a853;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
  margin-top: auto;
}

.btn-booking:hover {
  background: #2d9248;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 168, 83, 0.4);
}

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

/* Product Modal */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.product-modal.active {
  display: flex;
}

.product-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f8f9fa;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-modal-close:hover {
  background: #ea4335;
  color: #fff;
  transform: rotate(90deg);
}

.product-modal h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #333;
  padding-right: 30px;
}

.product-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-modal li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
}

.product-modal li:last-child {
  border-bottom: none;
}

.product-modal li i {
  color: #4285f4;
  font-size: 16px;
  min-width: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========================================
   Gallery Section Styles
   ======================================== */
.gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Gallery Top Section */
.gallery-top {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Payment Info */
.gallery-payment {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-header {
  margin-bottom: 20px;
}

.payment-title {
  font-size: 24px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

.payment-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 20px 0;
}

.payment-bank {
  margin-bottom: 20px;
}

.bank-logo {
  max-width: 150px;
  height: auto;
}

.payment-details {
  border-top: 2px solid #f0f0f0;
  padding-top: 15px;
}

.account-number {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px 0;
}

.account-name {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Gallery Slider */
.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-slider-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 25s linear infinite;
  width: max-content;
  will-change: transform;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-slide {
  flex: 0 0 auto;
  width: 600px;
  min-width: 600px;
  height: 400px;
}

.gallery-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}

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

.gallery-logo {
  display: none;
}

.gallery-brand {
  display: none;
}

.gallery-image-wrapper {
  position: relative;
  padding: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-car-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Gallery Navigation - Hidden for auto scroll */
.gallery-nav {
  display: none;
}

/* Gallery Banner */
.gallery-banner {
  position: relative;
  background: #2856a3;
  border-radius: 10px;
  padding: 60px 40px;
  overflow: hidden;
  min-height: 450px;
}

.gallery-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.8;
}

.gallery-landmarks {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 20px;
  z-index: 2;
}

.rating-star-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  position: relative;
}

.rating-star-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  border-radius: 50%;
  animation: starRotate 3s linear infinite;
  z-index: -1;
}

.rating-star-icon i {
  font-size: 40px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: starPulse 1.5s ease-in-out infinite;
}

.rating-star-icon.star-1 {
  animation-delay: 0s;
}

.rating-star-icon.star-2 {
  animation-delay: 0.2s;
}

.rating-star-icon.star-3 {
  animation-delay: 0.4s;
}

.rating-star-icon.star-4 {
  animation-delay: 0.6s;
}

.rating-star-icon.star-5 {
  animation-delay: 0.8s;
}

@keyframes starShine {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4),
      0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6),
      0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

@keyframes starRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.landmark-diamond {
  display: none;
}

.landmark-image {
  display: none;
}

.gallery-showcase {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.showcase-content {
  color: #fff;
  max-width: 800px;
}

.showcase-title {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.showcase-subtitle {
  font-size: 32px;
  font-style: italic;
  margin: 0 0 40px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-cars {
  margin-top: 30px;
}

.showcase-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

/* Gallery Actions */
.gallery-actions {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.gallery-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 30px;
  min-width: 200px;
}

.btn-empty {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.btn-empty:hover {
  background: rgba(0, 0, 0, 0.5);
}

.btn-info {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
}

.btn-info:hover {
  background: #fff;
  transform: translateY(-5px);
}

.btn-contact {
  background: rgba(34, 160, 94, 0.95);
  color: #fff;
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
}

.btn-contact:hover {
  background: #34a853;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.6);
}

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

/* ========================================
   Blog Section Styles
   ======================================== */
.blog-section {
  padding: 80px 0;
  background: #fff;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 280px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  padding: 0;
}

.blog-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-wrapper::before {
  opacity: 0.8;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image {
  transform: scale(1.1) rotate(2deg);
}

.blog-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.blog-card:hover .blog-logo {
  transform: rotate(360deg) scale(1.1);
}

.blog-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(66, 133, 244, 0.95),
    rgba(52, 168, 83, 0.95)
  );
  padding: 15px 20px;
  border-radius: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-overlay {
  transform: translateY(0);
}

.blog-brand {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-tagline {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

/* Blog Content */
.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
  margin-bottom: 15px;
}

.blog-date i {
  color: #ea4335;
}

.blog-title {
  margin: 0 0 15px 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.blog-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #4285f4, #34a853);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
}

.blog-title a:hover {
  color: #4285f4;
  background-size: 100% 2px;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.blog-author,
.blog-category,
.blog-comments {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
}

.blog-author i,
.blog-category i,
.blog-comments i {
  color: #34a853;
  font-size: 14px;
}

/* Read More Button */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-read-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-read-more:hover::before {
  left: 100%;
}

.btn-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
}

.btn-read-more i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

/* No Posts Message */
.blog-no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

/* View All Button */
.blog-view-all {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 4px solid #4285f4;
  color: #4285f4;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #34a853;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 160, 94, 0.3);
}

.btn-view-all i {
  transition: all 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* ========================================
   Map Section Styles
   ======================================== */
.map-section {
  background: #f8f9fa;
}

/* Map Container */
.map-container {
  position: relative;
  height: 500px;
  width: 100%;
}

/* Map Info Card */
.map-info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  max-width: 350px;
}

.map-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}

.map-address {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

/* Map Rating */
.map-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.rating-score {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  color: #ffa500;
  font-size: 14px;
}

.rating-count {
  font-size: 13px;
  color: #666;
}

/* Map Actions */
.map-actions {
  display: flex;
  gap: 10px;
}

.btn-view-map,
.btn-get-directions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-view-map {
  background: #4285f4;
  color: #fff;
}

.btn-view-map:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-get-directions {
  background: #fff;
  color: #4285f4;
  border: 1px solid #4285f4;
}

.btn-get-directions:hover {
  background: #4285f4;
  color: #fff;
  transform: translateY(-2px);
}

/* Map Embed */
.map-embed {
  width: 100%;
  height: 100%;
}

.map-embed iframe {
  display: block;
}

/* Contact Info Bar */
.contact-info-bar {
  background: #fff;
  padding: 40px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
}

.contact-text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-text a {
  color: #ea4335;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: #34a853;
  text-decoration: underline;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
  background: #4285f4;
  color: #fff;
}

/* Footer Main */
.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Footer Widget */
.footer-widget {
  color: #fff;
}

.footer-widget-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Logo & Address */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  width: fit-content;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 14px;
  font-weight: bold;
  color: #2856a3;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 13px;
  font-weight: bold;
  color: #2856a3;
  line-height: 1.2;
}

.footer-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-address i {
  font-size: 18px;
  color: #fff;
  margin-top: 3px;
}

.footer-address p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

/* Footer Description */
.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin: 0;
  text-align: justify;
}

/* Footer Contact */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list i {
  font-size: 20px;
  color: #fff;
  margin-top: 2px;
}

.contact-info {
  flex: 1;
}

.contact-type {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 3px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Footer Search */
.footer-search {
  display: flex;
  margin-bottom: 20px;
}

.footer-search-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 25px 0 0 25px;
  font-size: 14px;
  outline: none;
}

.footer-search-btn {
  background: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-search-btn i {
  color: #34a853;
  font-size: 16px;
}

.footer-search-btn:hover {
  background: #f0f0f0;
}

/* Footer Social Icons */
.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: #4285f4;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: #ffd700;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

/* ========================================
   Single Post Styles
   ======================================== */
.single-post-section {
  padding: 100px 0 80px;
  background: #f8f9fa;
}

.single-post {
  background: #fff;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* Featured Image */
.post-featured-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.post-featured-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-post:hover .post-image {
  transform: scale(1.05);
}

.post-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.post-category-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Post Header */
.post-header {
  padding: 40px 50px 30px;
  border-bottom: 2px solid #f0f0f0;
}

.post-title {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin: 0 0 25px 0;
  line-height: 1.3;
  background: linear-gradient(135deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.post-author,
.post-date,
.post-comments-count,
.post-reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.post-author i,
.post-date i,
.post-comments-count i,
.post-reading-time i {
  color: #4285f4;
  font-size: 16px;
}

/* Post Content */
.post-content {
  padding: 50px;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: #333;
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 700;
}

.post-content h2 {
  font-size: 32px;
  border-left: 4px solid #4285f4;
  padding-left: 20px;
}

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

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

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-content blockquote {
  background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
  border-left: 5px solid #34a853;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 10px;
  font-style: italic;
  color: #555;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 30px;
  color: #333 !important;
  list-style-position: outside;
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content li {
  margin-bottom: 10px;
  color: #333 !important;
}

.post-content ul li::marker,
.post-content ol li::marker {
  color: #333 !important;
  font-size: 1em;
}

.page-links {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.page-links span {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  background: #4285f4;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

/* Post Tags */
.post-tags {
  padding: 30px 50px;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.tags-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #333;
}

.tags-icon i {
  color: #fbbc04;
}

.tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tags-list a {
  display: inline-block;
  padding: 8px 18px;
  background: #f8f9fa;
  color: #666;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.tags-list a:hover {
  background: #4285f4;
  color: #fff;
  border-color: #4285f4;
  transform: translateY(-2px);
}

/* Post Share */
.post-share {
  padding: 40px 50px;
  background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
}

.share-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
}

.share-title i {
  color: #4285f4;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
  background: #1877f2;
  color: #fff;
}

.share-btn.twitter {
  background: #1da1f2;
  color: #fff;
}

.share-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.share-btn.email {
  background: #ea4335;
  color: #fff;
}

/* Post Navigation */
.post-navigation {
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 2px solid #f0f0f0;
}

.nav-previous,
.nav-next {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-next {
  text-align: right;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.nav-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-title:hover {
  color: #4285f4;
}

/* Back to Blog Button */
.back-to-blog {
  text-align: center;
  margin-top: 30px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
}

.btn-back:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
}

.btn-back i {
  transition: transform 0.3s ease;
}

.btn-back:hover i {
  transform: translateX(-5px);
}

.footer-copyright strong {
  font-weight: bold;
}

.footer-copyright a {
  color: #ffd700;
  text-decoration: none;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ========================================
   Floating Action Buttons
   ======================================== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-phone {
  background: #4285f4;
  color: #fff;
}

.btn-whatsapp {
  background: #34a853;
  color: #fff;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  }
}

/* ========================================
   Blog Archive / List Page Styles
   ======================================== */
.blog-archive-section {
  padding: 100px 0 80px;
  background: #f8f9fa;
  min-height: 100vh;
}

/* Archive Header */
.archive-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 5px 30px rgba(66, 133, 244, 0.3);
}

.archive-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.archive-description {
  font-size: 16px;
  margin: 15px auto;
  max-width: 600px;
  opacity: 0.95;
  line-height: 1.6;
}

.archive-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  margin-top: 15px;
}

.archive-count i {
  font-size: 18px;
}

/* Archive Layout */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* Main Content */
.archive-main {
  min-width: 0;
}

.archive-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.archive-blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.archive-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Pagination */
.archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.archive-pagination .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.archive-pagination .page-numbers li {
  display: inline-block;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.archive-pagination .page-numbers a:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.archive-pagination .page-numbers .current {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.archive-pagination .page-numbers .dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}

/* No Posts Found */
.no-posts-found {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-posts-found i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-posts-found h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.no-posts-found p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
}

.btn-back-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
}

/* Sidebar */
.archive-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title i {
  color: #4285f4;
  font-size: 22px;
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 10px;
}

.search-field {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-field:focus {
  outline: none;
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.search-submit {
  padding: 12px 25px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.search-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.categories-list li a:hover,
.categories-list li.active a {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  transform: translateX(5px);
}

.cat-name {
  font-weight: 600;
}

.cat-count {
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.categories-list li a:hover .cat-count,
.categories-list li.active a .cat-count {
  background: rgba(255, 255, 255, 0.3);
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.recent-posts-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-post-item:hover {
  transform: translateX(5px);
}

.recent-post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
  transform: scale(1.1);
}

.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-title {
  color: #4285f4;
}

.recent-post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #999;
}

.recent-post-date i {
  font-size: 12px;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  display: inline-block;
  padding: 8px 18px;
  background: #f8f9fa;
  color: #666;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.tag-item:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(66, 133, 244, 0.3);
}

/* Archive Widget */
.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.archive-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  font-weight: 600;
}

.archive-list li a:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  transform: translateX(5px);
}

.archive-list li a::after {
  content: "→";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.archive-list li a:hover::after {
  opacity: 1;
}
