/*
Theme Name: PhotoFlight Aerial Media
Theme URI: https://photoflightam.com/
Author: PhotoFlight Aerial Media
Description: Custom WordPress theme for PhotoFlight Aerial Media.
Text Domain: photoflightam
*/



/* Optimized font loading */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Tailwind CSS CDN - Using specific version for reliability */
@import url('https://cdn.tailwindcss.com/3.4.17');

/* Fallback for Tailwind classes if CDN fails */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Force grid layout for footer */
footer .grid {
  display: grid !important;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  footer .grid {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}
.gap-8 { gap: 2rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.bg-black { background-color: #000; }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-600 { color: #4b5563; }
.text-blue-400 { color: #60a5fa; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mr-3 { margin-right: 0.75rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.h-12 { height: 3rem; }
.w-auto { width: auto; }
.max-w-md { max-width: 28rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.border-t { border-top-width: 1px; }
.border-gray-600 { border-color: #4b5563; }
.pt-8 { padding-top: 2rem; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.hover\:text-blue-400:hover { color: #60a5fa; }
.target { target: _blank; }
.rel { rel: noopener; }

/* Responsive classes for footer */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:mt-0 { margin-top: 0; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

/* Additional footer styling to ensure proper layout */
footer {
  background-color: #000 !important;
  color: #fff !important;
}

footer .max-w-7xl {
  max-width: 80rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media (min-width: 640px) {
  footer .max-w-7xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  footer .max-w-7xl {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* Footer section styling */
footer h3 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  color: #fff !important;
}

footer p {
  color: #d1d5db !important;
  margin-bottom: 1rem !important;
}

footer a {
  color: #d1d5db !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

footer a:hover {
  color: #60a5fa !important;
}

footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

footer li {
  margin-bottom: 0.5rem !important;
}

footer .flex {
  display: flex !important;
  align-items: center !important;
}

footer .items-start {
  align-items: flex-start !important;
}

footer .space-y-2 > * + * {
  margin-top: 0.5rem !important;
}

footer .space-y-3 > * + * {
  margin-top: 0.75rem !important;
}

footer .space-x-4 > * + * {
  margin-left: 1rem !important;
}

footer .space-x-6 > * + * {
  margin-left: 1.5rem !important;
}

/* Hero section contact info styling */
.hero-section a {
  color: white !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.hero-section a:hover {
  color: #60a5fa !important;
}

.hero-section .mr-3 {
  margin-right: 0.75rem !important;
}

/* Custom CSS Variables */
:root {
  --primary-color: #003982;
  --secondary-color: #232323;
  --accent-color: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
}

/* Custom Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: #ffffff;
}

/* Fallback styles for when Tailwind doesn't load */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-gray-900 {
  color: #111827;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-500 {
  color: #6b7280;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-500 {
  color: #3b82f6;
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f1f5f9;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-blue-100 {
  background-color: #dbeafe;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.bg-red-500 {
  background-color: #ef4444;
}

.bg-yellow-500 {
  background-color: #eab308;
}

.bg-green-500 {
  background-color: #22c55e;
}

.bg-orange-500 {
  background-color: #f97316;
}

.bg-purple-500 {
  background-color: #a855f7;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-400 {
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.to-cyan-500 {
  --tw-gradient-to: #06b6d4;
}

.from-blue-600 {
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.to-cyan-600 {
  --tw-gradient-to: #0891b2;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-center {
  justify-content: center;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-x-10 > * + * {
  margin-left: 2.5rem;
}

.space-x-12 > * + * {
  margin-left: 3rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* 16:9 Aspect Ratio for videos */
.aspect-video {
  aspect-ratio: 16 / 9;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-10 {
  width: 2.5rem;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-1000 {
  z-index: 1000;
}

.z-2000 {
  z-index: 2000;
}

.object-fit-cover {
  object-fit: cover;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-8 {
  margin-left: 2rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-gray-700 {
  border-color: #374151;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-blue-500 {
  border-color: #3b82f6;
}

.border-transparent {
  border-color: transparent;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.hover\:text-blue-500:hover {
  color: #3b82f6;
}

.hover\:text-blue-600:hover {
  color: #2563eb;
}

.hover\:text-blue-700:hover {
  color: #1d4ed8;
}

.hover\:bg-blue-50:hover {
  background-color: #eff6ff;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-blue-600:hover {
  background-color: #2563eb;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:translateY-2:hover {
  transform: translateY(-0.5rem);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:ring-blue-500:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.backdrop-blur {
  backdrop-filter: blur(8px);
}

.backdrop-blur-10 {
  backdrop-filter: blur(10px);
}

.backdrop-blur-5 {
  backdrop-filter: blur(5px);
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  
  .sm\:flex-col {
    flex-direction: column;
  }
  
  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .sm\:justify-end {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:mb-0 {
    margin-bottom: 0;
  }
  
  .md\:justify-end {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  
  .lg\:hidden {
    display: none;
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:space-x-8 > * + * {
    margin-left: 2rem;
  }
}

/* Header Styles */
.header {
  background: #232323;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 57, 130, 0.2);
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.header.scrolled {
  background: #232323;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}

/* Navigation Styles */
.nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
  background: rgba(0, 57, 130, 0.1);
  color: white;
  text-decoration: none;
}

.nav-link {
  text-decoration: none;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 57, 130, 0.1);
  padding: 0.5rem 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 0 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.dropdown-item:hover {
  background: rgba(0, 57, 130, 0.1);
  color: var(--primary-color);
  transform: translateX(4px);
}

.dropdown-item i {
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

/* Unified Navigation Menu Styles */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.main-navigation {
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-icon {
  transition: transform 0.3s ease;
}

.nav-dropdown .dropdown-icon.rotate {
  transform: rotate(180deg);
}

/* Desktop Styles (lg and up) */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  
  .main-navigation {
    display: block !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
  }
  
  .nav-menu {
    flex-direction: row;
    gap: 0;
    align-items: center;
    padding: 0;
  }
  
  .nav-menu > .nav-link,
  .nav-menu > .nav-dropdown {
    margin-right: 2.5rem;
  }
  
  .nav-link {
    white-space: nowrap;
  }
  
  .nav-dropdown {
    position: relative;
  }
  
  .nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
  }
  
  .nav-menu .btn-primary {
    margin-left: 2rem;
    margin-top: 0;
    width: auto;
  }
  
  /* Desktop hover effect for dropdown */
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* Mobile/Tablet Styles (below lg) */
@media (max-width: 1023px) {
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #232323;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .main-navigation.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .nav-dropdown .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
    margin-left: 1rem;
    border-radius: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
  }
  
  .nav-dropdown .dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .nav-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    margin: 0;
    border-radius: 0;
  }
  
  .nav-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: none;
  }
  
  .nav-menu .btn-primary {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  
  /* Overlay when menu is open */
  .main-navigation.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(88, 199, 235, 0.3) 100%);
  z-index: -1;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 57, 130, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 57, 130, 0.4);
  color: white;
}

.btn-secondary {
  background: #8e8e8e;
  color: white;
  padding: 16px 36px;
  border: 2px solid #8e8e8e;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #6e6e6e;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: white;
  background: #6e6e6e;
  border-color: #6e6e6e;
  transform: translateY(-2px);
}

/* Card Styles */
.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 57, 130, 0.1);
  position: relative;
  overflow: hidden;
}

/* Service Card Styles for 4-column layout */
.service-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 57, 130, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #4fb3d9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
}

.service-card h3 a {
  text-decoration: none !important;
}

.service-card h3 a:hover {
  text-decoration: none !important;
}

.service-heading-link {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.service-heading-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-card .btn-primary {
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 4px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #4fb3d9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card:hover::before {
  opacity: 1;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: var(--primary-color);
  color: white;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0, 57, 130, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-100px);
}

.floating-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-cta:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 35px rgba(88, 199, 235, 0.5);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: lightboxSlideIn 0.3s ease;
}

@keyframes lightboxSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(88, 199, 235, 0.1);
}

/* Section Styles */
.section {
  padding: 8rem 0;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #4fb3d9);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Additional grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Testimonial Styles */
.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-weight: bold;
  opacity: 0.3;
}

/* Parallax Section Styles */
.parallax-section {
  position: relative;
  background-image: url('images/get-started-bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Vision Section with Parallax */
.vision-section {
  background-image: url('https://photoflightam.com/wp-content/uploads/2018/11/Stark-Building-Day-SM-17.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  padding: 6rem 0;
  position: relative;
}

.vision-section .parallax-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.vision-section .parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.vision-section .section-title {
  color: white !important;
  margin-bottom: 1.5rem;
}

.vision-section .section-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive adjustments for vision section */
@media (max-width: 768px) {
  .vision-section {
    background-attachment: scroll;
    min-height: 400px;
    padding: 4rem 0;
  }
  
  .vision-section .section-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

/* Feature Image Styles for "Why Choose" Section */
.feature-image-wrapper {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 1rem;
}

.feature-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 57, 130, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .feature-image-wrapper {
    width: 70px;
    height: 70px;
    margin-right: 0.75rem;
  }
  
  .feature-image {
    width: 70px;
    height: 70px;
  }
}

/* Locations Grid - 6 columns */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.locations-grid h3 {
  font-size: 1rem;
  line-height: 1.5rem;
}

.locations-grid .w-14 {
  width: 3.5rem;
  height: 3.5rem;
}

.locations-grid .mb-3 {
  margin-bottom: 0.75rem;
}

.locations-grid .mb-1 {
  margin-bottom: 0.25rem;
}

.locations-grid .loc-card {
  transition: transform 0.2s ease;
}

.locations-grid .loc-card:hover {
  transform: translateY(-2px);
}

.locations-grid a {
  text-decoration: none;
  display: inline-block;
}

.locations-grid a:hover {
  text-decoration: none;
}

/* Tighter section spacing */
.service-areas-section {
  padding: 5rem 0;
}

.service-areas-section .mb-12 {
  margin-bottom: 3rem;
}

/* Responsive adjustments for locations grid */
@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .service-areas-section {
    padding: 4rem 0;
  }
  
  .service-areas-section .mb-12 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 35, 35, 0.8);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* FAQ Styles */
.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 57, 130, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(88, 199, 235, 0.1);
}

.faq-question:hover {
  background: rgba(0, 57, 130, 0.05);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  background: rgba(0, 57, 130, 0.02);
}

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

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  list-style: none;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .floating-cta {
    left: 10px;
    padding: 12px 15px;
    font-size: 12px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .lightbox-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Rotating Background Gradient Section */
.rotating-gradient-section {
  position: relative;
  height: 120px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.rotating-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    #3b82f6 0%, 
    #06b6d4 25%, 
    #10b981 50%, 
    #f59e0b 75%, 
    #ef4444 100%);
  background-size: 400% 100%;
  animation: rotateGradient 8s ease-in-out infinite;
}

@keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* WordPress Content Styles */
.wp-content {
  text-align: left;
}

.wp-content .entry-content {
  line-height: 1.8;
  color: #374151;
}

.wp-content .entry-content h1,
.wp-content .entry-content h2,
.wp-content .entry-content h3,
.wp-content .entry-content h4,
.wp-content .entry-content h5,
.wp-content .entry-content h6 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111827;
  font-family: 'Montserrat', sans-serif;
}

.wp-content .entry-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.wp-content .entry-content h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.wp-content .entry-content h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

.wp-content .entry-content h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.wp-content .entry-content h5 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.wp-content .entry-content h6 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.wp-content .entry-content p {
  margin-bottom: 1.5rem;
  color: #4b5563;
  line-height: 1.8;
}

.wp-content .entry-content ul,
.wp-content .entry-content ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  color: #4b5563;
  line-height: 1.8;
}

.wp-content .entry-content ul {
  list-style-type: disc;
}

.wp-content .entry-content ol {
  list-style-type: decimal;
}

.wp-content .entry-content li {
  margin-bottom: 0.5rem;
}

.wp-content .entry-content ul ul,
.wp-content .entry-content ol ol,
.wp-content .entry-content ul ol,
.wp-content .entry-content ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.wp-content .entry-content a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.wp-content .entry-content a:hover {
  color: #1d4ed8;
}

.wp-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.wp-content .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.wp-content .entry-content table th,
.wp-content .entry-content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.wp-content .entry-content table th {
  background-color: #f3f4f6;
  font-weight: 600;
  color: #111827;
}

.wp-content .entry-content table tr:last-child td {
  border-bottom: none;
}

.wp-content .entry-content table tr:hover {
  background-color: #f9fafb;
}

.wp-content .entry-content blockquote {
  border-left: 4px solid #2563eb;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563;
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 4px;
}

.wp-content .entry-content blockquote p {
  margin-bottom: 0.5rem;
}

.wp-content .entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.wp-content .entry-content code {
  background-color: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #dc2626;
}

.wp-content .entry-content pre {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  line-height: 1.6;
}

.wp-content .entry-content pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.wp-content .entry-content hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 2rem 0;
}

.wp-content .entry-content strong,
.wp-content .entry-content b {
  font-weight: 700;
  color: #111827;
}

.wp-content .entry-content em,
.wp-content .entry-content i {
  font-style: italic;
}

.wp-content .entry-content u {
  text-decoration: underline;
}

.wp-content .entry-content del,
.wp-content .entry-content s {
  text-decoration: line-through;
}

.wp-content .entry-content sup,
.wp-content .entry-content sub {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.wp-content .entry-content sup {
  top: -0.5em;
}

.wp-content .entry-content sub {
  bottom: -0.25em;
}

@media (max-width: 768px) {
  .wp-content .entry-content h1 {
    font-size: 2rem;
  }
  
  .wp-content .entry-content h2 {
    font-size: 1.75rem;
  }
  
  .wp-content .entry-content h3 {
    font-size: 1.5rem;
  }
  
  .wp-content .entry-content h4 {
    font-size: 1.25rem;
  }
  
  .wp-content .entry-content ul,
  .wp-content .entry-content ol {
    margin-left: 1.5rem;
  }
  
  .wp-content .entry-content table {
    font-size: 0.9em;
  }
  
  .wp-content .entry-content table th,
  .wp-content .entry-content table td {
    padding: 0.75rem;
  }
}

/* Locations list styling */
.locations-section {
  background: #f9f9f9;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.locations-list {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.locations-list .location-card {
  min-height: 260px;
  border-radius: 1.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
  .locations-list .location-card {
    flex-direction: row;
  }
}

.locations-list .location-card:nth-child(2n) {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.locations-list .location-card:nth-child(3n) {
  background: #f5f9ff;
}

.locations-list .location-card:nth-child(4n) {
  background: #fff8f0;
}

.locations-list .location-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .locations-list .location-card-image {
    width: 320px;
  }
}

.locations-list .location-card-content {
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .locations-list .location-card-content {
    padding: 2.25rem;
  }
}

/* CTA section styling for locations page */
.locations-cta-section {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
}

.locations-cta-section .section-title,
.locations-cta-section .section-subtitle {
  color: #ffffff;
}

.locations-cta-section .btn-primary {
  background: #ffffff;
  color: #0f172a;
}

.locations-cta-section .btn-secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.locations-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Latest News Section - Featured Image Styles */
/* Target images in the Latest Droning News section within service-card containers */
.grid-4 .service-card .relative.mb-4 {
  width: 100% !important;
  height: 8rem !important;
  overflow: hidden !important;
  border-radius: 0.5rem;
  position: relative;
}

/* Ensure images cover their containers properly */
.grid-4 .service-card .relative.mb-4 img {
  width: 100% !important;
  height: 100% !important;
  min-height: 8rem !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Additional fallback for news section images specifically */
.grid-4 .service-card img[src*="photoflightam.com/wp-content"] {
  width: 100% !important;
  height: 8rem !important;
  min-height: 8rem !important;
  max-height: 8rem !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Latest Drone Projects Section - Featured Image Styles */
/* Target images in the "Our Latest Drone Projects" section within card containers */
.grid-2 .card .relative.mb-6 {
  width: 100% !important;
  height: 12rem !important;
  overflow: hidden !important;
  border-radius: 0.5rem;
  position: relative;
}

/* Ensure images cover their containers properly */
.grid-2 .card .relative.mb-6 img {
  width: 100% !important;
  height: 100% !important;
  min-height: 12rem !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Additional fallback for projects section images specifically */
.grid-2 .card img[src*="photoflightam.com/wp-content"] {
  width: 100% !important;
  height: 12rem !important;
  min-height: 12rem !important;
  max-height: 12rem !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background-size: cover !important;
  background-position: center !important;
}
