/* Smart Locker Systems - Main CSS */
/* Bootstrap 5 Compatible Styles - No Overrides */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4A90E2;        /* Tech Blue */
  --primary-green: #7ED321;       /* Success Green */
  --primary-orange: #F5A623;      /* Warning Orange */
  --primary-purple: #9013FE;      /* Security Purple */
  --primary-gray: #50E3C2;        /* Modern Teal */
  
  /* Light Shades */
  --light-blue: #E6F3FF;
  --light-green: #F0F9E8;
  --light-orange: #FFF8E1;
  --light-purple: #F3E5F5;
  --light-gray: #E8F8F5;
  
  /* Dark Shades */
  --dark-blue: #2C5282;
  --dark-green: #38A169;
  --dark-orange: #C05621;
  --dark-purple: #6B46C1;
  --dark-gray: #2D3748;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --section-padding-sm: 2rem 0;
}

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

/* Body */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--primary-purple);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-blue);
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
  padding: var(--section-padding);
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
    padding-top: 150px;
}

.hero-image {
  text-align: center;
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  background: var(--primary-orange);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--primary-purple);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-small {
  padding: var(--section-padding-sm);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  border-color: var(--primary-blue);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-blue);
}

.service-price {
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--light-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-purple);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--light-gray);
  border: 4px solid var(--primary-gray);
}

.team-name {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-gray);
  font-size: var(--font-size-small);
}

/* Reviews Section */
.review-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-orange);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-author {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.review-text {
  font-style: italic;
  color: var(--dark-gray);
}

/* FAQ Section */
.faq-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-right: 1rem;
}

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

.footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-copyright {
  border-top: 1px solid #4a5568;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: #a0aec0;
  font-size: var(--font-size-small);
}

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

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

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

/* Blog */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-h4);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-blue);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Price Plan */
.price-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 2rem;
}

.price-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f7fafc;
}

/* Utilities */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-gray { color: var(--primary-gray); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-gray { background-color: var(--light-gray); }

/* Breadcrumb Styles */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--light-blue);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
