/* ==========================================================================
   Sky Decks N Things - Custom Styles
   Brand Manual Compliance
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Brand Colors)
   -------------------------------------------------------------------------- */
:root {
  /* Primary Colors */
  --deep-navy: #0A2342;
  --sky-electric-blue: #00AFE0;
  
  /* Support Colors */
  --slate-grey: #2C3E50;
  --pure-white: #FFFFFF;
  
  /* Extended Palette */
  --navy-light: #0d2d54;
  --navy-dark: #061729;
  --sky-blue-light: #33C2E8;
  --sky-blue-dark: #0091BC;
  --sky-blue-pale: #E6F7FC;
  --grey-light: #f8f9fa;
  --grey-medium: #6c757d;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-sky-blue: 0 4px 14px 0 rgb(0 175 224 / 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  color: var(--slate-grey);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.2;
}

.subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Navigation Styles
   -------------------------------------------------------------------------- */
.navbar {
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  background: rgba(229, 231, 235, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.navbar.scrolled .nav-link {
  color: var(--deep-navy);
}

.nav-link {
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky-electric-blue);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Hamburger Animation */
.hamburger span {
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* --------------------------------------------------------------------------
   Site Header - New Design
   -------------------------------------------------------------------------- */
.site-header {
  font-family: 'Montserrat', sans-serif;
}

/* Top Section - Navy Background */
.header-top {
  background: #0A2342;
  height: 110px;
  position: relative;
  overflow: visible;
}

.header-top-inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* Logo Circle Container */
.logo-circle-container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -55px;
  width: 500px; /* Limit width to logo area only */
  max-width: 600px;
  z-index: 30; /* Higher than nav so logo appears on top visually */
  display: flex;
  align-items: flex-start;
}

.logo-circle-container a {
  display: block;
  width: 100%;
}

.header-logo-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 30; /* Keep logo visible on top */
  margin-left: 0;
  margin-top: 0;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

/* No hover effects for logo */

/* Header Seals */
.header-seals {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  left: 200px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
}

.seal-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* Coverage Area + CTA */
.header-cta-area {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.coverage-text {
  text-align: center;
  color: white;
}

.coverage-label {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.coverage-value {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 400;
}

.cta-button-link {
  transition: transform 0.3s ease;
}

.cta-button-link:hover {
  transform: scale(1.05);
}

.cta-img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Navigation Bar */
.header-nav {
  background: linear-gradient(to bottom, #e5e7eb 0%, #d1d5db 100%);
  height: 55px;
  border-bottom: 2px solid #9ca3af;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 20; /* Lower than logo so logo appears on top */
}

.header-nav-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
  padding-left: 200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-spacer {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-left: auto;
  margin-right: 100px;
  position: relative;
  z-index: 25; /* Ensure nav items are clickable */
}

.nav-item {
  color: #1a1a2e;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: #00AFE0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00AFE0;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

/* Language Flags */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-flag {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lang-flag:hover,
.lang-flag.active {
  opacity: 1;
}

.lang-flag img {
  height: 22px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Mobile Header */
.mobile-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for header */
@media (max-width: 1400px) {
  .header-seals {
    left: 195px;
  }
  
  .seal-img {
    width: 70px;
    height: 70px;
  }
  
  .main-nav {
    gap: 2.5rem;
  }
  
  .nav-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .logo-circle-container {
    width: 240px;
    max-width: 240px;
  }
  
  .header-logo-img {
    width: 100%;
    margin-left: 0;
  }
  
  .header-top {
    height: 88px;
  }
  
  .header-seals {
    left: 125px;
  }
  
  .seal-img {
    width: 54px;
    height: 54px;
  }
  
  .header-cta-area {
    gap: 1.3rem;
    right: 18px;
  }
  
  .coverage-label,
  .coverage-value {
    font-size: 0.9rem;
  }
  
  .cta-img {
    height: 42px;
  }
  
  .header-nav-inner {
    padding-left: 118px;
  }
  
  .main-nav {
    gap: 1.8rem;
  }
}

@media (max-width: 1100px) {
  .logo-circle-container {
    width: 210px;
    max-width: 210px;
  }
  
  .header-top {
    height: 82px;
  }
  
  .header-seals {
    left: 110px;
  }
  
  .seal-img {
    width: 50px;
    height: 50px;
  }
  
  .header-nav-inner {
    padding-left: 105px;
  }
  
  .main-nav {
    gap: 1.6rem;
  }
  
  .nav-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .logo-circle-container {
    width: 180px;
    max-width: 180px;
    bottom: -35px;
  }
  
  .header-top {
    height: 75px;
  }
  
  .header-seals {
    left: 95px;
    gap: 0.25rem;
  }
  
  .seal-img {
    width: 46px;
    height: 46px;
  }
  
  .header-nav-inner {
    padding-left: 90px;
  }
  
  .coverage-label {
    font-size: 0.8rem;
  }
  
  .coverage-value {
    font-size: 0.85rem;
  }
  
  .cta-img {
    height: 38px;
  }
  
  .main-nav {
    gap: 1.4rem;
  }
}

@media (max-width: 900px) {
  .logo-circle-container {
    width: 160px;
    max-width: 160px;
    bottom: -30px;
  }
  
  .header-top {
    height: 70px;
  }
  
  .header-seals {
    left: 85px;
    gap: 0.2rem;
  }
  
  .seal-img {
    width: 42px;
    height: 42px;
  }
  
  .header-cta-area {
    gap: 1rem;
    right: 15px;
  }
  
  .coverage-text {
    display: none;
  }
  
  .cta-img {
    height: 36px;
  }
  
  .header-nav-inner {
    padding-left: 80px;
  }
  
  .main-nav {
    gap: 1.2rem;
  }
  
  .nav-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 820px) {
  .logo-circle-container {
    width: 145px;
    max-width: 145px;
    bottom: -27px;
  }
  
  .header-top {
    height: 66px;
  }
  
  .header-seals {
    left: 75px;
    gap: 0.2rem;
  }
  
  .seal-img {
    width: 39px;
    height: 39px;
  }
  
  .header-nav-inner {
    padding-left: 72px;
  }
  
  .main-nav {
    gap: 1.1rem;
  }
}

@media (max-width: 768px) {
  .logo-circle-container {
    width: 135px;
    max-width: 135px;
    bottom: -25px;
  }
  
  .header-top {
    height: 63px;
  }
  
  .header-seals {
    left: 70px;
    gap: 0.15rem;
  }
  
  .seal-img {
    width: 37px;
    height: 37px;
  }
  
  .header-nav-inner {
    padding-left: 68px;
  }
  
  .nav-item {
    font-size: 0.75rem;
  }
  
  .main-nav {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .logo-circle-container {
    width: 115px;
    max-width: 115px;
    bottom: -22px;
  }
  
  .header-top {
    height: 58px;
  }
  
  .header-seals {
    left: 60px;
    gap: 0.1rem;
  }
  
  .seal-img {
    width: 32px;
    height: 32px;
  }
  
  .header-nav-inner {
    padding-left: 58px;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300AFE0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
}

/* Hero Content Box */
.hero-content-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Service Buttons */
.hero-service-btn {
  min-width: 160px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Quality Seals - Stamp Style */
.quality-seal {
  width: 120px;
  height: 120px;
  position: relative;
}

@media (min-width: 1024px) {
  .quality-seal {
    width: 140px;
    height: 140px;
  }
}

.quality-seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px dashed var(--sky-electric-blue);
  background: rgba(10, 35, 66, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 6px rgba(0, 175, 224, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Decorative dots around the seal */
.quality-seal-inner::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 50% 0%, var(--sky-electric-blue) 2px, transparent 2px),
    radial-gradient(circle at 93.3% 25%, var(--sky-electric-blue) 2px, transparent 2px),
    radial-gradient(circle at 93.3% 75%, var(--sky-electric-blue) 2px, transparent 2px),
    radial-gradient(circle at 50% 100%, var(--sky-electric-blue) 2px, transparent 2px),
    radial-gradient(circle at 6.7% 75%, var(--sky-electric-blue) 2px, transparent 2px),
    radial-gradient(circle at 6.7% 25%, var(--sky-electric-blue) 2px, transparent 2px);
  opacity: 0.6;
  z-index: -1;
}

/* Animated gradient border */
.gradient-border {
  position: relative;
  background: var(--deep-navy);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--sky-electric-blue), var(--deep-navy), var(--sky-electric-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: inherit;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary {
  background: var(--sky-electric-blue);
  color: var(--pure-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--sky-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sky-blue);
}

.btn-secondary {
  background: transparent;
  color: var(--pure-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border: 2px solid var(--pure-white);
  border-radius: 0.5rem;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--deep-navy);
}

.btn-outline-sky {
  background: transparent;
  color: var(--sky-electric-blue);
  border: 2px solid var(--sky-electric-blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all var(--transition-base);
}

.btn-outline-sky:hover {
  background: var(--sky-electric-blue);
  color: var(--pure-white);
}

/* Legacy class alias for compatibility */
.btn-outline-gold {
  background: transparent;
  color: var(--sky-electric-blue);
  border: 2px solid var(--sky-electric-blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all var(--transition-base);
}

.btn-outline-gold:hover {
  background: var(--sky-electric-blue);
  color: var(--pure-white);
}

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--pure-white);
  border-radius: 1rem;
  padding: 2rem;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--sky-electric-blue);
  box-shadow: var(--shadow-xl);
}

.service-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-light) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card .icon-wrapper svg {
  color: var(--sky-electric-blue);
}

.service-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--slate-grey);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Process Timeline
   -------------------------------------------------------------------------- */
.timeline-item {
  position: relative;
  padding-left: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 2.5rem;
  bottom: -2.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky-electric-blue), var(--slate-grey));
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--sky-electric-blue);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Trust Badges
   -------------------------------------------------------------------------- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 175, 224, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--pure-white);
  backdrop-filter: blur(4px);
}

.trust-badge svg {
  color: var(--sky-electric-blue);
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 4rem;
  height: 3px;
  background: var(--sky-electric-blue);
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Section Subtitle (WHAT WE DO, etc) - Force block display */
.text-gold.font-raleway.uppercase {
  display: block !important;
  margin-bottom: 1rem !important;
}

/* Why Choose Us Stats */
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--sky-electric-blue);
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--deep-navy);
  color: var(--pure-white);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--sky-electric-blue);
}

.footer-heading {
  color: var(--pure-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--sky-electric-blue);
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: var(--sky-electric-blue);
  color: var(--pure-white);
}

.footer-seal {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* --------------------------------------------------------------------------
   Form Styles
   -------------------------------------------------------------------------- */
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  transition: all var(--transition-fast);
  background: var(--pure-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--sky-electric-blue);
  box-shadow: 0 0 0 3px rgba(0, 175, 224, 0.15);
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Gallery Grid
   -------------------------------------------------------------------------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item img {
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.9), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Video Gallery Responsive Grid */
@media (min-width: 640px) {
  .gallery-item:nth-child(3n+1) {
    grid-column: span 1;
  }
  
  .gallery-item:nth-child(3n+2) {
    grid-column: span 1;
  }
  
  .gallery-item:nth-child(3n) {
    grid-column: span 1;
  }
}

@media (max-width: 639px) {
  .gallery-item {
    aspect-ratio: 4 / 3;
    min-height: 250px;
  }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-sky-blue { color: var(--sky-electric-blue); }
.text-sky-blue-light { color: var(--sky-blue-light); }
.text-sky-blue-dark { color: var(--sky-blue-dark); }
.text-gold { color: var(--sky-electric-blue); } /* Legacy alias */
.text-navy { color: var(--deep-navy); }
.text-slate { color: var(--slate-grey); }

.bg-navy { background-color: var(--deep-navy); }
.bg-sky-blue { background-color: var(--sky-electric-blue); }
.bg-sky-blue-light { background-color: var(--sky-blue-light); }
.bg-sky-blue-pale { background-color: var(--sky-blue-pale); }
.bg-gold { background-color: var(--sky-electric-blue); } /* Legacy alias */
.bg-slate { background-color: var(--slate-grey); }
.bg-grey-light { background-color: var(--grey-light); }

.border-sky-blue { border-color: var(--sky-electric-blue); }
.border-gold { border-color: var(--sky-electric-blue); } /* Legacy alias */
.border-navy { border-color: var(--deep-navy); }

/* Gradient utilities */
.gradient-sky {
  background: linear-gradient(135deg, var(--sky-electric-blue) 0%, var(--sky-blue-dark) 100%);
}

.gradient-navy-sky {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-electric-blue) 100%);
}

/* Glow effect */
.glow-sky {
  box-shadow: 0 0 20px rgba(0, 175, 224, 0.4);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .service-number {
    font-size: 2rem;
  }
  
  .timeline-item {
    padding-left: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .navbar,
  .footer,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }
}

/* --------------------------------------------------------------------------
   Photo Carousel (Swiper)
   -------------------------------------------------------------------------- */
.photo-swiper {
  width: 100%;
  padding: 1rem 0;
}

.photo-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.carousel-image {
  height: 280px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 175, 224, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-image {
    height: 200px;
  }
}

/* --------------------------------------------------------------------------
   Video Thumbnail Overlay
   -------------------------------------------------------------------------- */
.video-thumbnail {
  transition: opacity 0.3s ease;
  z-index: 5;
  cursor: pointer;
}

.video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item video {
  cursor: default;
}

/* --------------------------------------------------------------------------
   Discount Modal - Mobile Optimization
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  #discountModal > div {
    max-width: 92vw;
  }
  #discountModal .p-8 {
    padding: 1.25rem;
  }
  #discountModal .lg\:p-12 {
    padding: 1.25rem;
  }
  #discountModal .w-32 {
    width: 5.5rem;
    height: 5.5rem;
  }
  #discountModal .text-3xl {
    font-size: 1.25rem;
  }
  #discountModal .text-5xl {
    font-size: 2.25rem;
  }
  #discountModal .px-8 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  #discountModal .py-4 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  #discountModal .grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  #discountModal .mb-6 {
    margin-bottom: 0.75rem;
  }
  #discountModal .mb-8 {
    margin-bottom: 1rem;
  }
}

