/* Architecture Studio - Deep Indigo Gold Theme */

:root {
  --primary-color: #1A237E;
  --secondary-color: #C0A062;
  --primary-dark: #0D1442;
  --primary-light: #3949AB;
  --secondary-light: #D4B779;
  --secondary-dark: #9A804E;
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --bg-light: #F8F9FA;
  --bg-overlay: rgba(26, 35, 126, 0.95);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #FFFFFF;
}

/* Typography */
.display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: -0.02em;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background-color: var(--primary-color) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(26, 35, 126, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(26, 35, 126, 0.15);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color) !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--secondary-light) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: var(--transition);
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border-color: var(--secondary-color) !important;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(192, 160, 98, 0.25) !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='%23C0A062' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
  color: var(--text-light) !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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="%23C0A062" fill-opacity="0.05"%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.3;
}

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

.hero-content .display-3 {
  color: var(--text-light) !important;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(1rem, 2vw, 1.5rem);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.parallax-content {
  transition: transform 0.3s ease-out;
}

/* Timeline Visual */
.timeline-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.4s backwards;
}

.legacy-flow-container {
  position: relative;
  min-height: 400px;
}

.timeline-line {
  position: absolute;
  width: 3px;
  height: 80%;
  background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-light));
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(192, 160, 98, 0.5);
  animation: growLine 1.5s ease-out 0.8s backwards;
}

.rune-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  box-shadow: 0 8px 30px rgba(192, 160, 98, 0.4);
  z-index: 3;
  animation: pulse 2s infinite;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(192, 160, 98, 0.2);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 1s; }
.floating-icon:nth-child(4) { bottom: 35%; right: 20%; animation-delay: 1.5s; }

.generation-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--secondary-color) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
  z-index: 4;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: none;
  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.6s, height 0.6s;
  z-index: -1;
}

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

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

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

.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192, 160, 98, 0.4) !important;
}

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

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3) !important;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

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

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-color) !important;
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sections */
.intro-section,
.services-showcase,
.why-choose-section,
.cta-section {
  padding: 5rem 0;
  position: relative;
}

.intro-section {
  background-color: var(--bg-light);
}

.services-showcase {
  background: linear-gradient(to bottom, #FFFFFF, var(--bg-light));
}

.why-choose-section {
  background-color: #FFFFFF;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light) !important;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23C0A062" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
  opacity: 0.4;
}

.cta-section h2,
.cta-section .display-4,
.cta-section .display-5 {
  color: var(--text-light) !important;
}

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

/* Service Cards */
.service-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(192, 160, 98, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

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

.service-card p {
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Feature Items */
.feature-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-left: 4px solid var(--secondary-color);
}

.feature-item:hover {
  background: #FFFFFF;
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item .icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  margin-right: 1.5rem;
}

.feature-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-item p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(192, 160, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-color) !important;
  font-weight: 700;
}

.timeline-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.timeline-content h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content .text-muted {
  color: var(--secondary-color) !important;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Team Hexagon */
.team-hexagon-wrapper {
  padding: 2rem 0;
}

.hexagon-container {
  position: relative;
  width: 200px;
  margin: 0 auto 1.5rem;
}

.hexagon-shape {
  width: 200px;
  height: 230px;
  background: var(--primary-color);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.hexagon-shape:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
}

.hexagon-shape img {
  width: 190px;
  height: 220px;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--text-light) !important;
  padding: 1rem;
  text-align: center;
}

.hexagon-shape:hover .hexagon-overlay {
  opacity: 1;
}

.hexagon-overlay h5 {
  color: var(--secondary-color) !important;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hexagon-overlay p {
  color: var(--text-light) !important;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cards */
.card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  overflow: hidden;
}

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

.card-title {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.card-body {
  padding: 2rem;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #FFFFFF;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(192, 160, 98, 0.25) !important;
  background-color: #FFFFFF !important;
}

.form-floating > label {
  color: #6C757D !important;
  padding: 1rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--secondary-color) !important;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(192, 160, 98, 0.25) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
  margin-left: 0.5rem;
}

/* Alert */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1.25rem 1.5rem;
}

.alert-light {
  background-color: var(--bg-light) !important;
  color: var(--text-dark) !important;
  border-left: 4px solid var(--secondary-color) !important;
}

.alert .bi {
  color: var(--secondary-color) !important;
  font-size: 1.25rem;
}

/* Table */
.table {
  color: var(--text-dark);
}

.table th {
  color: var(--primary-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--secondary-color) !important;
}

.table-borderless th,
.table-borderless td {
  border: none !important;
}

.table-sm th,
.table-sm td {
  padding: 0.5rem;
}

.table-bordered {
  border: 2px solid #E0E0E0 !important;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #E0E0E0 !important;
}

.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.accordion-item {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  background-color: #FFFFFF;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0;
}

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

.accordion-button {
  background-color: var(--bg-light) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.accordion-button:not(.collapsed) .bi {
  color: var(--secondary-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='%231A237E'%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='%23C0A062'%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;
  color: var(--text-dark);
  line-height: 1.7;
}

.accordion-button .bi {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  color: var(--secondary-color) !important;
}

/* Carousel */
.carousel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-item {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light) !important;
  padding: 4rem 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item p {
  color: var(--text-light) !important;
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.carousel-item h5 {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

.carousel-item .bi-star-fill {
  color: var(--secondary-color) !important;
  margin: 0 0.25rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: rgba(192, 160, 98, 0.9) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  transition: var(--transition);
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-50%) scale(1.1);
}

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

/* Tabs */
.nav-tabs {
  border-bottom: 2px solid #E0E0E0;
}

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

.nav-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  color: var(--primary-color) !important;
  background: transparent;
}

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

.tab-content {
  padding: 2rem 0;
}

.tab-pane {
  animation: fadeIn 0.5s ease;
}

/* Dropdown */
.dropdown-toggle {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background-color: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

/* Button Group */
.btn-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-group .btn {
  border-radius: 0 !important;
}

.btn-group .btn:first-child {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}

.btn-group .btn:last-child {
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}

.filter-btn {
  padding: 0.75rem 1.5rem !important;
}

/* Privacy Section */
.privacy-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light) !important;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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="%23C0A062" fill-opacity="0.05"%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.3;
}

.privacy-hero h1 {
  color: var(--text-light) !important;
}

.last-updated {
  color: var(--secondary-color) !important;
  font-weight: 500;
}

.sidebar-nav {
  position: sticky;
  top: 100px;
}

.sidebar-nav .nav {
  flex-direction: column;
}

.sidebar-nav .nav-link {
  color: var(--text-dark) !important;
  padding: 0.75rem 1rem;
  border-left: 3px solid transparent;
  transition: var(--transition);
  font-weight: 500;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  color: var(--primary-color) !important;
  border-left-color: var(--secondary-color);
  background-color: var(--bg-light);
}

.privacy-content {
  padding: 2rem 0;
}

.privacy-content h2 {
  color: var(--primary-color) !important;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--secondary-color);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  color: var(--primary-color) !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-content p,
.privacy-content li {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content ul,
.privacy-content ol {
  padding-left: 2rem;
}

.section-intro {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-color);
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light) !important;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box h3,
.highlight-box p {
  color: var(--text-light) !important;
}

.highlight-box .bi {
  color: var(--secondary-color) !important;
  font-size: 2rem;
}

.contact-cta {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light) !important;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--secondary-color) !important;
  text-decoration: none;
}

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

.footer .bi {
  color: var(--secondary-color) !important;
  font-size: 1.25rem;
}

.footer .text-decoration-none {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.footer .text-decoration-none:hover {
  transform: translateX(5px);
}

.footer hr {
  border-color: rgba(192, 160, 98, 0.3) !important;
  margin: 2rem 0 1.5rem;
}

/* Bootstrap Icons */
.bi {
  display: inline-block;
  vertical-align: middle;
}

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

.text-secondary {
  color: var(--secondary-color) !important;
}

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

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

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

.text-white {
  color: var(--text-light) !important;
}

.text-muted {
  color: #6C757D !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.rounded {
  border-radius: 12px !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes growLine {
  from {
    height: 0;
  }
  to {
    height: 80%;
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(26, 35, 126, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    background-color: rgba(192, 160, 98, 0.1);
  }
  
  .hero-section {
    min-height: auto;
    padding: 5rem 0 3rem;
  }
  
  .hero-content .display-3 {
    font-size: 2.5rem;
  }
  
  .timeline-visual {
    margin-top: 3rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .sidebar-nav {
    position: static;
    margin-bottom: 2rem;
  }
  
  .sidebar-nav .nav {
    flex-direction: row;
    overflow-x: auto;
  }
  
  .sidebar-nav .nav-link {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  
  .sidebar-nav .nav-link:hover,
  .sidebar-nav .nav-link.active {
    border-left: none;
    border-bottom-color: var(--secondary-color);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .display-6 {
    font-size: 1.25rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.95rem;
  }
  
  .intro-section,
  .services-showcase,
  .why-choose-section,
  .cta-section {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item .icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .hexagon-container {
    width: 150px;
  }
  
  .hexagon-shape {
    width: 150px;
    height: 173px;
  }
  
  .hexagon-shape img {
    width: 140px;
    height: 163px;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
  }
  
  .privacy-hero {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.75rem !important;
  }
  
  .service-card .icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .carousel-item {
    padding: 3rem 1.5rem;
    min-height: 350px;
  }
  
  .carousel-item p {
    font-size: 1rem;
  }
  
  .floating-icon {
    width: 30px;
    height: 30px;
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  
  .timeline-item {
    padding-left: 2.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .footer,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
  }
}