/* Drone Inspection Service Template - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');
@import url('https://unpkg.com/sal.js@0.8.5/dist/sal.css');

/* CSS Variables - Color Palette */
:root {
  --primary-blue: #2C5AA0;
  --secondary-blue: #4A90E2;
  --accent-orange: #F39C12;
  --neutral-gray: #7F8C8D;
  --success-green: #27AE60;
  
  --light-blue: #E8F4FD;
  --light-orange: #FDF2E9;
  --light-gray: #F8F9FA;
  --dark-blue: #1A365D;
  --dark-gray: #2C3E50;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
}

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-blue);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--neutral-gray);
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-blue);
  text-align: center;
  margin-bottom: 1.5rem;
}

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

/* Services Section */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

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

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

.feature-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--neutral-gray);
}

/* Price Plan Section */
.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 25px rgba(44, 90, 160, 0.1);
  position: relative;
  text-align: center;
  height: 100%;
}

.pricing-card.featured {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price {
  color: white;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--success-green);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--neutral-gray);
}

.pricing-features li i {
  color: var(--success-green);
  margin-right: 0.5rem;
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--light-blue);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--neutral-gray);
  font-style: italic;
}

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
  height: 100%;
}

.review-text {
  color: var(--neutral-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
}

.review-stars {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-card {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(44, 90, 160, 0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  padding: 1.5rem;
  margin: 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq-answer {
  color: var(--neutral-gray);
  padding: 1.5rem;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(44, 90, 160, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

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

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: #BDC3C7;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #34495E;
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--primary-blue);
}

/* Case Studies */
.casestudy-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
  height: 100%;
}

.casestudy-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.casestudy-desc {
  color: var(--neutral-gray);
}

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

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

.process-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.process-desc {
  color: var(--neutral-gray);
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-nav img {
  height: 20px;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue);
}

.bg-light-custom {
  background: var(--light-blue);
}

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

.hero-section h1 {
    padding-top: 150px;
}


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

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
