/* Express Watch Battery & Seal Bar - Main CSS */

/* Color Variables */
:root {
  --primary-color: #1a237e;
  --secondary-color: #ff6f00;
  --accent-color: #00897b;
  --dark-color: #263238;
  --light-color: #f5f5f5;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6f00 0%, #ff9800 100%);
  --gradient-accent: linear-gradient(135deg, #00897b 0%, #26a69a 100%);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
    overflow-x: hidden;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-toggler {
  border-color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../VET_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title h3 {
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* About Section */
.about {
  background-color: var(--light-color);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 1rem;
}

/* Features Section */
.features {
  background: var(--gradient-accent);
  color: var(--white);
}

.features .section-title h2,
.features .section-title h3 {
  color: var(--white);
}

/* Price Plan Section */
.price-plan {
  background-color: var(--light-color);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1rem 0;
}

/* Team Section */
.team {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--secondary-color);
}

/* Reviews Section */
.reviews {
  background: var(--gradient-primary);
  color: var(--white);
}

.reviews .section-title h2,
.reviews .section-title h3 {
  color: var(--white);
}

.review-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Contact Section */
.contact {
  background-color: var(--light-color);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 0, 0.25);
}

.btn-primary {
  background: var(--gradient-secondary);
  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 5px 15px rgba(255, 111, 0, 0.4);
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background: var(--light-color);
  border-radius: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-secondary);
  color: var(--white);
}

/* Gallery Section */
.gallery {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  background-color: var(--light-color);
  padding: 1rem 0;
}

.breadcrumb-container img {
  height: 30px;
}

/* Blog Section */
.blog {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
    overflow-x: hidden;
  padding: 1.5rem;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.shadow-custom {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
} 