/*
Theme Name: DewaHoki88 Premium
Theme URI: https://dewahoki88.com
Author: Premium Gaming Studio
Author URI: https://dewahoki88.com
Description: Modern, responsive WordPress theme untuk situs gaming online dengan kesan ceria, trusted, dan hoki. Warna biru tosca yang menarik dengan user experience terbaik.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dewahoki88
Tags: gambling, gaming, responsive, modern, blue
*/

/* ========================================
   CSS VARIABLES - BIRU TOSCA THEME
======================================== */
:root {
  /* Primary Colors - Biru Tosca */
  --primary-color: #00CED1;
  --primary-dark: #20B2AA;
  --primary-light: #48D1CC;
  --primary-gradient: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
  
  /* Accent Colors */
  --accent-gold: #FFD700;
  --accent-orange: #FF8C00;
  --accent-green: #00FF7F;
  
  /* Neutral Colors */
  --dark-bg: #0A1929;
  --dark-secondary: #1A2942;
  --dark-tertiary: #2A3F5F;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-medium: #CCCCCC;
  --gray-dark: #666666;
  
  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(0, 206, 209, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 206, 209, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 206, 209, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 206, 209, 0.4);
  
  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-primary);
  background: var(--dark-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

/* ========================================
   HEADER STYLES
======================================== */
.site-header {
  background: var(--dark-secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Main */
.header-main {
  padding: 16px 0;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo img {
  max-height: 60px;
  width: auto;
  transition: var(--transition-fast);
}

.site-logo:hover img {
  transform: scale(1.05);
}

/* Navigation with Buttons */
.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-buttons-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}

.btn-nav {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.btn-nav.btn-primary {
  background: var(--primary-gradient);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-nav.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-nav.btn-secondary {
  background: var(--dark-bg);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-nav.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-nav.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--dark-bg);
  border-color: #FFD700;
  animation: pulse-gold 2s infinite;
}

.btn-nav.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Mobile Menu Items (Hidden on Desktop) */
.mobile-menu-items {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
}

/* ========================================
   MENU BAR
======================================== */
.menu-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(0, 206, 209, 0.2);
  padding: 0;
}

.primary-menu {
  width: 100%;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0;
}

.menu-list li {
  position: relative;
}

/* Fallback Menu Styling (matches menu-list) */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 14px 24px;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: rgba(0, 206, 209, 0.1);
}

.menu-list a {
  display: block;
  padding: 14px 24px;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.menu-list a:hover,
.menu-list .current-menu-item a {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: rgba(0, 206, 209, 0.1);
}

/* Submenu (dropdown) */
.menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-secondary);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.menu-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.menu-list .sub-menu a {
  padding: 10px 20px;
  border-bottom: none;
}

.menu-list .sub-menu a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* General Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--dark-bg);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ========================================
   HOMEPAGE CAROUSEL SLIDER
======================================== */
.homepage-carousel {
  padding: 0;
  margin: 0;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 1344px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 57.14%; /* 768/1344 = 0.5714 (ratio 1344x768) */
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

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

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

/* Carousel Navigation Buttons */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 206, 209, 0.7);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--primary-color);
  box-shadow: var(--shadow-glow);
  transform: translateY(-50%) scale(1.1);
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Mobile Carousel */
@media (max-width: 768px) {
  .carousel-wrapper {
    padding-bottom: 75%; /* Taller on mobile */
  }
  
  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .carousel-dots {
    bottom: 10px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel-dot.active {
    width: 20px;
  }
}

/* ========================================
   SERVICE IMAGE SECTION
======================================== */
.service-section {
  padding: var(--spacing-lg) 0;
  background: var(--dark-bg);
}

.service-image-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-gif {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .service-section {
    padding: var(--spacing-md) 0;
  }
}

/* ========================================
   MOBILE CTA BUTTONS (Hidden on Desktop)
======================================== */
.mobile-cta-buttons {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ========================================
   MOBILE INFO TABLE (Hidden on Desktop)
======================================== */
.mobile-info-table {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ========================================
   MOBILE ICON GRID (Hidden on Desktop)
======================================== */
.mobile-icon-grid {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ========================================
   CONTENT SECTION
======================================== */
.main-content {
  padding: var(--spacing-xl) 0;
}

.content-wrapper {
  background: var(--dark-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  color: var(--primary-light);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.content-wrapper h1 {
  font-size: 32px;
}

.content-wrapper h2 {
  font-size: 26px;
}

.content-wrapper h3 {
  font-size: 22px;
}

.content-wrapper p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  color: var(--gray-light);
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-light);
}

.content-wrapper li {
  margin-bottom: 8px;
}

.content-wrapper a {
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.content-wrapper a:hover {
  border-bottom-color: var(--primary-color);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Entry Header & Title */
.entry-header {
  margin-bottom: var(--spacing-lg);
  text-align: left;
}

.entry-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
  word-wrap: break-word;
}

/* Entry Meta */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 12px;
  border-top: 1px solid rgba(0, 206, 209, 0.2);
}

.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.entry-meta svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.entry-meta a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.entry-meta a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Post Thumbnail */
.post-thumbnail {
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* Entry Content Improvements */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.entry-content h2 {
  font-size: 28px;
  color: var(--primary-light);
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 206, 209, 0.3);
}

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

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

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-md);
}

.entry-content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--primary-color);
  background: rgba(0, 206, 209, 0.05);
  border-radius: var(--radius-sm);
  font-style: italic;
}

.entry-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  background: rgba(0, 206, 209, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid rgba(0, 206, 209, 0.2);
  text-align: left;
}

.entry-content th {
  background: rgba(0, 206, 209, 0.1);
  font-weight: 600;
  color: var(--primary-light);
}

/* Entry Footer */
.entry-footer {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 206, 209, 0.2);
}

.tags-links a {
  display: inline-block;
  padding: 4px 12px;
  margin: 4px 4px 4px 0;
  background: rgba(0, 206, 209, 0.1);
  color: var(--primary-light);
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
}

.tags-links a:hover {
  background: rgba(0, 206, 209, 0.2);
  color: var(--primary-color);
}

/* Post Navigation */
.post-navigation {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 2px solid rgba(0, 206, 209, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.post-navigation a {
  flex: 1;
  min-width: 200px;
  padding: 16px;
  background: rgba(0, 206, 209, 0.05);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--white);
  transition: var(--transition-fast);
  display: block;
  border: 1px solid rgba(0, 206, 209, 0.2);
}

.post-navigation a:hover {
  background: rgba(0, 206, 209, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.post-navigation .nav-previous {
  text-align: left;
}

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

/* ========================================
   FOOTER SECTION
======================================== */
.site-footer {
  background: var(--dark-bg);
  border-top: 2px solid var(--primary-color);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-widget h3 {
  color: var(--primary-light);
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.footer-widget ul {
  list-style: none;
}

.footer-widget li {
  margin-bottom: 8px;
}

.footer-widget a {
  color: var(--gray-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-widget a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
}

.contact-item img {
  width: 32px;
  height: 32px;
}

.payment-section {
  margin-bottom: var(--spacing-sm);
}

.payment-section:last-child {
  margin-bottom: 0;
}

.payment-label {
  font-size: 13px;
  color: var(--primary-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--spacing-xs);
}

.payment-methods img {
  width: 78px;
  height: 28px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 4px;
  transition: var(--transition-fast);
}

.payment-methods img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 206, 209, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 206, 209, 0.2);
  color: var(--gray-medium);
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 8px;
}

/* ========================================
   FLOATING ELEMENTS
======================================== */
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-chat img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-1 { margin-top: var(--spacing-xs); margin-bottom: var(--spacing-xs); }
.my-2 { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-3 { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }

/* ========================================
   RESPONSIVE DESIGN - LARGE TABLET
======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
  
  .header-main {
    padding: 14px 0;
  }
  
  .btn-nav {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
======================================== */
@media (max-width: 992px) {
  .header-main .container {
    flex-wrap: wrap;
  }
  
  .nav-buttons-wrapper {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .btn-nav {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  .menu-list {
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .menu-list a {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .nav-buttons-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 860px) {
  .nav-buttons-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
  
  .menu-bar {
    padding: 8px 0;
  }
  
  .menu-list {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .menu-list::-webkit-scrollbar {
    height: 4px;
  }
  
  .menu-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
  }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL TABLET / LARGE MOBILE
======================================== */
@media (max-width: 820px) {
  html {
    font-size: 15px;
  }
  
  .site-logo img {
    max-height: 50px;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
======================================== */
@media (max-width: 768px) {
  /* Header Mobile */
  .site-logo img {
    max-height: 40px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation {
    display: none;
    width: 100%;
    margin-top: 16px;
  }
  
  .main-navigation.active {
    display: block;
  }
  
  .nav-buttons-wrapper {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px;
  }
  
  .btn-nav {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  /* Mobile Menu Items (show in hamburger) */
  .mobile-menu-items {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    left: auto !important;
    width: 100%;
  }
  
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-menu-list li {
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
  }
  
  .mobile-menu-list a {
    display: block;
    padding: 14px 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
  }
  
  .mobile-menu-list a:hover,
  .mobile-menu-list .current-menu-item a {
    background: rgba(0, 206, 209, 0.1);
    color: var(--primary-color);
  }
  
  /* Menu Bar Hidden on Mobile */
  .menu-bar {
    display: none;
  }
  
  .menu-bar.active {
    display: none; /* Always hidden on mobile, menu items in hamburger instead */
  }
  
  /* Content Mobile */
  .content-wrapper {
    padding: var(--spacing-md);
  }
  
  .content-wrapper h1 {
    font-size: 24px;
  }
  
  .content-wrapper h2 {
    font-size: 20px;
  }
  
  /* Breadcrumbs Mobile */
  .breadcrumbs {
    font-size: 12px;
    padding: 8px 0;
    margin-bottom: 16px;
  }
  
  /* Entry Title Mobile */
  .entry-title {
    font-size: 24px;
  }
  
  /* Entry Meta Mobile */
  .entry-meta {
    gap: 12px;
    font-size: 13px;
  }
  
  /* Post Navigation Mobile */
  .post-navigation {
    flex-direction: column;
    gap: 12px;
  }
  
  .post-navigation a {
    min-width: auto;
  }
  
  /* Mobile CTA Buttons - Show & Style on Mobile */
  .mobile-cta-buttons {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    left: auto !important;
    padding: 20px 0;
    background: var(--dark-bg);
  }
  
  .cta-buttons-wrapper {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .btn-cta {
    background: linear-gradient(to right, #00e0ff, #00a1b6);
    color: #00191e;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    display: block;
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.45);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn-cta:hover {
    background: linear-gradient(to right, #00ffff, #00aaff);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
  }
  
  .btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.45);
  }
  
  /* Mobile Info Table - Show & Style on Mobile */
  .mobile-info-table {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    left: auto !important;
    padding: 20px 0;
    background: var(--dark-bg);
  }
  
  .info-table-mobile {
    max-width: 90%;
    margin: 0 auto;
    background: #102428;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 224, 255, 0.27);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
  }
  
  .info-table-mobile table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .info-table-mobile td {
    padding: 10px;
    border: 1px solid #0f3b3f;
    color: #b6f8ff;
    font-size: 14px;
  }
  
  .info-table-mobile td:first-child {
    width: 45%;
    font-weight: bold;
    color: #00f0ff;
    text-shadow: 0 0 6px rgba(0, 234, 255, 0.5);
  }
  
  /* Mobile Icon Grid - Show & Style on Mobile */
  .mobile-icon-grid {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    left: auto !important;
    padding: 20px 0;
    background: var(--dark-bg);
  }
  
  .icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .icon-item {
    background: #0f2629;
    border: 1px solid #004f56;
    border-radius: 8px;
    width: 30%;
    padding: 15px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
  }
  
  .icon-item:hover {
    background: #123b40;
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
  }
  
  .icon-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.4));
  }
  
  .icon-item span {
    font-size: 14px;
    color: #ccf6ff;
    font-weight: 500;
  }
}

@media (max-width: 600px) {
  .icon-item {
    width: 45%;
  }
  
  /* Footer Mobile */
  .footer-widgets {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    justify-content: flex-start;
  }
  
  /* Floating Chat Mobile */
  .floating-chat {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-chat a {
    width: 50px;
    height: 50px;
  }
  
  .floating-chat img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .btn-nav {
    font-size: 13px;
  }
  
  .menu-list a {
    font-size: 13px;
  }
}

/* ========================================
   ANIMATIONS & EFFECTS
======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

.slide-up {
  animation: slideUp 0.8s ease;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
