/* Express Watch Battery & Seal Bar - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css');

:root {
  /* Primary Color Palette */
  --primary-color: #1a365d;
  --secondary-color: #f7931e;
  --accent-color: #4a90a4;
  --neutral-color: #2d3748;
  --highlight-color: #e53e3e;
  
  /* Light/Dark Shades */
  --primary-light: #2c5282;
  --primary-dark: #0f1419;
  --secondary-light: #fbb040;
  --secondary-dark: #d69e2e;
  --accent-light: #68b5d1;
  --accent-dark: #2d6576;
  --neutral-light: #4a5568;
  --neutral-dark: #1a202c;
  --highlight-light: #fc8181;
  --highlight-dark: #c53030;
  
  /* Conservative Font Sizes */
  --navbar-brand-size: 1.1rem;
  --h1-size: 2rem;
  --h2-size: 1.5rem;
  --h3-size: 1.25rem;
  --p-size: 0.95rem;
  --small-size: 0.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--neutral-color);
  overflow-x: hidden;
}

h1 { font-size: var(--h1-size); font-weight: 600; }
h2 { font-size: var(--h2-size); font-weight: 600; }
h3 { font-size: var(--h3-size); font-weight: 500; }
p { font-size: var(--p-size); }

.navbar-brand { font-size: var(--navbar-brand-size) !important; }

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  color: white !important;
  font-weight: 700;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, white, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: var(--p-size);
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa, white);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(var(--accent-color), 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--primary-color);
  color: white;
}

.service-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
}

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

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: white;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--secondary-color);
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--neutral-light), var(--neutral-color));
  color: white;
}

.review-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  margin: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  border-top: 1px solid #eee;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.25);
  color: white;
}

.btn-primary {
  background: linear-gradient(45deg, var(--secondary-color), var(--highlight-color));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--secondary-color);
}

.swiper-pagination-bullet-active {
  background: var(--highlight-color);
}

/* Utilities */
.section-title {
  font-size: var(--h2-size);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0.8;
}

.section-desc {
  font-size: var(--p-size);
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(45deg, var(--secondary-color), var(--highlight-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: #f8f9fa;
}

.breadcrumb-img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 