/* Font Awesome Icons - Inline for performance */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2) format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-brands-400.woff2) format('woff2');
}

.fas, .fa-solid {
  font-family: 'Font Awesome 6 Free', system-ui, sans-serif;
  font-weight: 900;
}

.fab, .fa-brands {
  font-family: 'Font Awesome 6 Brands', system-ui, sans-serif;
  font-weight: 400;
}

.fas:before, .fab:before, .fa-solid:before, .fa-brands:before {
  font-synthesis: none;
}

.fas, .fab, .fa-solid, .fa-brands {
  min-width: 1em;
  display: inline-block;
  text-align: center;
}

/* CSS Variables */
:root {
  --primary-color: #fa4006;
  --primary-dark: #c73202;
  --link-color: #b82d00;
  --secondary-color: #011e44;
  --accent-color: #ff6b35;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --gray-900: #1a1a1a;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.375rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Inter-fallback', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Poppins-fallback', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* Links */
a {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
}

a:hover {
  color: var(--primary-dark);
  text-decoration-thickness: 3px;
  font-weight: 600;
}

a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  background-color: rgb(250 64 6 / .1);
  border-radius: 2px;
}

/* Container and Grid */
.container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.row > * {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333% !important; max-width: 33.333333% !important; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50% !important; max-width: 50% !important; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667% !important; max-width: 66.666667% !important; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100% !important; max-width: 100% !important; }

@media (max-width: 768px) {
  .col-4, .col-6, .col-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 1rem;
  }
}

/* Hero Section - Single Clean Rule */
.hero {
  background: linear-gradient(135deg, rgba(1, 30, 68, 0.15), rgba(250, 64, 6, 0.15)), url(../images/slider2.jpg) center/cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 4rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / .2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgb(0 0 0 / .3);
}

.hero p {
  color: rgb(255 255 255 / .9);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(255 255 255 / .95);
  margin-bottom: 1rem;
}

.hero-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.hero-cta {
  font-size: 1.25rem;
  color: rgb(255 255 255 / .9);
  margin-bottom: 1.5rem;
}

/* Header */
.header {
  background: var(--primary-color) !important;
  color: white !important;
  position: relative !important;
  z-index: 1000 !important;
  width: 100% !important;
}

.header-top {
  background: rgb(0 0 0 / .1) !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgb(255 255 255 / .1) !important;
}

.header-info {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.header-info-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.9rem !important;
  color: white !important;
}

.header-info-item a {
  color: white !important;
  text-decoration: none !important;
}

.header-info-item a:hover {
  color: rgb(255 255 255 / .8) !important;
  text-decoration: underline !important;
}

.navbar {
  padding: 15px 0 !important;
  background: var(--primary-color) !important;
}

.navbar .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
}

.navbar-brand img {
  height: 40px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block !important;
}

.navbar-nav {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
}

.navbar-nav li {
  position: relative !important;
  margin: 0 5px !important;
}

.navbar-nav a {
  display: block !important;
  padding: 10px 15px !important;
  color: white !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  border-radius: 4px !important;
}

.navbar-nav a:hover, .navbar-nav a.active {
  background: rgb(255 255 255 / .1) !important;
  color: white !important;
  text-decoration: none !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgb(0 0 0 / .1);
  display: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: var(--dark-color);
  padding: 8px 20px;
  display: block;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  color: white !important;
  padding: 3rem 0 1rem !important;
  margin-top: 4rem !important;
  width: 100% !important;
  clear: both !important;
}

.footer-content {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 2rem !important;
  margin-bottom: 2rem !important;
}

.footer-section {
  display: block !important;
}

.footer-section h4 {
  color: var(--primary-color) !important;
  margin-bottom: 1.5rem !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

.footer-section p {
  color: rgb(255 255 255 / .8) !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
}

.footer-section ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-section ul li {
  margin-bottom: 0.5rem !important;
}

.footer-section ul li a {
  color: rgb(255 255 255 / .7) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.footer-section ul li a:hover {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

.footer-info {
  color: rgb(255 255 255 / .8) !important;
}

.footer-info p {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0.75rem !important;
  color: rgb(255 255 255 / .8) !important;
}

.footer-info i {
  margin-right: 0.5rem !important;
  color: var(--primary-color) !important;
  width: 16px !important;
}

.working-hours {
  color: rgb(255 255 255 / .8) !important;
}

.time-slot {
  display: flex !important;
  justify-content: space-between !important;
  margin-bottom: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgb(255 255 255 / .1) !important;
}

.time-slot:last-child {
  border-bottom: none !important;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / .1) !important;
  padding-top: 1.5rem !important;
  text-align: center !important;
  color: rgb(255 255 255 / .6) !important;
}

.footer-bottom a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

.footer-bottom a:hover {
  text-decoration: underline !important;
}

.social-links {
  display: flex !important;
  gap: 1rem !important;
  margin-top: 1rem !important;
  justify-content: flex-start !important;
}

.social-links a {
  width: 40px !important;
  height: 40px !important;
  background: var(--primary-color) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 1.1rem !important;
}

.social-links a:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgb(250 64 6 / .3) !important;
}

/* Buttons */
.btn {
  display: inline-block !important;
  padding: 12px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: var(--border-radius) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  line-height: 1.5 !important;
}

.btn-primary {
  background: var(--primary-color) !important;
  color: white !important;
}

.btn-primary:hover {
  background: var(--primary-dark) !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgb(250 64 6 / .3) !important;
}

/* Sections */
.section {
  padding: 4rem 0 !important;
}

/* Loading */
.loading {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  transition: opacity 0.5s ease !important;
}

.loading.fade-out {
  opacity: 0;
}

.spinner {
  width: 50px !important;
  height: 50px !important;
  border: 4px solid var(--gray-200) !important;
  border-top: 4px solid var(--primary-color) !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Back to top */
.back-to-top {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  background: var(--primary-color) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  cursor: pointer !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 12px rgb(0 0 0 / .15) !important;
  text-decoration: none !important;
}

.back-to-top.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.back-to-top:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgb(0 0 0 / .2) !important;
  text-decoration: none !important;
}

.back-to-top i {
  color: white !important;
}

/* Utility Classes */
.text-white, .text-white *, .hero, .hero * {
  color: white !important;
}

.text-white a, .hero a {
  color: rgb(255 255 255 / .9) !important;
  text-decoration: underline !important;
}

.text-white a:hover, .hero a:hover {
  color: white !important;
}

/* Image utilities */
[style*="height: 15px"] img {
  height: 15px !important;
  width: auto !important;
  display: inline !important;
}

[style*="height: 80px"] img {
  height: 80px !important;
  width: auto !important;
  display: block !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-top {
    display: none !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .hero p {
    font-size: 1.1rem !important;
  }
  
  .hero-logo {
    height: 60px !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
  }
  
  .hero-price {
    font-size: 1.3rem !important;
  }
  
  .hero-cta {
    font-size: 1.1rem !important;
  }
  
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .social-links {
    justify-content: center !important;
  }
  
  .navbar-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    box-shadow: 0 4px 6px rgb(0 0 0 / .1) !important;
    display: none !important;
    flex-direction: column !important;
    padding: 1rem 0 !important;
    z-index: 1000 !important;
  }
  
  .navbar-nav.active {
    display: flex !important;
  }
  
  .navbar-nav li {
    width: 100% !important;
    text-align: center !important;
  }
  
  .navbar-nav a {
    color: var(--dark-color) !important;
    padding: .75rem 1rem !important;
  }
  
  .dropdown-menu {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    background: var(--gray-100) !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .dropdown-menu.show {
    display: block !important;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    box-shadow: 0 4px 6px rgb(0 0 0 / .1) !important;
    display: none !important;
    flex-direction: column !important;
    padding: 1rem 0 !important;
    z-index: 1000 !important;
  }
  
  .navbar-nav.active {
    display: flex !important;
  }
  
  .navbar-nav li {
    width: 100% !important;
    text-align: center !important;
  }
  
  .navbar-nav a {
    color: var(--dark-color) !important;
    padding: .75rem 1rem !important;
  }
  
  .dropdown-menu {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    background: var(--gray-100) !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .dropdown-menu.show {
    display: block !important;
  }
}