/* Acoustic Panel Design & Installation Template - Main CSS */

:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --color-primary: #38455b;
  --color-secondary: #2e3c4e;
  --color-accent: #d1343f;
  --color-light: #ecf0f1;
  --color-dark: #1f313f;
  
  /* Light & Dark Shades */
  --color-primary-light: #4e7348;
  --color-primary-dark: #1a272d;
  --color-secondary-light: #495c72;
  --color-secondary-dark: #19242e;
  --color-accent-light: #da826c;
  --color-accent-dark: #c4393a;
  --color-light-shade: #f8f9fa;
  --color-dark-shade: #2e363b;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-dark);
  line-height: 1.6;
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-secondary);
}

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

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header */
.navbar {
  background-color: var(--color-light);
  border-bottom: 2px solid var(--color-primary);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--color-primary);
  font-weight: bold;
}

.nav-link {
  color: var(--color-secondary);
  font-weight: 500;
  margin: 0 0.5rem;
}

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

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

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

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

/* Service Cards */
.service-card {
  background: white;
  border: 2px solid var(--color-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(41, 61, 76, 0.10);
  border-color: var(--color-accent);
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-accent);
}

/* Buttons */
.btn-primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

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

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
  border-radius: 25px;
  padding: 0.75rem 2rem;
}

/* Team Cards */
.team-card {
  background: white;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px 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 {
  background: var(--color-light-shade);
  border: none;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-accent);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--color-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

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

.faq-answer {
  color: var(--color-secondary);
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-accent);
}

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

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

.section-subtitle {
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--color-secondary-dark);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.form-control {
  border: 2px solid var(--color-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(247, 97, 75, 0.25);
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Responsive Considerations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

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

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

.price-card.featured {
  border-color: var(--color-accent);
  transform: scale(1.05);
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--color-light);
  text-align: center;
}

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

/* Timeline Items */
.timeline-item {
  background: white;
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
}

/* Case Study Cards */
.case-card {
  background: white;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Career Cards */
.career-card {
  background: var(--color-light-shade);
  border: 2px solid var(--color-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Core Info Cards */
.info-card {
  background: white;
  border: 1px solid var(--color-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Feature Cards */
.feature-card {
  background: white;
  border: 2px solid var(--color-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  height: 100%;
}

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


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

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

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

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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