/* Remote Hardware Prototyping Lab Rentals - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-1: #50a2ef; /* Tech Blue */
  --primary-2: #07a76e; /* Circuit Green */
  --primary-3: #ff8100; /* Hardware Orange */
  --primary-4: #8c50ff; /* Innovation Purple */
  --primary-5: #e64957; /* Alert Red */
  
  /* Light Shades */
  --light-1: #e7eefe; /* Light Blue */
  --light-2: #c0e7d9; /* Light Green */
  --light-3: #fff5de; /* Light Orange */
  --light-4: #f4f0ff; /* Light Purple */
  --light-5: #fdd6dc; /* Light Red */
  
  /* Dark Shades */
  --dark-1: #1536ba; /* Dark Blue */
  --dark-2: #069955; /* Dark Green */
  --dark-3: #e37701; /* Dark Orange */
  --dark-4: #7e2ddf; /* Dark Purple */
  --dark-5: #ee5038; /* Dark Red */
  
  /* Neutral Colors */
  --text-primary: #202d41;
  --text-secondary: #7c8491;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-1);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-2);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  opacity: 0.1;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-3);
  border-radius: 30px;
  bottom: 20%;
  left: 5%;
  opacity: 0.1;
  transform: rotate(45deg);
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

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

/* Service Cards */
.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

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

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

/* Team Cards */
.team-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 12px;
  background: var(--light-1);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-1);
  margin-bottom: 0.5rem;
}

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

.form-control {
  border-radius: 8px;
  border: 2px solid #e9eaeb;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(71, 130, 255, 0.25);
}

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

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

/* Footer */
footer {
  background-color: var(--text-primary);
  color: white;
}

footer a {
  color: #dcdcdc;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* Gallery */
.gallery-grid img {
  border-radius: 8px;
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

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

/* Price Plan Cards */
.price-card {
  border: 2px solid var(--light-1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-1);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-1);
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-2);
  padding-left: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-2);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 0;
}

/* Case Study Cards */
.case-study-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Core Info Cards */
.core-info-card {
  background: var(--light-2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Career Cards */
.career-card {
  border: none;
  border-radius: 12px;
  padding: 2rem;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-1);
}

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

/* Breadcrumb */
.breadcrumb-image {
  width: 100%;
  max-width: 150px;
  height: auto;
}

/* Reduced Motion */
@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: 275px;
}


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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