/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --color-primary: #4285f4;     /* Parking Blue */
  --color-secondary: #34a853;   /* Success Green */
  --color-accent: #fbbc04;      /* Warning Yellow */
  --color-info: #ea4335;        /* Alert Red */
  --color-neutral: #9aa0a6;     /* Neutral Gray */
  
  /* Light Shades */
  --color-primary-light: #8bb5f7;
  --color-secondary-light: #6cbf7a;
  --color-accent-light: #fdd663;
  --color-info-light: #f07470;
  --color-neutral-light: #c1c7cd;
  
  /* Dark Shades */
  --color-primary-dark: #1a73e8;
  --color-secondary-dark: #137333;
  --color-accent-dark: #f9ab00;
  --color-info-dark: #d33b2c;
  --color-neutral-dark: #5f6368;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-medium: 1.125rem;
  --font-size-large: 1.25rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-neutral-dark);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-large) !important;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-dark);
}

h1 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary-dark);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-dark);
  margin-bottom: 0.625rem;
}

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

/* ===== HEADER STYLES ===== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--color-neutral-dark);
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-section h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: #ffffff;
  font-size: var(--font-size-medium);
  opacity: 0.9;
}

/* ===== SECTION STYLES ===== */
.section-padding {
  padding: 4rem 0;
}

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

.section-subtitle {
  color: var(--color-neutral);
  font-size: var(--font-size-medium);
  text-align: center;
  margin-bottom: 1rem;
}

/* ===== CARD STYLES ===== */
.custom-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.service-card .card-icon {
  background: var(--color-primary);
}

.feature-card .card-icon {
  background: var(--color-secondary);
}

.price-card .card-icon {
  background: var(--color-accent);
}

/* ===== PRICING STYLES ===== */
.price-value {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.price-currency {
  font-size: 1rem;
  color: var(--color-neutral);
}

/* ===== TEAM STYLES ===== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

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

/* ===== BUTTON STYLES ===== */
.btn-primary-custom {
  background-color: var(--color-primary);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

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

.btn-secondary-custom {
  background-color: var(--color-secondary);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
}

/* ===== FORM STYLES ===== */
.form-control {
  border-radius: 8px;
  border: 2px solid var(--color-neutral-light);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

/* ===== FOOTER STYLES ===== */
.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #ffffff;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.footer p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== ACCESSIBILITY ===== */
@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;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-primary-custom {
  color: var(--color-primary);
}

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

.bg-light-custom {
  background-color: #f8f9fa;
}

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

.parking-icon {
  color: var(--color-primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-custom {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  opacity: 0.7;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
