﻿/* =========================================
   MACLEAN STREET FISH SUPPLY - STYLES
   ========================================= */

/* =========================================
   IMPORTS & FONTS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
   CSS VARIABLES
   ========================================= */

:root {
  /* Ocean Theme Colors */
  --ocean-teal: #0EA5B7;
  --navy-dark: #0B1F2A;
  --accent-orange: #FF7A00;
  --light-bg: #F5FBFD;

  /* Additional Colors */
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --light-gray: #f8f9fa;
  --success-green: #10b981;
  --danger-red: #ef4444;

  /* Spacing */
  --section-padding: 80px 20px;

  /* Effects */
  /* Effects */
  --card-radius: 16px;
  /* Stronger shadow for better lift on white background */
  --card-shadow: 0 15px 35px rgba(11, 31, 42, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
  --nav-shadow: 0 4px 20px rgba(11, 31, 42, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.6);
}

/* =========================================
   GLOBAL STYLES
   ========================================= */

/* =========================================
   GLOBAL STYLES
   ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  /* Premium Ocean Mist Background */
  background-color: #f0f7f9;
  background-image:
    radial-gradient(at 0% 0%, rgba(14, 165, 183, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(11, 31, 42, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
  color: #222;
  line-height: 1.6;
}

/* =========================================
   NAVIGATION - Glassmorphism
   ========================================= */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(11, 31, 42, 0.97) 0%, rgba(14, 43, 58, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(14, 165, 183, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: linear-gradient(135deg, rgba(11, 31, 42, 0.98) 0%, rgba(14, 43, 58, 0.97) 100%);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(14, 165, 183, 0.4);
}

/* Nav Left - Logo and Brand Name */
.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.nav-left img {
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.nav-left img:hover {
  transform: scale(1.05) rotate(5deg);
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  display: none;
}

/* Nav Center - Links */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--ocean-teal);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--ocean-teal);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Right - Phone and Order Button */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 25px;
  background: rgba(14, 165, 183, 0.15);
}

.nav-phone:hover {
  color: white;
  background: rgba(14, 165, 183, 0.3);
  transform: translateY(-1px);
}

.nav-phone svg {
  flex-shrink: 0;
}

.nav-order-btn {
  background: linear-gradient(135deg, var(--ocean-teal), #0B9DAE);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 183, 0.3);
}

.nav-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 183, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: var(--ocean-teal);
}

/* =========================================
   HERO SECTION - Ocean Gradient
   ========================================= */

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--ocean-teal) 0%, #0B9DAE 50%, var(--navy-dark) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Animated wave overlay - Top floating bubble */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.3' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: oceanWave 20s linear infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: oceanWave 15s linear infinite reverse;
  z-index: 2;
}

@keyframes oceanWave {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

/* Shimmer overlay */
.hero-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 70%);
  animation: shimmer 8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: white;
  padding: 15px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.1);
  animation: heroLogoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards,
    gentleFloat 4s ease-in-out 1.2s infinite;
  transition: transform 0.3s ease;
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-8px) rotate(2deg);
  }

  75% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes heroLogoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero-logo:hover {
  transform: scale(1.05) rotate(5deg);
}

.hero-content h1 {
  animation: heroSlideUp 0.8s ease 0.3s backwards;
}

.hero-content>p:first-of-type {
  animation: heroSlideUp 0.8s ease 0.5s backwards;
}

.hero-content>p:nth-of-type(2) {
  animation: heroFadeIn 0.8s ease 0.6s backwards;
}

@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .cta-btn:nth-child(1) {
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s backwards;
}

.hero-buttons .cta-btn:nth-child(2) {
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

.hero-buttons .cta-btn:nth-child(3) {
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s backwards;
}

.hero-buttons .cta-btn:nth-child(4) {
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s backwards;
}

@keyframes heroButtonPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cta-btn {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 25px rgba(255, 122, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 122, 0, 0.5);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 13px 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* ORDER NOW BUTTON */
.order-btn {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  position: relative;
  overflow: hidden;
}

.order-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.order-btn:hover::before {
  width: 300px;
  height: 300px;
}

.order-btn:hover {
  background: #E66500;
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.5);
  transform: translateY(-2px);
}

.order-btn:active {
  transform: translateY(0);
}

/* RATING BADGE */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: ratingBadgeBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s backwards;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

@keyframes ratingBadgeBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }

  60% {
    transform: translateY(-5px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rating-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: white;
}

.rating-badge .stars {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-badge .rating-text {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

/* STATUS BADGE */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.status-badge.open {
  background: rgba(16, 185, 129, 0.15);
  color: var(--status-green-dark);
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-badge.open .dot {
  background: var(--status-green);
}

.status-badge.closed .dot {
  background: #ef4444;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   SECTIONS
   ========================================= */

section {
  padding: var(--section-padding);
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--ocean-teal);
  border-radius: 2px;
}

/* =========================================
   SECTION HEADERS
   ========================================= */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  font-weight: 400;
}

/* =========================================
   WHY CHOOSE US SECTION - Professional Redesign
   ========================================= */

.why-love-us {
  background: white;
  padding: 80px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border: 2px solid rgba(14, 165, 183, 0.15);
  border-radius: var(--card-radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(14, 165, 183, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean-teal), var(--accent-orange));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(14, 165, 183, 0.2);
  border-color: var(--ocean-teal);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(14, 165, 183, 0.1);
  line-height: 1;
}

.feature-icon-pro {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-bg), rgba(14, 165, 183, 0.1));
  border-radius: 50%;
  color: var(--ocean-teal);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-pro {
  transform: scale(1.1) rotateY(360deg);
  background: linear-gradient(135deg, var(--ocean-teal), #0B9DAE);
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   LOCATION SECTION - Professional Redesign
   ========================================= */

.location-section {
  background: var(--light-bg);
  padding: 80px 20px;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(14, 165, 183, 0.15);
}

.location-info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-info h3 {
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--ocean-teal);
  border-radius: 2px;
}

.address-text,
.contact-text {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
}

.contact-text a {
  color: var(--ocean-teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #0B9DAE;
  text-decoration: underline;
}

.location-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-directions,
.btn-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-directions {
  background: var(--ocean-teal);
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 183, 0.3);
}

.btn-directions:hover {
  background: #0B9DAE;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 183, 0.4);
}

.btn-call {
  background: white;
  color: var(--navy-dark);
  border: 2px solid var(--ocean-teal);
}

.btn-call:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

.location-map {
  min-height: 500px;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .location-container {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding: 30px 25px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-map {
    min-height: 350px;
  }
}

/* =========================================
   OPENING HOURS SECTION - Redesigned
   ========================================= */

.hours-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  padding: 80px 20px;
}

.hours-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(14, 165, 183, 0.12);
  border: 2px solid rgba(14, 165, 183, 0.1);
}

.hours-header {
  text-align: center;
  margin-bottom: 40px;
}

.hours-header h2 {
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
  padding-bottom: 0;
}

.hours-header h2::after {
  display: none;
}

.hours-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.hours-header .status-badge {
  margin: 15px auto 0;
  display: inline-flex;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.hours-item {
  background: var(--light-bg);
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hours-item:hover {
  transform: translateX(5px);
  background: white;
  border-color: var(--ocean-teal);
  box-shadow: 0 5px 20px rgba(14, 165, 183, 0.15);
}

.hours-item.closed-day {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.hours-item.closed-day:hover {
  border-color: var(--danger-red);
}

.day-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-dark);
}

.day-time {
  font-weight: 500;
  color: var(--ocean-teal);
  font-size: 1rem;
}

.closed-text {
  color: var(--danger-red);
  font-weight: 600;
}

/* Old styles - keeping for backward compatibility */
.hours-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.6s ease-out;
}

.hours-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hours-table {
  width: 100%;
  margin-top: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #333;
}

.time {
  color: #666;
}

.closed {
  color: #ef4444;
  font-weight: 500;
}

/* =========================================
   LOCATION SECTION
   ========================================= */

.location-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.6s ease-out 0.2s backwards;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.location-card .address {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.location-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-button-container {
  text-align: center;
  margin-top: 20px;
}

.map-link {
  display: inline-block;
  background: var(--ocean-teal);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(14, 165, 183, 0.3);
}

.map-link:hover {
  background: #0B9DAE;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(14, 165, 183, 0.4);
}

/* =========================================
   FOOTER - Redesigned
   ========================================= */

footer {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0A1820 100%);
  color: white;
  padding: 60px 20px 20px;
  border-top: 4px solid var(--ocean-teal);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--ocean-teal);
  box-shadow: 0 5px 20px rgba(14, 165, 183, 0.3);
  flex-shrink: 0;
}

.footer-shop-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin: 0;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-rating {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
}

.footer-heading {
  color: var(--ocean-teal);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links li a svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-links li a:hover {
  color: var(--ocean-teal);
  transform: translateX(5px);
}

.footer-links li a:hover svg {
  opacity: 1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--ocean-teal);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.footer-social .social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ocean-teal);
  color: white;
  transform: translateX(5px);
}

.footer-social .social-link.facebook:hover {
  border-color: #1877f2;
}

.footer-social .social-link.instagram:hover {
  border-color: #e4405f;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.dev-credit {
  font-size: 0.85rem !important;
}

.dev-link {
  color: var(--ocean-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.dev-link:hover {
  color: #0B9DAE;
  text-decoration: underline;
}

/* Old footer styles - keeping for compatibility */
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer p {
  margin: 5px 0;
  opacity: 0.9;
}

.footer-link {
  color: var(--ocean-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0B9DAE;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .nav-brand {
    display: block;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  section {
    max-width: 960px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  section {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  nav {
    padding: 12px 20px;
  }

  .nav-left img {
    height: 42px;
  }

  .nav-brand {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-phone span {
    display: none;
  }

  .nav-phone {
    padding: 8px;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .nav-order-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 85vh;
    padding: 80px 20px 50px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .order-btn {
    padding: 14px 40px;
    font-size: 1rem;
  }

  .rating-badge {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  section {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .hours-card {
    padding: 30px 20px;
  }

  .location-card {
    padding: 25px 20px;
  }

  iframe {
    height: 300px;
  }

  .map-link {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .social-media {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }
}

/* Mobile Landscape (481px - 575px) */
@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.85rem;
  }
}

/* Mobile Portrait (max 480px) */
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
  }

  .nav-left img {
    height: 38px;
  }

  .nav-center {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-phone {
    padding: 6px;
    width: 36px;
    height: 36px;
  }

  .nav-order-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 70px 15px 40px;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .order-btn {
    padding: 12px 32px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .rating-badge {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .rating-badge .stars {
    font-size: 0.9rem;
  }

  section {
    padding: 50px 15px;
  }

  section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .hours-card {
    padding: 25px 15px;
  }

  .hours-row {
    font-size: 0.95rem;
    padding: 10px 0;
  }

  .status-badge {
    font-size: 0.85rem;
    padding: 7px 14px;
  }

  .location-card {
    padding: 20px 15px;
  }

  .address {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .address strong {
    font-size: 1.25rem;
  }

  iframe {
    height: 250px;
    border-radius: 12px;
  }

  .map-link {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .social-media {
    gap: 12px;
    margin: 20px 0;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  footer p {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (max 360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .order-btn {
    padding: 10px 28px;
    font-size: 0.9rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .hours-row {
    font-size: 0.9rem;
  }
}

/* =========================================
   WHY CHOOSE US - INTERNATIONAL PREMIUM DESIGN
   ========================================= */

.why-choose-section {
  background: linear-gradient(180deg, #F8FBFF 0%, white 50%, #F5FBFD 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.why-choose-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Premium Header */
.section-header-premium {
  text-align: center;
  margin-bottom: 70px;
}

.pre-heading {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean-teal);
  background: linear-gradient(90deg, rgba(14, 165, 183, 0.1), rgba(14, 165, 183, 0.05));
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(14, 165, 183, 0.2);
}

.section-header-premium h2 {
  font-size: 3rem;
  color: var(--navy-dark);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.section-subtitle-premium {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Premium Feature Cards Grid */
.features-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.feature-premium-card {
  background: white;
  border-radius: 24px;
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 183, 0.1);
  box-shadow: 0 10px 40px rgba(14, 165, 183, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glow Effect */
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 183, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-premium-card:hover .card-glow {
  opacity: 1;
}

.feature-premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(14, 165, 183, 0.15),
    0 0 0 1px rgba(14, 165, 183, 0.3);
}

/* Feature Header */
.feature-premium-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ocean-teal), #0B9DAE);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(14, 165, 183, 0.3);
  transition: transform 0.3s ease;
}

.feature-premium-card:hover .feature-badge {
  transform: scale(1.1) rotate(5deg);
}

.feature-premium-header h3 {
  font-size: 1.6rem;
  color: var(--navy-dark);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Feature Description */
.feature-premium-desc {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Statistics */
.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(14, 165, 183, 0.1);
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(14, 165, 183, 0.1);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ocean-teal);
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #0c6b77;
  /* Darker teal for visibility */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  /* Bolder */
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 50px 20px 20px;
  border-top: 1px solid rgba(14, 165, 183, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  border: 1px solid rgba(14, 165, 183, 0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  box-shadow: 0 4px 12px rgba(11, 31, 42, 0.08);
  /* Darker shadow */
  transition: all 0.3s ease;
}

.trust-badge svg {
  color: var(--ocean-teal);
  flex-shrink: 0;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 165, 183, 0.15);
  border-color: var(--ocean-teal);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header-premium h2 {
    font-size: 2.2rem;
  }

  .features-premium-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-premium-card {
    padding: 35px 30px;
  }

  .trust-badges {
    gap: 15px;
  }
}

/* =========================================
   OPENING HOURS - INTERNATIONAL PREMIUM DESIGN
   ========================================= */

.hours-premium-section {
  background: linear-gradient(180deg, white 0%, #F8FBFF 100%);
  padding: 100px 20px;
  position: relative;
}

.hours-premium-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.hours-premium-header {
  text-align: center;
  margin-bottom: 60px;
}

.hours-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--ocean-teal), #0B9DAE);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 183, 0.3);
  animation: gentleFloat 3s ease-in-out infinite;
}

.hours-premium-header h2 {
  font-size: 2.8rem;
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hours-premium-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 25px;
}

/* Live Status Badge */
.status-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(14, 165, 183, 0.12);
  border: 2px solid rgba(14, 165, 183, 0.15);
  transition: all 0.3s ease;
}

.status-premium-badge.open {
  border-color: #10b981;
  background: linear-gradient(135deg, #ecfdf5, white);
}

.status-premium-badge.closed {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2, white);
}

.status-icon {
  flex-shrink: 0;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-premium-badge.open .status-icon {
  color: #10b981;
}

.status-premium-badge.closed .status-icon {
  color: #ef4444;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.status-premium-badge .status-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
}

/* Hours Grid */
.hours-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

/* Individual Hour Cards */
.hours-premium-card {
  background: white;
  border: 2px solid rgba(14, 165, 183, 0.1);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hours-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-teal), #0B9DAE);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.hours-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(14, 165, 183, 0.15);
  border-color: var(--ocean-teal);
}

.hours-premium-card:hover::before {
  transform: scaleX(1);
}

/* Closed Day Styling */
.hours-premium-card.closed-premium {
  background: #fafafa;
  border-color: #e5e7eb;
}

.hours-premium-card.closed-premium::before {
  background: #9ca3af;
}

.hours-premium-card.closed-premium:hover {
  border-color: #9ca3af;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Day Header */
.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(14, 165, 183, 0.1);
}

.day-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.3px;
}

.day-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
}

.closed-badge {
  background: linear-gradient(135deg, #fef2f2, #fecaca);
  color: #dc2626;
  border-color: #fca5a5;
}

/* Day Time */
.day-time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--text-gray);
  font-weight: 500;
}

.day-time svg {
  color: var(--ocean-teal);
  flex-shrink: 0;
}

.closed-time {
  color: #9ca3af;
  font-style: italic;
}

.closed-time svg {
  color: #dc2626;
}

/* Quick Info Banner */
.hours-info-banner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px;
  background: linear-gradient(135deg, rgba(14, 165, 183, 0.05), rgba(14, 165, 183, 0.02));
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 183, 0.1);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
}

.info-item svg {
  color: var(--ocean-teal);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hours-premium-header h2 {
    font-size: 2.2rem;
  }

  .hours-premium-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hours-info-banner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* =========================================
   HERO SECTION - INTERNATIONAL PREMIUM DESIGN
   ========================================= */

.hero-premium {
  background: linear-gradient(135deg, var(--ocean-teal) 0%, #0B1F2A 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

/* Keep existing wave animations */
.hero-premium::before,
.hero-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  background-repeat: repeat-x;
}

.hero-premium::before {
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.3' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: oceanWave 20s linear infinite;
  z-index: 1;
}

.hero-premium::after {
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: oceanWave 15s linear infinite reverse;
  z-index: 2;
}

.hero-premium-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 35px;
  animation: heroFadeIn 0.8s ease backwards;
}

.hero-badge svg {
  color: #fbbf24;
}

.hero-badge span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Logo */
.hero-logo-wrapper {
  position: relative;
  display: block;
  width: 160px;
  margin: 0 auto 30px;
  animation: heroLogoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.hero-premium-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  animation: gentleFloat 4s ease-in-out 1.2s infinite;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Title */
.hero-premium-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: heroSlideUp 0.8s ease 0.4s backwards;
}

.hero-title-highlight {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Tagline */
.hero-premium-tagline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
  animation: heroFadeIn 0.8s ease 0.6s backwards;
}

/* Location Badge */
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 45px;
  color: white;
  font-size: 0.95rem;
  animation: heroFadeIn 0.8s ease 0.7s backwards;
}

.hero-location-badge svg {
  color: var(--accent-orange);
  flex-shrink: 0;
}

/* CTA Buttons */
.hero-premium-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

/* Primary CTA */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-orange);
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 10px 35px rgba(255, 122, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

.button-shine {
  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;
}

.hero-cta-primary:hover .button-shine {
  left: 100%;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(255, 122, 0, 0.5);
}

/* Secondary Buttons */
.hero-secondary-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(0.9s + var(--delay, 0s)) backwards;
}

.hero-cta-secondary:nth-child(1) {
  --delay: 0s;
}

.hero-cta-secondary:nth-child(2) {
  --delay: 0.1s;
}

.hero-cta-secondary:nth-child(3) {
  --delay: 0.2s;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Trust Section */
.hero-trust-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: ratingBadgeBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s backwards;
}

/* Google Reviews Badge */
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.hero-trust-badge svg {
  flex-shrink: 0;
  display: block;
}

.hero-trust-badge:hover {
  transform: scale(1.05);
}

.trust-badge-content {
  text-align: left;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-number {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
}

.review-count {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Trust Divider */
.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Quick Stats */
.hero-quick-stats {
  display: flex;
  gap: 25px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 183, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.stat-icon svg {
  display: block;
  fill: currentColor;
}

.stat-icon svg path {
  fill: currentColor;
}

.stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: transparent;
}

.stat-value {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

.hero-scroll-indicator span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-premium-title {
    font-size: 2.8rem;
  }

  .hero-premium-tagline {
    font-size: 1.1rem;
  }

  .hero-trust-section {
    flex-direction: column;
    gap: 20px;
  }

  .trust-divider {
    width: 50px;
    height: 1px;
  }

  .hero-quick-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* =========================================
   PROFESSIONAL BACKGROUND PATTERNS
   ========================================= */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Significantly darker gradient for professional contrast */
  background: linear-gradient(135deg, #daedf2 0%, #cce0e8 100%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(at 0% 0%, rgba(14, 165, 183, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(11, 31, 42, 0.05) 0px, transparent 50%);
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}