/* Architectural Studio - Jade Teal & Amber Theme */

:root {
  --primary-color: #00695C;
  --primary-dark: #004D40;
  --primary-light: #00897B;
  --secondary-color: #FFB300;
  --secondary-dark: #FF8F00;
  --secondary-light: #FFC107;
  --text-dark: #263238;
  --text-light: #ECEFF1;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 105, 92, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 105, 92, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 105, 92, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 105, 92, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark) !important;
  background-color: #FFFFFF !important;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-dark) !important;
  line-height: 1.2;
}

.display-1 { font-size: clamp(2.5rem, 8vw, 5rem) !important; }
.display-2 { font-size: clamp(2.2rem, 7vw, 4.5rem) !important; }
.display-3 { font-size: clamp(2rem, 6vw, 4rem) !important; }
.display-4 { font-size: clamp(1.8rem, 5vw, 3.5rem) !important; }
.display-5 { font-size: clamp(1.5rem, 4vw, 3rem) !important; }
.display-6 { font-size: clamp(1.3rem, 3vw, 2.5rem) !important; }

.fs-1 { font-size: 2.5rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }

.lead {
  font-size: 1.25rem !important;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dark) !important;
}

.text-muted {
  color: #607D8B !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Hero Video Section */
.hero-video-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.video-background {
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.85) 0%, rgba(0, 77, 64, 0.75) 50%, rgba(255, 179, 0, 0.3) 100%);
  z-index: 1;
}

/* Navbar */
.navbar {
  background: transparent !important;
  transition: var(--transition-base);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(0, 105, 92, 0.95) !important;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.75rem !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-base);
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  padding: 0.75rem 1rem !important;
  position: relative;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 2rem);
}

/* Hero Content */
.hero-content h1 {
  color: #FFFFFF !important;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.875rem 2rem !important;
  border-radius: 50px !important;
  transition: var(--transition-base);
  border: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.125rem !important;
}

.btn-sm {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.875rem !important;
}

.btn-primary,
.btn.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(0, 105, 92, 0.3);
}

.btn-primary:hover,
.btn.bg-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 92, 0.4);
}

.btn-secondary,
.btn.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

.btn-secondary:hover,
.btn.bg-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%) !important;
  color: var(--text-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  color: #FFFFFF !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
}

.btn-outline-dark:hover {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  color: rgba(255, 255, 255, 0.9) !important;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.scroll-indicator .small {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

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

/* Benefits Section */
.benefits-section {
  background: linear-gradient(to bottom, #FFFFFF 0%, var(--gray-100) 100%);
  padding: 6rem 0;
}

.benefits-section h2 {
  position: relative;
  display: inline-block;
}

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

.benefit-card {
  transition: var(--transition-base);
  border: 1px solid var(--gray-200) !important;
  height: 100%;
  background: #FFFFFF !important;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--primary-light) !important;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  transition: var(--transition-base);
}

.benefit-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  transform: rotate(360deg) scale(1.1);
}

.icon-wrapper i {
  color: #FFFFFF !important;
}

.benefit-card h5 {
  color: var(--primary-dark) !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Services Showcase */
.services-showcase {
  padding: 6rem 0;
  background: #FFFFFF;
}

.services-showcase img {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-base);
}

.services-showcase img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 105, 92, 0.3);
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: start;
  transition: var(--transition-base);
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list li:hover {
  padding-left: 1rem;
  background: rgba(0, 105, 92, 0.03);
}

.services-list li i {
  color: var(--secondary-color) !important;
  margin-top: 0.25rem;
}

.services-list li h6 {
  color: var(--primary-dark) !important;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.services-list li p {
  color: var(--text-dark) !important;
  font-size: 0.9rem;
}

/* Transformation Section */
.transformation-section {
  padding: 6rem 0;
  background: var(--gray-100);
}

.transformation-section img {
  border-radius: 15px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.transformation-section img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Parallax Container */
.parallax-container {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 105, 92, 0.75);
}

.parallax-section * {
  position: relative;
  z-index: 1;
}

.parallax-item {
  animation: fadeInUp 0.8s ease-out;
}

/* Timeline */
.timeline-container {
  padding: 6rem 0;
  background: #FFFFFF;
}

.timeline-section {
  position: relative;
  padding-left: 2rem;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.milestone-marker {
  position: relative;
}

.marker-dot {
  width: 24px;
  height: 24px;
  background: var(--secondary-color);
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 3px var(--primary-color);
  position: relative;
}

.milestone-marker h4 {
  color: var(--primary-dark) !important;
  font-weight: 600;
}

.milestone-marker p {
  color: var(--text-dark) !important;
}

/* Philosophy Statement */
.philosophy-statement {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
  text-align: center;
}

.philosophy-statement .lead {
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--primary-dark) !important;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Results Section */
.results-section {
  padding: 6rem 0;
  background: var(--primary-dark);
  color: #FFFFFF !important;
}

.results-section h2,
.results-section h3,
.results-section h4 {
  color: #FFFFFF !important;
}

.results-section .display-3 {
  color: var(--secondary-color) !important;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.results-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Cards */
.card {
  border: none !important;
  border-radius: 15px !important;
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  background: #FFFFFF !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-dark) !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-dark) !important;
  line-height: 1.7;
}

.class-card {
  border-left: 4px solid var(--primary-color) !important;
  transition: var(--transition-base);
}

.class-card:hover {
  border-left-color: var(--secondary-color) !important;
  background: rgba(0, 105, 92, 0.02) !important;
}

/* Forms */
.form-label {
  color: var(--primary-dark) !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control,
.form-select {
  border: 2px solid var(--gray-300) !important;
  border-radius: 10px !important;
  padding: 0.875rem 1.25rem !important;
  font-size: 1rem !important;
  transition: var(--transition-base);
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 105, 92, 0.15) !important;
  outline: none;
}

.form-control-lg {
  padding: 1rem 1.5rem !important;
  font-size: 1.125rem !important;
}

.form-control::placeholder {
  color: #B0BEC5 !important;
}

.form-text {
  color: #78909C !important;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.invalid-feedback {
  color: #D32F2F !important;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-check-input {
  border: 2px solid var(--gray-300) !important;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 105, 92, 0.15) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
  cursor: pointer;
  user-select: none;
}

/* Alerts */
.alert {
  border: none !important;
  border-radius: 12px !important;
  padding: 1.25rem 1.5rem !important;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.alert-success {
  background: linear-gradient(135deg, #43A047 0%, #66BB6A 100%) !important;
  color: #FFFFFF !important;
}

.alert-light {
  background: var(--gray-100) !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--gray-300) !important;
}

.alert i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

/* Badge */
.badge {
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border-radius: 50px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-primary.badge {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
}

.bg-secondary.badge {
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
}

/* Accordion */
.accordion {
  border-radius: 15px;
  overflow: hidden;
}

.accordion-item {
  border: none !important;
  border-bottom: 1px solid var(--gray-200) !important;
  background: #FFFFFF !important;
}

.accordion-item:last-child {
  border-bottom: none !important;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: #FFFFFF !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  transition: var(--transition-base);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.08) 0%, rgba(255, 179, 0, 0.08) 100%) !important;
  color: var(--primary-color) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 105, 92, 0.15) !important;
  border-color: var(--primary-color) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300695C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFB300'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  padding: 1.5rem !important;
  color: var(--text-dark) !important;
  background: #FFFFFF !important;
  line-height: 1.7;
}

/* Carousel */
.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-inner {
  border-radius: 15px;
}

.carousel-item {
  height: 500px;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.carousel-indicators .active {
  background-color: var(--secondary-color);
  border-color: #FFFFFF;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 105, 92, 0.8);
  border-radius: 50%;
  opacity: 0.8;
  transition: var(--transition-base);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Floating Action Buttons */
.floating-action-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fab-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  color: #FFFFFF !important;
  font-size: 1.5rem;
}

.fab-phone {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.fab-email {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.fab-button:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-xl);
}

/* Nav Tabs/Pills */
.nav {
  border-bottom: 2px solid var(--gray-200);
}

.nav-link.text-dark {
  color: var(--text-dark) !important;
  padding: 1rem 1.5rem;
  border-radius: 0;
  transition: var(--transition-base);
  font-weight: 500;
  position: relative;
}

.nav-link.text-dark:hover {
  color: var(--primary-color) !important;
  background: rgba(0, 105, 92, 0.05) !important;
}

.nav-link.text-dark.active {
  color: var(--primary-color) !important;
  background: transparent !important;
}

.nav-link.text-dark.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 179, 0, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 179, 0, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.cta-section h2,
.cta-section p {
  color: #FFFFFF !important;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #263238 0%, #37474F 100%);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer h5 {
  color: #FFFFFF !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  transition: var(--transition-base);
  display: inline-block;
}

.footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 1.25rem;
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--text-dark) !important;
  transform: translateY(-5px) rotate(360deg);
}

/* Utility Classes */
.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%) !important;
}

.bg-light {
  background: var(--gray-100) !important;
}

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.rounded-4 { border-radius: 1rem !important; }
.rounded-pill { border-radius: 50rem !important; }

.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-90 { opacity: 0.9 !important; }

/* Responsive Utilities */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: rgba(0, 105, 92, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .floating-action-buttons {
    bottom: 1rem;
    right: 1rem;
  }
  
  .fab-button {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .services-showcase .ps-lg-5 {
    padding-left: 0 !important;
    margin-top: 2rem;
  }
  
  .carousel-item {
    height: 400px;
  }
  
  .benefits-section,
  .services-showcase,
  .transformation-section,
  .timeline-container,
  .philosophy-statement,
  .results-section,
  .cta-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-content .lead {
    font-size: 1.125rem !important;
  }
  
  .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .floating-action-buttons {
    flex-direction: row;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
  
  .parallax-section {
    background-attachment: scroll !important;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .text-md-start,
  .footer .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .benefits-section,
  .services-showcase,
  .transformation-section,
  .timeline-container,
  .philosophy-statement,
  .results-section,
  .cta-section {
    padding: 3rem 0;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper i {
    font-size: 1.5rem !important;
  }
  
  .card-body {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .floating-action-buttons,
  .scroll-indicator,
  .btn,
  .footer {
    display: none !important;
  }
  
  body {
    color: #000000 !important;
  }
  
  .hero-video-section {
    height: auto !important;
    min-height: 0 !important;
  }
  
  .video-background,
  .video-overlay {
    display: none !important;
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-zoom {
  animation: zoomIn 0.8s ease-out;
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus Styles */
*:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 3px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: var(--text-dark);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--text-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid var(--gray-300);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}