/* ===================================
   Architectural Studio - Midnight Steel & Burnished Copper Theme
   Primary: #2C3E50 (Midnight Steel)
   Secondary: #E67E22 (Burnished Copper)
   =================================== */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --light-bg: #f8f9fa;
  --dark-bg: #1a252f;
  --text-light: #ffffff;
  --text-dark: #2C3E50;
  --copper-light: #f39c12;
  --copper-dark: #d35400;
  --steel-light: #34495e;
  --steel-lighter: #4a5f7f;
  --transition-speed: 0.3s;
  --box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
  --hover-transform: translateY(-5px);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark) !important;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--light-bg) !important;
}

html {
  scroll-behavior: smooth;
}

/* === TYPOGRAPHY === */
.display-2, .display-3, .display-4, .display-5 {
  font-weight: 700 !important;
  letter-spacing: -1px;
  color: var(--primary-color) !important;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  color: var(--steel-lighter) !important;
}

.text-white {
  color: #ffffff !important;
}

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

.text-muted {
  color: var(--steel-lighter) !important;
}

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

/* === NAVIGATION === */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%) !important;
  padding: 1rem 0 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
  backdrop-filter: blur(10px);
}

.navbar.fixed-top {
  z-index: 1030;
}

.navbar-dark {
  background-color: transparent !important;
}

.navbar-brand {
  font-size: 1.5rem !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

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

.navbar-brand.fw-bold {
  font-weight: 800 !important;
}

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

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-speed) ease;
  text-decoration: none !important;
}

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

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

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

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

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

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, rgba(230, 126, 34, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(230, 126, 34, 0.1) 87.5%, rgba(230, 126, 34, 0.1)),
    linear-gradient(150deg, rgba(230, 126, 34, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(230, 126, 34, 0.1) 87.5%, rgba(230, 126, 34, 0.1));
  background-size: 80px 80px;
  opacity: 0.3;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

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

.hero-section .text-white {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .display-2 {
  color: var(--text-light) !important;
  animation: fadeInUp 1s ease;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  animation: fadeInUp 1.2s ease;
}

.hero-section .fs-5 {
  color: rgba(255, 255, 255, 0.85) !important;
  animation: fadeInUp 1.4s ease;
}

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

/* === BUTTONS === */
.btn {
  padding: 0.75rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease !important;
  border: 2px solid transparent !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

.btn:not(.btn-outline-dark):not(.btn-outline-secondary):not(.btn-light) {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--copper-dark) 100%) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
}

.btn:not(.btn-outline-dark):not(.btn-outline-secondary):not(.btn-light):hover {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--secondary-color) 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3) !important;
}

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

.btn-outline-dark:hover {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3) !important;
}

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

.btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
}

.btn-light {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  border-color: #ffffff !important;
}

.btn-light:hover {
  background-color: var(--light-bg) !important;
  color: var(--secondary-color) !important;
  transform: translateY(-3px);
}

.btn-group .btn,
.btn-group-vertical .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;
}

.d-grid .btn {
  width: 100%;
}

/* === CARDS === */
.card {
  border: none !important;
  border-radius: 15px !important;
  transition: all var(--transition-speed) ease;
  background-color: #ffffff !important;
  overflow: hidden;
}

.card.shadow-lg {
  box-shadow: 0 15px 50px rgba(44, 62, 80, 0.1) !important;
}

.card.shadow {
  box-shadow: 0 5px 25px rgba(44, 62, 80, 0.08) !important;
}

.card.shadow-sm {
  box-shadow: 0 2px 15px rgba(44, 62, 80, 0.05) !important;
}

.card:hover {
  transform: var(--hover-transform);
  box-shadow: 0 20px 60px rgba(44, 62, 80, 0.15) !important;
}

.card.border-0 {
  border: none !important;
}

.card-body {
  padding: 2rem !important;
}

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

.card-text {
  color: var(--steel-lighter) !important;
  line-height: 1.8;
}

.card-img-top {
  border-radius: 0 !important;
  transition: all var(--transition-speed) ease;
  height: 250px;
  object-fit: cover;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.room-card {
  height: 100%;
}

.room-card .card-body {
  display: flex;
  flex-direction: column;
}

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

/* === FORMS === */
.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  transition: all var(--transition-speed) ease;
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.15) !important;
  background-color: #ffffff !important;
}

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

.form-label {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
}

.form-check-input {
  border: 2px solid var(--steel-lighter) !important;
  transition: all var(--transition-speed) ease;
}

.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.25rem rgba(230, 126, 34, 0.15) !important;
}

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

/* === ICONS === */
.bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bi-chevron-down,
.bi-arrow-right,
.bi-box-arrow-up-right {
  transition: all var(--transition-speed) ease;
}

.bi-chevron-down {
  color: var(--secondary-color) !important;
  animation: bounce 2s infinite;
}

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

.fs-1 {
  font-size: 3rem !important;
}

.fs-3 {
  font-size: 1.75rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

/* === SECTIONS === */
section {
  padding: 5rem 0;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pb-3 {
  padding-bottom: 2rem !important;
}

.pb-4 {
  padding-bottom: 3rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

/* === PARALLAX SECTION === */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--text-light) !important;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(26, 37, 47, 0.9) 100%);
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

/* === TIMELINE === */
.timeline-item {
  position: relative;
  padding: 2rem 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary-color), var(--copper-dark));
  transform: translateX(-50%);
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border: 4px solid #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-item .card {
  width: 45%;
}

.timeline-item:nth-child(even) .card {
  margin-left: auto;
}

/* === BADGES === */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}

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

.badge.bg-success {
  background-color: #28a745 !important;
  color: #ffffff !important;
}

.badge.bg-info {
  background-color: #17a2b8 !important;
  color: #ffffff !important;
}

.badge.bg-secondary {
  background-color: var(--steel-lighter) !important;
  color: #ffffff !important;
}

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

/* === ALERTS === */
.alert {
  border-radius: 15px !important;
  border: none !important;
  padding: 1.25rem 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.alert.rounded-pill {
  border-radius: 50px !important;
}

/* === TABLES === */
.table-responsive {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(44, 62, 80, 0.08);
}

.table {
  margin-bottom: 0 !important;
  background-color: #ffffff !important;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  color: var(--text-light) !important;
}

.table thead th {
  border: none !important;
  padding: 1.25rem 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  color: var(--text-light) !important;
}

.table tbody tr {
  transition: all var(--transition-speed) ease;
}

.table-hover tbody tr:hover {
  background-color: rgba(230, 126, 34, 0.05) !important;
  transform: scale(1.01);
}

.table tbody td {
  padding: 1rem !important;
  vertical-align: middle !important;
  color: var(--text-dark) !important;
  border-color: #e0e0e0 !important;
}

.table-bordered {
  border: 1px solid #e0e0e0 !important;
}

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

.accordion-item {
  border: none !important;
  border-bottom: 1px solid #e0e0e0 !important;
  background-color: #ffffff !important;
}

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

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

.accordion-button {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  font-size: 1.1rem !important;
  transition: all var(--transition-speed) ease;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%) !important;
  color: var(--text-light) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !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='%232C3E50'%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='%23ffffff'%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;
  background-color: #f8f9fa !important;
  color: var(--text-dark) !important;
  line-height: 1.8;
}

.accordion-collapse {
  transition: all 0.4s ease;
}

/* === CAROUSEL === */
.carousel {
  border-radius: 15px;
  overflow: hidden;
}

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

.carousel-item {
  height: 500px;
  transition: transform 0.6s ease-in-out;
}

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

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 0.8;
  transition: all var(--transition-speed) ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 1.5rem;
}

.carousel-indicators {
  margin-bottom: 1.5rem;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--secondary-color) !important;
  opacity: 0.5;
  transition: all var(--transition-speed) ease;
}

.carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.3);
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  color: var(--text-light) !important;
  padding: 4rem 0 2rem;
}

footer h5,
footer .h5 {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}

footer p,
footer a,
footer li {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
}

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

footer .list-unstyled li {
  margin-bottom: 0.75rem;
  transition: all var(--transition-speed) ease;
}

footer .list-unstyled li:hover {
  transform: translateX(5px);
}

footer .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
}

/* === BACKGROUND UTILITIES === */
.bg-dark {
  background-color: var(--primary-color) !important;
}

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

.bg-white {
  background-color: #ffffff !important;
}

/* === TEXT UTILITIES === */
.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

/* === ROUNDED UTILITIES === */
.rounded {
  border-radius: 10px !important;
}

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

.rounded-circle {
  border-radius: 50% !important;
}

/* === OPACITY UTILITIES === */
.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

/* === POSITION UTILITIES === */
.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 1020;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.end-0 {
  right: 0 !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

/* === SPACING UTILITIES === */
.m-3 {
  margin: 1.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-2 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 2rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-1 {
  margin-right: 0.5rem !important;
}

.me-2 {
  margin-right: 1rem !important;
}

.me-3 {
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

/* === FLEX UTILITIES === */
.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-column {
  flex-direction: column !important;
}

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

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

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

.align-middle {
  vertical-align: middle !important;
}

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

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

.gap-2 {
  gap: 1rem !important;
}

.gap-3 {
  gap: 1.5rem !important;
}

.gap-4 {
  gap: 2rem !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

/* === WIDTH & HEIGHT UTILITIES === */
.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

/* === OVERFLOW UTILITIES === */
.overflow-hidden {
  overflow: hidden !important;
}

/* === SHADOW ANIMATIONS === */
@keyframes shadowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(230, 126, 34, 0.6);
  }
}

/* === LOADING ANIMATION === */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* === HOVER EFFECTS === */
.img-fluid {
  transition: all var(--transition-speed) ease;
}

.img-fluid:hover {
  transform: scale(1.05);
}

/* === SOCIAL MEDIA ICONS === */
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin,
.bi-youtube {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.bi-facebook:hover {
  color: #1877f2 !important;
  transform: scale(1.2);
}

.bi-instagram:hover {
  color: #e4405f !important;
  transform: scale(1.2);
}

.bi-twitter:hover {
  color: #1da1f2 !important;
  transform: scale(1.2);
}

.bi-linkedin:hover {
  color: #0077b5 !important;
  transform: scale(1.2);
}

.bi-youtube:hover {
  color: #ff0000 !important;
  transform: scale(1.2);
}

/* === RESPONSIVE TYPOGRAPHY === */
@media (max-width: 768px) {
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(44, 62, 80, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .nav-link::after {
    display: none;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .timeline-item::before {
    left: 20px;
  }
  
  .timeline-item::after {
    left: 20px;
  }
  
  .timeline-item .card {
    width: 100%;
    margin-left: 60px !important;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .parallax-section {
    background-attachment: scroll;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
}

/* === SMALL MOBILE === */
@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .fs-5 {
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1rem !important;
  }
  
  .table {
    font-size: 0.875rem;
  }
}

/* === PRINT STYLES === */
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #000000 !important;
  }
}

/* === ACCESSIBILITY === */
*:focus {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

a:focus,
button:focus,
.btn:focus {
  outline: 2px solid var(--secondary-color) !important;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

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

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

/* === SELECTION === */
::selection {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

/* === SMOOTH TRANSITIONS === */
* {
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

a, button, .btn, .nav-link, .card {
  transition: all var(--transition-speed) ease !important;
}

/* === END OF STYLES === */