/*! Smart Locker Systems Template - Main CSS */

/* ===== CSS VARIABLES & COLOR PALETTE ===== */
:root {
  /* Primary Colors - Pastel High-Contrast Palette */
  --primary-blue: #4e9cf6;
  --primary-green: #61e10d;
  --primary-orange: #df8527;
  --primary-purple: #9613ff;
  --primary-red: #d10100;
  
  /* Light Shades */
  --light-blue: #d9f1ff;
  --light-green: #dae5c1;
  --light-orange: #ebe8da;
  --light-purple: #e5c6e8;
  --light-red: #ffd5de;
  
  /* Dark Shades */
  --dark-blue: #196aad;
  --dark-green: #348739;
  --dark-orange: #df2a00;
  --dark-purple: #671d98;
  --dark-red: #ab2926;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F8F9FA;
  --gray-200: #ebebeb;
  --gray-300: #e0e0e2;
  --gray-800: #44474c;
  --gray-900: #2e363b;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--gray-800);
  background-color: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
  color: var(--dark-blue);
}

h2 {
  font-size: 2rem;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.75rem;
  color: var(--gray-800);
}

h4 {
  font-size: 1.5rem;
  color: var(--gray-800);
}

h5 {
  font-size: 1.25rem;
  color: var(--gray-800);
}

h6 {
  font-size: 1.125rem;
  color: var(--gray-800);
}

p {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

/* ===== LAYOUT ===== */
.section-padding {
  padding: var(--section-padding);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-blue);
  opacity: 0.1;
}

.hero-decorative-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.hero-decorative-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  background: var(--primary-green);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--dark-blue);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background-color: var(--light-blue);
  border-bottom: 2px solid var(--primary-blue);
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* ===== SECTIONS ===== */
.bg-light-custom {
  background-color: var(--gray-100);
}

.bg-primary-light {
  background-color: var(--light-blue);
}

.bg-success-light {
  background-color: var(--light-green);
}

.text-primary-custom {
  color: var(--primary-blue);
}

.text-success-custom {
  color: var(--primary-green);
}

/* ===== ICONS ===== */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* ===== CONTACT FORM ===== */
.form-control {
  border-radius: 0.5rem;
  border: 2px solid var(--gray-300);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.form-label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: var(--gray-300);
}

.footer a:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

/* ===== PRICE PLANS ===== */
.price-card {
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* ===== TEAM MEMBERS ===== */
.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-blue);
  margin-bottom: 1.5rem;
}

.team-member h5 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-blue);
  font-weight: 500;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-custom {
  background: none;
  padding: 0;
  margin: 2rem 0;
}

.breadcrumb-custom img {
  height: 24px;
  width: auto;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.625rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

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