/* Company branding — below fixed topbar; main nav offset on index (body.home-company-banner) */
body.home-company-banner {
  --company-banner-height: 4.35rem;
}

.hero-company-banner {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 1.15rem 1.25rem;
  min-height: var(--company-banner-height);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: var(--weight-bold, 700);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-crayola, #e4c590);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.35) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

@media (min-width: 575px) {
  body.home-company-banner .hero-company-banner {
    margin-top: 51px;
  }

  body.home-company-banner .header {
    top: calc(51px + var(--company-banner-height));
  }

  body.home-company-banner .header.active {
    top: 0;
  }
}

@media (max-width: 574px) {
  body.home-company-banner .header {
    top: var(--company-banner-height);
  }
}

.site-footer-footnote {
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: var(--weight-bold, 700);
  letter-spacing: 0.03em;
  margin: 0;
}

.site-footer-footnote--sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.site-footer-footnote--light {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #5c4033;
  border-top: 1px solid rgba(210, 105, 30, 0.3);
  border-radius: 0;
}

/* Pizza Hero Icon - No spinning animation */
.hero-btn img {
  /* Removed spinning animation as requested */
}

/* Main Logo Spinning Animation */
.logo img {
  animation: spin 3s linear infinite;
}

/* Mobile Logo Optimization */
@media (max-width: 768px) {
  .header .logo img {
    width: 140px !important;
    height: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
  }
  
  .navbar .logo img {
    width: 140px !important;
    height: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .header .logo img {
    width: 120px !important;
    height: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
  }
  
  .navbar .logo img {
    width: 120px !important;
    height: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
  }
}

/* Social Buttons in Hamburger Menu */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: var(--weight-bold);
  font-size: 1.4rem;
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc, #00a8ff);
  color: white;
}

.telegram-btn:hover {
  background: linear-gradient(135deg, #0077b3, #0099e6);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.x-btn {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
}

.x-btn:hover {
  background: linear-gradient(135deg, #1a1a1a, #404040);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn ion-icon {
  font-size: 1.8rem;
}

/* Marketing Section Styles */
.marketing-section {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe4b3 50%, #ffdab9 100%);
  position: relative;
  overflow: hidden;
}

.marketing-section .section-subtitle {
  color: #d2691e;
  font-weight: var(--weight-bold);
}

.marketing-section .section-title {
  color: #8B4513;
  margin-bottom: 20px;
}

.marketing-section .section-text {
  color: #654321;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.marketing-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(210, 105, 30, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.marketing-card::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.5s ease;
}

.marketing-card:hover::before {
  left: 100%;
}

.marketing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(210, 105, 30, 0.5);
}

.marketing-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.marketing-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
}

.marketing-card .card-icon ion-icon {
  font-size: 2.5rem;
  color: white;
}

.marketing-card h3 {
  color: #8B4513;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
}

.marketing-card p {
  color: #654321;
  font-size: 1.3rem;
  line-height: 1.4;
}

.marketing-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.marketing-cta .btn {
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.marketing-cta .btn:hover {
  background: linear-gradient(135deg, #b35900, #d2691e);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
}

/* Background Shapes for Marketing Section */
.marketing-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.marketing-section .shape-1 {
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
}

.marketing-section .shape-2 {
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 120px;
}

.marketing-section .shape-3 {
  top: 50%;
  right: 15%;
  width: 100px;
  height: 100px;
}

.marketing-section .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mission & Vision section improvements */
.mission-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.mission-block, .vision-block {
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.1), rgba(192, 57, 43, 0.1));
  border: 2px solid rgba(210, 105, 30, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mission-block::before, .vision-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.mission-block:hover::before, .vision-block:hover::before {
  left: 100%;
}

.mission-block:hover, .vision-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(210, 105, 30, 0.6);
}

.mission-block h3, .vision-block h3 {
  color: #d2691e;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-block p, .vision-block p {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Standardized Section Spacing */
.section {
  padding-block: 80px 60px;
}

.section-subtitle {
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 25px;
}

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

/* Mobile Responsive for Marketing Section */
@media (max-width: 1200px) {
  .marketing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .marketing-card {
    padding: 30px;
  }
  
  .marketing-card h3 {
    font-size: 1.8rem;
  }
  
  .marketing-card p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .marketing-section .section-text {
    font-size: 1.6rem;
    padding: 0 20px;
  }
  
  .marketing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .marketing-card {
    padding: 25px;
  }
  
  .marketing-card h3 {
    font-size: 1.8rem;
  }
  
  .marketing-card p {
    font-size: 1.4rem;
  }
  
  .marketing-section .shape {
    display: none;
  }
  
  /* Mission blocks responsive */
  .mission-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-block, .vision-block {
    padding: 30px;
  }
  
  .mission-block h3, .vision-block h3 {
    font-size: 1.8rem;
  }
  
  .mission-block p, .vision-block p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .marketing-section .section-text {
    font-size: 1.4rem;
  }
  
  .marketing-card {
    padding: 20px;
  }
  
  .marketing-card h3 {
    font-size: 1.6rem;
  }
  
  .marketing-card p {
    font-size: 1.3rem;
  }
  
  .marketing-cta .btn {
    font-size: 1.6rem;
    padding: 12px 30px;
  }
  
  .mission-block, .vision-block {
    padding: 25px;
  }
  
  .mission-block h3, .vision-block h3 {
    font-size: 1.6rem;
  }
  
  .mission-block p, .vision-block p {
    font-size: 1.2rem;
  }
}

/* Enhanced Mobile Preloader Optimization */
@media (max-width: 768px) {
  .preload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
  }

  .preload .circle {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: rotate360 1s linear infinite;
    margin-bottom: 20px;
  }

  .preload .text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 90vw;
    word-wrap: break-word;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .preload .circle {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }

  .preload .text {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/* Map Styles */
.map-container {
  margin: 40px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #d2691e;
}

.stat-item h3 {
  color: #c0392b;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8B4513;
  margin: 0;
}

/* Custom Map Markers */
.custom-marker {
  background: transparent;
  border: none;
}

/* Map Legend Styles */
.map-legend {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #d2691e;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  min-width: 180px;
  font-family: inherit;
}

.legend-header {
  text-align: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(210, 105, 30, 0.3);
  padding-bottom: 8px;
}

.legend-header h4 {
  color: #d2691e;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.legend-controls {
  margin-bottom: 15px;
}

.legend-toggle {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #8B4513;
  font-weight: 500;
  transition: all 0.3s ease;
}

.legend-toggle:hover {
  color: #d2691e;
  transform: translateX(2px);
}

.legend-toggle input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #d2691e;
}

.toggle-icon {
  font-size: 1.4rem;
  margin-right: 5px;
}

.legend-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(210, 105, 30, 0.3);
  padding-top: 10px;
}

.nav-btn {
  background: linear-gradient(135deg, #d2691e, #cd853f);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #cd853f, #b8860b);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.nav-btn:active {
  transform: scale(0.95);
}

#location-counter {
  color: #8B4513;
  font-size: 1.1rem;
  font-weight: bold;
  min-width: 50px;
  text-align: center;
}

/* Enhanced popup styles for different types */
.pizza-popup .leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border: 2px solid #d2691e;
}

.map-popup .status-badge {
  font-size: 0.9rem;
  padding: 4px 10px;
}

/* Mobile responsive legend */
@media (max-width: 768px) {
  .map-legend {
    min-width: 160px;
    padding: 12px;
  }
  
  .legend-header h4 {
    font-size: 1.2rem;
  }
  
  .legend-toggle {
    font-size: 1.1rem;
  }
  
  .nav-btn {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
  
  #location-counter {
    font-size: 1rem;
    min-width: 45px;
  }
}

@media (max-width: 480px) {
  .map-legend {
    min-width: 140px;
    padding: 10px;
  }
  
  .legend-header h4 {
    font-size: 1.1rem;
  }
  
  .legend-toggle {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .toggle-icon {
    font-size: 1.2rem;
  }
  
  .nav-btn {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }
  
  #location-counter {
    font-size: 0.9rem;
    min-width: 40px;
  }
}

.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

.marker-icon {
  font-size: 16px;
  color: white;
}

/* Map Popup Styles */
.pizza-popup .leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #d2691e;
}

.map-popup h3 {
  color: #c0392b;
  margin: 0 0 10px 0;
  font-size: 1.3rem;
}

.location-city {
  color: #8B4513;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.status-active {
  background: #4CAF50;
  color: white;
}

.status-progress {
  background: #ff9800;
  color: white;
}

.status-planned {
  background: #757575;
  color: white;
}

.location-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 15px 0;
}

.location-stats .stat {
  text-align: center;
  padding: 10px;
  background: rgba(139, 69, 19, 0.1);
  border-radius: 8px;
}

.location-stats .stat strong {
  display: block;
  font-size: 1.2rem;
  color: #8B4513;
  font-weight: bold;
}

.location-stats .stat span {
  font-size: 0.8rem;
  color: #666;
}

.location-description {
  margin: 15px 0;
  line-height: 1.5;
  color: #333;
}

.established {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  margin: 10px 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background: #d2691e;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #8B4513;
  transform: translateY(-2px);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Pizza Builder Section - Consistent across desktop and mobile */
.pizza-builder-section {
  position: relative;
  background: #fff8e1;
  height: 120vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
}

/* Pizza-themed text colors for the section */
.pizza-builder-section .section-subtitle {
  color: #d2691e !important;
}

.pizza-builder-section .section-title {
  color: #c0392b !important;
}

.pizza-builder-section .section-text {
  color: #8B4513 !important;
}

#pizza-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-top: 60px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.pizza-layer {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: center center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#crust {
  background: #d2691e;
  border-radius: 50%;
  box-shadow: inset 0 0 30px #b35900;
  z-index: 1;
}

#sauce {
  background: #c0392b;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  top: 20px;
  left: 20px;
  box-shadow: inset 0 0 15px #8e2a23;
  z-index: 2;
}

#cheese {
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  border-radius: 50%;
  width: 240px;
  height: 240px;
  top: 30px;
  left: 30px;
  box-shadow: inset 0 0 15px #d1b64d;
  z-index: 3;
}

#toppings {
  z-index: 4;
}

/* Responsive pepperoni positioning */
.pepperoni {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #c0392b;
  border-radius: 50%;
  box-shadow: inset 0 0 5px #8e2a23;
  z-index: 4;
}

/* Ensure pepperoni stay within sauce layer boundaries and scale properly */
#toppings .pepperoni {
  max-width: 35px;
  max-height: 35px;
  width: 35px;
  height: 35px;
}

/* Responsive pepperoni scaling for different screen sizes */
@media (max-width: 768px) {
  #toppings .pepperoni {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
  }
}

@media (max-width: 480px) {
  #toppings .pepperoni {
    width: 25px;
    height: 25px;
    max-width: 25px;
    max-height: 25px;
  }
}

/* Layer info styles - positioned in corners around pizza */
.layer-info {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #d2691e;
  padding: 35px;
  border-radius: 20px;
  max-width: 400px;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.layer-info.active {
  opacity: 1;
}

.layer-info h4 {
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  color: #f7dc6f;
  font-weight: bold;
}

.layer-info p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d2691e;
}

/* Corner positioning around the pizza */
#crust-info {
  top: 45%;
  right: 20%;
  transform: none;
}

#sauce-info {
  top: 45%;
  left: 20%;
  transform: none;
}

#cheese-info {
  bottom: 15%;
  left: 20%;
  transform: none;
}

#toppings-info {
  bottom: 15%;
  right: 20%;
  transform: none;
}

/* Mobile-specific touch improvements */
@media (max-width: 768px) {
  .pizza-builder-section {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
  }
  
  .layer-info {
    min-height: 60px;
    touch-action: manipulation;
  }
  
  .pizza-builder-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .pizza-builder-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .pizza-builder-section .section-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Prevent zoom on input focus for mobile */
@media (max-width: 768px) {
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Additional mobile optimizations for pizza builder */
@media (max-width: 768px) {
  .pizza-builder-section {
    min-height: 100vh;
    height: auto;
    padding: 10px;
  }
  
  .pizza-layer {
    touch-action: pan-y;
  }
  
  .layer-info {
    position: relative !important;
    margin: 10px auto !important;
    max-width: 90% !important;
    transform: none !important;
  }
  
  #crust-info, #sauce-info, #cheese-info, #toppings-info {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 10px auto !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .pizza-builder-section {
    padding: 5px;
  }
  
  #pizza-container {
    width: 180px;
    height: 180px;
    margin-top: 20px;
  }
  
  .pizza-layer {
    width: 180px;
    height: 180px;
  }
  
  #sauce {
    width: 160px;
    height: 160px;
    top: 10px;
    left: 10px;
  }
  
  #cheese {
    width: 140px;
    height: 140px;
    top: 20px;
    left: 20px;
  }
  
  .layer-info {
    padding: 15px;
    font-size: 0.9rem;
  }
  
  .layer-info h4 {
    font-size: 1.2rem;
  }
  
  .layer-info p {
    font-size: 0.8rem;
  }
} 

/* Responsive adjustments - Only styling changes, same functionality */
@media (max-width: 768px) {
  .pizza-builder-section {
    height: 110vh;
  }
  
  #pizza-container {
    width: 250px;
    height: 250px;
    margin-top: 60px;
  }
  
  .pizza-layer {
    width: 250px;
    height: 250px;
  }
  
  #sauce {
    width: 220px;
    height: 220px;
    top: 15px;
    left: 15px;
  }
  
  #cheese {
    width: 200px;
    height: 200px;
    top: 25px;
    left: 25px;
  }
  
  .layer-info {
    max-width: 350px;
    padding: 30px;
  }
  
  .layer-info h4 {
    font-size: 1.6rem;
  }
  
  .layer-info p {
    font-size: 1.1rem;
  }
  
  /* Adjust corner positioning for smaller screens */
  #crust-info {
    top: 40%;
    right: 15%;
  }
  
  #sauce-info {
    top: 40%;
    left: 15%;
  }
  
  #cheese-info {
    bottom: 20%;
    left: 15%;
  }
  
  #toppings-info {
    bottom: 20%;
    right: 15%;
  }
}

@media (max-width: 480px) {
  .pizza-builder-section {
    height: auto;
    min-height: 100vh;
  }
  
  #pizza-container {
    width: 200px;
    height: 200px;
    margin-top: 40px;
  }
  
  .pizza-layer {
    width: 200px;
    height: 200px;
  }
  
  #sauce {
    width: 180px;
    height: 180px;
    top: 10px;
    left: 10px;
  }
  
  #cheese {
    width: 160px;
    height: 160px;
    top: 20px;
    left: 20px;
  }
  
  .layer-info {
    position: relative;
    margin: 10px auto !important;
    max-width: 100%;
    transform: none !important;
    padding: 25px;
  }
  
  .layer-info h4 {
    font-size: 1.4rem;
  }
  
  .layer-info p {
    font-size: 1rem;
  }
  
  /* Stack layer info vertically on mobile */
  #crust-info, #sauce-info, #cheese-info, #toppings-info {
    margin: 10px auto !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
} 

/* Desktop-only shapes */
.desktop-only {
  display: none;
}

@media (min-width: 1200px) {
  .desktop-only {
    display: block;
  }
}

/* Shape positioning for different sections */
.hero .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero .shape-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
}

.hero .shape-2 {
  bottom: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
}

.marketing-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.marketing-section .shape-1 {
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
}

.marketing-section .shape-2 {
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 120px;
}

.marketing-section .shape-3 {
  top: 50%;
  right: 15%;
  width: 100px;
  height: 100px;
}

.pizza-builder-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.pizza-builder-section .shape-1 {
  top: 20%;
  left: 5%;
  width: 130px;
  height: 130px;
}

.pizza-builder-section .shape-2 {
  bottom: 20%;
  right: 5%;
  width: 110px;
  height: 110px;
}

.about .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.about .shape-1 {
  top: 15%;
  left: 5%;
  width: 140px;
  height: 140px;
}

.about .shape-2 {
  bottom: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
}

.shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Badge stamp styling */
.badge-stamp {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  z-index: 10;
  transform: rotate(-5deg);
}

.stamp-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 2px solid #d2691e;
  background: white;
  padding: 3px;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.stamp-image:hover {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Mobile responsiveness for stamp */
@media (max-width: 768px) {
  .badge-stamp {
    width: 150px;
    height: 150px;
    top: -15px;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .badge-stamp {
    width: 120px;
    height: 120px;
    top: -10px;
    right: -10px;
  }
}

/* About banner positioning */
.about-banner {
  position: relative;
  margin: 40px auto;
  max-width: 580px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-banner img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile responsiveness for about section */
@media (max-width: 768px) {
  .about .container {
    padding: 0 20px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .about .section-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .about .section-text {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .about-banner {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }
  
  .about-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .mission-blocks {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  
  .mission-block, .vision-block {
    padding: 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .mission-block h3, .vision-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .mission-block p, .vision-block p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  
  .about .contact-number {
    font-size: 1.8rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .about .container {
    padding: 0 15px;
  }
  
  .about .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .about .section-text {
    font-size: 1.4rem;
    padding: 0 5px;
    margin-bottom: 25px;
  }
  
  .about-banner {
    margin: 15px auto;
    padding: 0 5px;
  }
  
  .mission-blocks {
    padding: 0 5px;
    gap: 15px;
  }
  
  .mission-block, .vision-block {
    padding: 15px;
  }
  
  .mission-block h3, .vision-block h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .mission-block p, .vision-block p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .about .contact-number {
    font-size: 1.6rem;
  }
  
  .about .contact-label {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .about .container {
    padding: 0 10px;
  }
  
  .about .section-title {
    font-size: 1.8rem;
  }
  
  .about .section-text {
    font-size: 1.3rem;
    padding: 0;
  }
  
  .about-banner {
    padding: 0;
  }
  
  .mission-blocks {
    padding: 0;
  }
  
  .mission-block, .vision-block {
    padding: 12px;
  }
  
  .mission-block h3, .vision-block h3 {
    font-size: 1.5rem;
  }
  
  .mission-block p, .vision-block p {
    font-size: 1.2rem;
  }
}

/* Maps section shapes */
.maps-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.maps-section .shape-1 {
  top: 15%;
  left: 5%;
  width: 140px;
  height: 140px;
}

.maps-section .shape-2 {
  bottom: 20%;
  right: 5%;
  width: 120px;
  height: 120px;
}

/* Gallery section shapes */
.gallery-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.gallery-section .shape-1 {
  top: 10%;
  right: 5%;
  width: 130px;
  height: 130px;
}

.gallery-section .shape-2 {
  bottom: 15%;
  left: 5%;
  width: 110px;
  height: 110px;
}

/* Responsive adjustments for shapes */
@media (max-width: 1200px) {
  .shape {
    display: none;
  }
} 

/* Footer section shapes */
.footer .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.footer .shape-1 {
  top: 15%;
  left: 5%;
  width: 130px;
  height: 130px;
}

.footer .shape-2 {
  bottom: 20%;
  right: 5%;
  width: 110px;
  height: 110px;
}

/* Footer Copyright Text Styling */
.footer .copyright,
.footer-bottom .copyright,
.copyright {
  color: #000000 !important;
  font-weight: var(--weight-bold) !important;
  font-size: 1.8rem !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  animation: none !important;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  line-height: 1.4 !important;
}

/* Footer link styling */
.footer-link {
  color: #000000 !important;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #d2691e !important;
  transform: translateY(-2px);
}

.footer .contact-link {
  color: #000000 !important;
  transition: all 0.3s ease;
}

.footer .contact-link:hover {
  color: #d2691e !important;
  transform: translateY(-2px);
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
  }
  to {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.9));
  }
}

.footer .copyright:hover,
.footer-bottom .copyright:hover,
.copyright:hover {
  animation: none;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  transform: scale(1.02);
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

/* Partners Section Styles */
.partners-section {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe4b3 50%, #ffdab9 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.partners-section .section-subtitle {
  color: #d2691e;
  font-weight: var(--weight-bold);
}

.partners-section .section-title {
  color: #8B4513;
  margin-bottom: 20px;
}

.partners-section .section-text {
  color: #654321;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Partners Carousel */
.partners-carousel {
  overflow: hidden;
  position: relative;
  margin: 40px 0;
}

.partners-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.partner-item {
  flex-shrink: 0;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border: 2px solid rgba(210, 105, 30, 0.3);
  border-radius: 15px;
  padding: 15px;
  min-width: 300px;
  height: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(210, 105, 30, 0.6);
}

.partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.partner-logo {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
  transform: scale(1.15);
}

/* Partners section shapes */
.partners-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.partners-section .shape-1 {
  top: 10%;
  left: 5%;
  width: 140px;
  height: 140px;
}

.partners-section .shape-2 {
  bottom: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
}

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

/* Responsive adjustments for partners section */
@media (max-width: 1200px) {
  .partners-section .shape {
    display: none;
  }
  
  .partner-item {
    min-width: 220px;
    height: 130px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-section .section-text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .partner-item {
    min-width: 180px;
    height: 100px;
    margin: 0 15px;
    padding: 15px;
  }
  
  .partners-track {
    animation-duration: 20s;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 40px 0;
  }
  
  .partners-section .section-text {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .partner-item {
    min-width: 150px;
    height: 85px;
    margin: 0 10px;
    padding: 10px;
  }
  
  .partners-track {
    animation-duration: 15s;
  }
}

/* Exchanges Section Styles */
.exchanges-section {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe4b3 50%, #ffdab9 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.exchanges-section .section-subtitle {
  color: #d2691e;
  font-weight: var(--weight-bold);
}

.exchanges-section .section-title {
  color: #8B4513;
  margin-bottom: 20px;
}

.exchanges-section .section-text {
  color: #654321;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Exchanges Carousel */
.exchanges-carousel {
  overflow: hidden;
  position: relative;
  margin: 40px 0;
}

.exchanges-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

.exchange-item {
  flex-shrink: 0;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border: 2px solid rgba(210, 105, 30, 0.3);
  border-radius: 15px;
  padding: 15px;
  min-width: 300px;
  height: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.exchange-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(210, 105, 30, 0.6);
}

.exchange-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.exchange-logo {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.exchange-item:hover .exchange-logo {
  transform: scale(1.15);
}

/* Exchanges section shapes */
.exchanges-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.exchanges-section .shape-1 {
  top: 10%;
  left: 5%;
  width: 140px;
  height: 140px;
}

.exchanges-section .shape-2 {
  bottom: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
}

/* Responsive adjustments for exchanges section */
@media (max-width: 1200px) {
  .exchanges-section .shape {
    display: none;
  }
  
  .exchange-item {
    min-width: 250px;
    height: 150px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .exchanges-section {
    padding: 60px 0;
  }
  
  .exchanges-section .section-text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .exchange-item {
    min-width: 200px;
    height: 120px;
    margin: 0 15px;
    padding: 15px;
  }
  
  .exchanges-track {
    animation-duration: 18s;
  }
}

@media (max-width: 480px) {
  .exchanges-section {
    padding: 40px 0;
  }
  
  .exchanges-section .section-text {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .exchange-item {
    min-width: 160px;
    height: 100px;
    margin: 0 10px;
    padding: 10px;
  }
  
  .exchanges-track {
    animation-duration: 12s;
  }
} 

/* Video Section Styles */
.video-section {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe4b3 50%, #ffdab9 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.video-section .section-subtitle {
  color: #d2691e;
  font-weight: var(--weight-bold);
}

.video-section .section-title {
  color: #8B4513;
  margin-bottom: 20px;
}

.video-section .section-text {
  color: #654321;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Video Carousel */
.video-carousel {
  overflow: hidden;
  position: relative;
  margin: 40px 0;
  min-height: 300px;
  z-index: 1;
  isolation: isolate;
  pointer-events: auto;
}

/* Ensure no overlays block the buttons */
.video-carousel::before,
.video-carousel::after {
  display: none !important;
  pointer-events: none !important;
}

.video-track {
  display: flex;
  width: fit-content;
  transition: transform 0.5s ease;
  transform: translateX(0);
  /* Debug: add a border to see the track */
  border: 2px solid transparent;
}

/* Debug: highlight video items */
.video-item {
  border: 1px solid rgba(210, 105, 30, 0.3);
}

/* Add visual indicator for current position */
.video-item.active {
  border: 2px solid rgba(210, 105, 30, 1);
  box-shadow: 0 0 10px rgba(210, 105, 30, 0.5);
}

.video-item {
  flex-shrink: 0;
  margin: 0 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(210, 105, 30, 0.2);
  border-radius: 15px;
  padding: 20px;
  min-width: 400px;
  max-width: 400px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(210, 105, 30, 0.5);
}

/* Video Navigation Buttons */
.video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(210, 105, 30, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.3s ease;
  z-index: 9999;
  font-size: 24px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  min-width: 44px;
  /* Ensure button is clickable on all devices */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.video-nav-btn:hover {
  background: rgba(210, 105, 30, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.4);
}

.video-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.video-nav-btn.prev {
  left: 10px;
  position: absolute;
}

.video-nav-btn.next {
  right: 10px;
  position: absolute;
}

.video-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.video-nav-btn:disabled:hover {
  transform: translateY(-50%);
  background: rgba(210, 105, 30, 0.9);
  box-shadow: none;
}

/* Focus states for accessibility */
.video-nav-btn:focus {
  outline: 2px solid rgba(210, 105, 30, 1);
  outline-offset: 2px;
}

.video-nav-btn:focus-visible {
  outline: 2px solid rgba(210, 105, 30, 1);
  outline-offset: 2px;
}

/* Ensure buttons are always on top */
.video-nav-btn {
  position: absolute !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* Desktop-specific fixes */
@media (min-width: 769px) {
  .video-nav-btn {
    min-width: 50px;
    min-height: 50px;
    cursor: pointer !important;
  }
  
  .video-nav-btn:hover {
    background: rgba(210, 105, 30, 1) !important;
    transform: translateY(-50%) scale(1.1) !important;
  }
}

/* Ensure buttons are clickable on mobile */
@media (max-width: 768px) {
  .video-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: rgba(210, 105, 30, 0.3);
  }
  
  .video-nav-btn.prev {
    left: 5px;
    position: absolute;
  }
  
  .video-nav-btn.next {
    right: 5px;
    position: absolute;
  }
  
  /* Ensure no other elements interfere */
  .video-carousel * {
    pointer-events: auto;
  }
  
  .video-carousel .video-track {
    pointer-events: none;
  }
  
  .video-carousel .video-item {
    pointer-events: none;
  }
  
  .video-carousel .video-container {
    pointer-events: none;
  }
  
  .video-carousel .video-container iframe {
    pointer-events: none;
  }
}

.video-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.video-container iframe {
  width: 100%;
  height: 225px;
  border: none;
  border-radius: 10px;
}

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

.video-title {
  color: #8B4513;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
}

.video-description {
  color: #654321;
  font-size: 1.3rem;
  line-height: 1.4;
}

/* Video section shapes */
.video-section .shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.video-section .shape-1 {
  top: 10%;
  left: 5%;
  width: 140px;
  height: 140px;
}

.video-section .shape-2 {
  bottom: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
}

/* Responsive adjustments for video section */
@media (max-width: 1200px) {
  .video-section .shape {
    display: none;
  }
  
  .video-item {
    min-width: 350px;
    max-width: 350px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-section .section-text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .video-item {
    min-width: 300px;
    max-width: 300px;
    margin: 0 15px;
    padding: 15px;
  }
  
  .video-container iframe {
    height: 180px;
  }
  
  .video-title {
    font-size: 1.4rem;
  }
  
  .video-description {
    font-size: 1.2rem;
  }
  
  .video-track {
    animation-duration: 30s;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 40px 0;
  }
  
  .video-section .section-text {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .video-item {
    min-width: 280px;
    max-width: 280px;
    margin: 0 10px;
    padding: 12px;
  }
  
  .video-container iframe {
    height: 160px;
  }
  
  .video-title {
    font-size: 1.3rem;
  }
  
  .video-description {
    font-size: 1.1rem;
  }
  
  .video-track {
    animation-duration: 25s;
  }
}

/* Buy $PIZZA Button Styling */
.buy-pizza-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
  color: white !important;
  border: 2px solid transparent;
}

.buy-pizza-btn:hover {
  background: linear-gradient(135deg, #e85a2e, #d47f1a) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.marketing-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.marketing-cta .btn {
  margin: 0 10px;
}

/* Pizza Statistics Section */
.pizza-stats-section {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe4b3 50%, #ffdab9 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.pizza-stats-section .section-subtitle {
  color: #d2691e !important;
  font-weight: var(--weight-bold);
}

.pizza-stats-section .section-title {
  color: #c0392b !important;
  margin-bottom: 20px;
}

.pizza-stats-section .section-text {
  color: #8B4513 !important;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(210, 105, 30, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(210, 105, 30, 0.6);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
}

.stat-icon ion-icon {
  font-size: 3rem;
  color: white;
}

.stat-title {
  color: #8B4513;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  color: #d2691e;
  font-size: 3rem;
  font-weight: var(--weight-bold);
  margin: 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
  color: #c0392b;
  transform: scale(1.05);
}

.stat-label {
  color: #654321;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.contract-address {
  cursor: pointer;
  word-break: break-all;
  font-family: 'Courier New', monospace;
  font-size: 2.2rem !important;
  padding: 10px;
  border-radius: 8px;
  background: rgba(210, 105, 30, 0.1);
  transition: all 0.3s ease;
}

.contract-address:hover {
  background: rgba(210, 105, 30, 0.2);
  transform: scale(1.02);
}

.stats-disclaimer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.stats-disclaimer p {
  color: #8B4513;
  font-size: 1.3rem;
  margin: 0;
}

.stats-disclaimer a {
  color: #d2691e;
  text-decoration: none;
  font-weight: var(--weight-bold);
  transition: all 0.3s ease;
}

.stats-disclaimer a:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* Loading animation for stat values */
.stat-value.loading {
  position: relative;
}

.stat-value.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #d2691e;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .pizza-stats-section {
    padding: 60px 0;
  }

  .pizza-stats-section .section-text {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 20px;
  }

  .stat-card {
    padding: 25px 20px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .stat-icon ion-icon {
    font-size: 2.5rem;
  }

  .stat-title {
    font-size: 1.4rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .contract-address {
    font-size: 1.8rem !important;
    padding: 8px;
  }

  .marketing-cta {
    flex-direction: column;
    gap: 15px;
  }

  .marketing-cta .btn {
    margin: 0;
    width: 200px;
  }
}

@media (max-width: 480px) {
  .pizza-stats-section {
    padding: 40px 0;
  }

  .pizza-stats-section .section-text {
    font-size: 1.4rem;
    padding: 0 15px;
  }

  .stats-grid {
    margin: 25px 15px;
    gap: 15px;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .stat-icon ion-icon {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 1.3rem;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }

  .contract-address {
    font-size: 1.6rem !important;
    padding: 6px;
  }

  .stats-disclaimer {
    margin-top: 30px;
    padding: 15px;
  }

  .stats-disclaimer p {
    font-size: 1.2rem;
  }
}

/* Business Solutions Section */
.business-solutions-section {
  background: #fff8e1;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.business-solutions-section .section-subtitle {
  color: #d2691e !important;
  font-weight: var(--weight-bold);
}

.business-solutions-section .section-title {
  color: #8B4513 !important;
  margin-bottom: 20px;
}

.business-solutions-section .section-text {
  color: #654321 !important;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 50px;
}

.business-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(210, 105, 30, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(210, 105, 30, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(210, 105, 30, 0.6);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
}

.benefit-icon ion-icon {
  font-size: 3.5rem;
  color: white;
}

.benefit-title {
  color: #8B4513;
  font-size: 1.8rem;
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
}

.benefit-description {
  color: #654321;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.benefit-stat {
  background: rgba(210, 105, 30, 0.2);
  color: #d2691e;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  border: 1px solid rgba(210, 105, 30, 0.3);
  margin-top: auto;
}

.business-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 2px solid rgba(210, 105, 30, 0.3);
}

.cta-subtitle {
  color: #8B4513;
  font-size: 1.8rem;
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
}

.business-cta .btn {
  margin: 20px 0;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 18px 45px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.business-cta .btn:hover {
  background: linear-gradient(135deg, #cd853f, #b8860b);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(210, 105, 30, 0.4);
}

.cta-note {
  color: #654321;
  font-size: 1.3rem;
  margin: 15px 0 0;
  font-style: italic;
}

/* Business Solutions Page Specific Styles */
.hero-business {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.hero-business .hero-title {
  color: #ecf0f1;
  margin-bottom: 25px;
}

.hero-business .hero-text {
  color: #bdc3c7;
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 50px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: var(--weight-bold);
  color: #f39c12;
  margin-bottom: 5px;
}

.hero-stats .stat-label {
  color: #bdc3c7;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.step-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: var(--weight-bold);
  margin: 0 auto 20px;
}

.step-title {
  color: #2c3e50;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
}

.step-description {
  color: #34495e;
  font-size: 1.4rem;
  line-height: 1.5;
}

/* Business Type Cards */
.business-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.business-type-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.business-type-card.featured {
  border-color: #f39c12;
  transform: scale(1.05);
}

.business-type-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.business-type-card.featured:hover {
  transform: translateY(-8px) scale(1.07);
}

.type-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border-radius: 20px;
  font-weight: var(--weight-bold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.type-title {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
}

.type-subtitle {
  color: #7f8c8d;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.type-features {
  text-align: left;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #34495e;
}

.feature-icon {
  color: #f39c12;
  font-size: 1.5rem;
  margin-right: 15px;
}

.savings-highlight {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
}

.savings-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  margin-bottom: 5px;
}

.savings-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Rewards Grid */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.reward-feature {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.reward-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reward-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.reward-icon ion-icon {
  font-size: 3rem;
  color: white;
}

.reward-title {
  color: #2c3e50;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
}

.reward-description {
  color: #34495e;
  font-size: 1.4rem;
  line-height: 1.5;
}

/* Getting Started Section */
.getting-started-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  margin: 50px 0;
}

.startup-costs,
.revenue-streams {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 15px;
}

.startup-costs h3,
.revenue-streams h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: var(--weight-bold);
  margin-bottom: 25px;
}

.cost-breakdown {
  margin: 25px 0;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ecf0f1;
}

.cost-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: 2px solid #f39c12;
  margin-top: 15px;
  font-weight: var(--weight-bold);
  font-size: 1.2rem;
  color: #2c3e50;
}

.cost-note {
  color: #7f8c8d;
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 15px;
}

.revenue-list {
  list-style: none;
  padding: 0;
}

.revenue-list li {
  color: #34495e;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.revenue-list li::before {
  content: '✓';
  color: #f39c12;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 20px;
  color: white;
}

.cta-text {
  font-size: 1.8rem;
  font-weight: var(--weight-bold);
  margin-bottom: 25px;
}

.btn-large {
  padding: 20px 50px;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid white;
}

.btn-large:hover {
  background: white !important;
  color: #f39c12 !important;
}

.cta-subtext {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .business-solutions-section {
    padding: 60px 0;
  }

  .business-benefits {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 20px;
  }

  .benefit-card {
    padding: 30px 25px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .business-type-cards {
    grid-template-columns: 1fr;
  }

  .business-type-card.featured {
    transform: none;
  }

  .getting-started-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .business-solutions-section .section-text {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .benefit-card {
    padding: 25px 20px;
  }

  .hero-business {
    padding: 80px 0 60px;
  }

  .hero-stats .stat-number {
    font-size: 2.8rem;
  }
}