/* Drone Roof Inspection Service - Main Styles */
:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-blue-light: #6FA8F5;
  --primary-blue-dark: #2171D9;
  
  --secondary-orange: #F5A623;
  --secondary-orange-light: #FFB84D;
  --secondary-orange-dark: #E8940F;
  
  --accent-green: #7ED321;
  --accent-green-light: #97E03A;
  --accent-green-dark: #68B91A;
  
  --neutral-gray: #9B9B9B;
  --neutral-gray-light: #D8D8D8;
  --neutral-gray-dark: #4A4A4A;
  
  --background-white: #FFFFFF;
  --background-light: #F8F9FA;
  --background-dark: #343A40;
  
  /* Typography */
  --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;
  --font-size-brand: 1.25rem;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-gray-dark);
}

h1 { font-size: var(--font-size-h1); font-weight: 600; }
h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3 { font-size: var(--font-size-h3); font-weight: 600; }
h4 { font-size: var(--font-size-h4); font-weight: 600; }

.navbar-brand {
  font-size: var(--font-size-brand);
  font-weight: 700;
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--primary-blue-light) 100%);
  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(--secondary-orange);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Services Grid */
.service-card {
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .card-body {
  padding: 2rem;
}

.service-price {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--primary-blue);
}

/* Team Cards */
.team-card {
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Testimonials */
.testimonial-card {
  background: var(--background-white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Cards */
.faq-card {
  background: var(--background-white);
  border-radius: 8px;
  border: 1px solid var(--neutral-gray-light);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue-dark);
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
  border-radius: 8px;
  border: 2px solid var(--neutral-gray-light);
  padding: 0.75rem 1rem;
}

.contact-form .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);
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background-color: var(--background-light);
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: var(--background-white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--neutral-gray-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--background-white);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue);
}

.bg-primary-custom {
  background-color: var(--primary-blue);
}

.text-secondary-custom {
  color: var(--secondary-orange);
}

.bg-secondary-custom {
  background-color: var(--secondary-orange);
}

.text-accent-custom {
  color: var(--accent-green);
}

.bg-accent-custom {
  background-color: var(--accent-green);
}

/* Breadcrumb */
.breadcrumb-item img {
  width: 16px;
  height: 16px;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* 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;
}

.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;
    }
}
