/* Drone Roof Inspection Service - Main Styles */
:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4583f7;
  --primary-blue-light: #7aa4e5;
  --primary-blue-dark: #2f88df;
  
  --secondary-orange: #ff8214;
  --secondary-orange-light: #ffb15f;
  --secondary-orange-dark: #d59c1e;
  
  --accent-green: #83e236;
  --accent-green-light: #89d047;
  --accent-green-dark: #6cab1d;
  
  --neutral-gray: #9a9291;
  --neutral-gray-light: #cccccc;
  --neutral-gray-dark: #393434;
  
  --background-white: #FFFFFF;
  --background-light: #F8F9FA;
  --background-dark: #383b40;
  
  /* 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: 10px;
  --font-size-nav: 10px;
}

/* 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: 10px;
  font-weight: 700;
  color: var(--primary-blue);
}

.nav-link {
  font-size: 10px;
}

/* 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 8px 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 9px 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: 9px solid var(--primary-blue);
  box-shadow: 0 5px 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.59rem;
}

/* 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(80, 176, 238, 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 - 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);
}

.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;
    }
}
