@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap");

/* ================================
   MODERN CSS RESET & BASE STYLES
   ================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  line-height: 1.7;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
  background-color: #ffffff;
  padding-top: 80px;
}

/* ================================
   MODERN COLOR SYSTEM
   ================================ */
:root {
  --primary: #ff6b35;
  --primary-dark: #f7931e;
  --primary-light: #ffe4dc;
  --secondary: #64748b;
  --secondary-dark: #475569;
  --accent: #ff8c42;
  --accent-dark: #e6722b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --black: #000000;
  --professional-blue: #ff6b35;
  --professional-green: #f7931e;
  --professional-gray: #ff8c42;
  
  /* Modern Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --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);
  
  /* Design System */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ================================
   MODERN TYPOGRAPHY SYSTEM
   ================================ */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

h3, .h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
}

h4, .h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5, .h5 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-md { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

/* Text Colors */
.text-white { color: var(--white) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }
.text-color { color: var(--primary) !important; }
.text-color-primary { color: var(--primary) !important; }

/* ================================
   CONTAINER & LAYOUT SYSTEM
   ================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-fluid {
    padding: 0 2rem;
  }
}

/* ================================
   MODERN FORM SYSTEM
   ================================ */
input[type=email], 
input[type=password], 
input[type=text], 
input[type=tel],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--white);
  transition: var(--transition);
  outline: none;
}

input[type=email]:focus, 
input[type=password]:focus, 
input[type=text]:focus, 
input[type=tel]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

input[type=email]:hover, 
input[type=password]:hover, 
input[type=text]:hover, 
input[type=tel]:hover,
textarea:hover,
select:hover {
  border-color: var(--gray-300);
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 0.875rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

/* ================================
   MODERN BUTTON SYSTEM
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  white-space: nowrap;
  font-family: inherit;
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Button Variants */
.btn-main {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-main:hover:not(:disabled) {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-solid-border {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-solid-border:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* Mobile Button Improvements */
@media (max-width: 991.98px) {
  .d-none.d-lg-block {
    display: block !important;
    margin-top: 1rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-lg);
  }
}

.btn-solid-white {
  background: var(--white);
  color: var(--gray-800);
  border-color: var(--white);
  box-shadow: var(--shadow);
}

.btn-solid-white:hover:not(:disabled) {
  background: var(--gray-50);
  border-color: var(--gray-50);
  color: var(--gray-800);
  box-shadow: var(--shadow-md);
}

.btn-transparent {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.btn-transparent:hover:not(:disabled) {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-700);
}

.btn-white {
  background: var(--white);
  color: var(--gray-800);
  border-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  min-height: 36px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 52px;
}

.btn-round {
  border-radius: 2rem;
}

.btn-round-full {
  border-radius: 9999px;
}

/* Button Icon */
.btn.btn-icon i {
  font-size: 1rem;
}

/* ================================
   MODERN NAVIGATION SYSTEM
   ================================ */
.header-padding {
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .header-padding {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .header-padding {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .header-padding {
    padding: 0 3rem;
  }
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  min-height: auto !important;
}

.navbar {
  min-height: auto !important;
  padding: 0 !important;
}

.navbar > .container-fluid {
  align-items: center;
  min-height: auto;
}

/* Mobile Navigation Container */
@media (max-width: 991.98px) {
  .navigation .container-fluid {
    padding: 0.125rem 1rem;
    min-height: auto;
    margin-top: 1.5em;
  }
  
  .navigation {
    background: rgba(255, 255, 255, 0.98);
    min-height: auto;
  }
}

.navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

#navbar {
  padding: 0.25rem 0 !important;
  transition: var(--transition);
  min-height: auto !important;
}

/* Mobile navigation - even thinner */
@media (max-width: 991.98px) {
  #navbar {
    padding: 0.125rem 0 !important;
    min-height: auto !important;
  }
}

#navbar .navbar-nav {
  gap: 0.25rem;
}

#navbar .nav-link {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--gray-700);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  transition: var(--transition);
  border-radius: var(--border-radius);
  position: relative;
  text-decoration: none;
}

/* Mobile Navigation Links */
@media (max-width: 991.98px) {
  #navbar .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
  }
  
  #navbar .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  #navbar .nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateX(8px);
  }
}

#navbar .nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
}

#navbar .nav-link.active,
#navbar .nav-item.active .nav-link {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 991.98px) {
  #navbar .nav-link.active,
  #navbar .nav-item.active .nav-link {
    background: var(--primary);
    color: var(--white);
    transform: none;
  }
}

#navbar.nav-text-white {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

#navbar.nav-text-white .nav-link {
  color: var(--white);
}

#navbar.nav-text-white .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

#navbar.nav-text-white .navbar-brand {
  color: var(--white);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gray-800);
  padding: 0;
  margin: 0;
}

.navbar-brand:hover {
  text-decoration: none;
  color: var(--primary);
}

.navbar-brand img {
  height: 35px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: var(--transition);
}

/* Mobile Logo Improvements */
@media (max-width: 991.98px) {
  .navbar-brand {
    padding: 0;
    margin: 0;
  }
  
  .navbar-brand img {
    height: 30px;
    max-width: 120px;
  }
}

/* Mobile Navigation */
.navbar-toggler {
  border: 2px solid var(--gray-300);
  padding: 0.25rem 0.5rem;
  background: var(--white);
  font-size: 1rem;
  color: var(--gray-700);
  transition: var(--transition);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: auto;
  line-height: 1;
}

/* Hide navbar-toggler on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
  outline: none;
  border-color: var(--primary);
}

.navbar-toggler:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
}

#navbar.nav-text-white .navbar-toggler {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

#navbar.nav-text-white .navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.navbar-collapse {
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 992px) {
  .navbar-collapse {
    margin-top: 0;
    padding: 0;
    border-top: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
}

#navbar.nav-text-white .navbar-collapse {
  border-top-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
  #navbar.nav-text-white .navbar-collapse {
    background: transparent;
    backdrop-filter: none;
  }
}

/* Logo Management */
.hidden-logo {
  display: none;
}

.mobile-logo {
  display: block;
}

@media (min-width: 992px) {
  .hidden-logo {
    display: block;
  }
  
  .mobile-logo {
    display: none;
  }
}

#navbar.nav-text-white .mobile-logo {
  display: block;
}

@media (min-width: 992px) {
  #navbar.nav-text-white .mobile-logo {
    display: none;
  }
  
  #navbar.nav-text-white .hidden-logo {
    display: block;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
  #navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
  }
  
  #navbar.nav-text-white {
    background: var(--white) !important;
  }
  
  #navbar.nav-text-white .nav-link {
    color: var(--gray-700);
  }
  
  #navbar.nav-text-white .navbar-toggler {
    color: var(--gray-700);
  }
  
  .navbar-nav {
    text-align: center;
    gap: 0;
  }
  
  .nav-link {
    padding: 1rem;
    margin: 0.25rem 0;
    border-radius: var(--border-radius);
  }
}

/* ================================
   MODERN SECTION SYSTEM
   ================================ */
.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-sm {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .section-sm {
    padding: 3.5rem 0;
  }
}

.section-lg {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-lg {
    padding: 8rem 0;
  }
}

.py-7 {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .py-7 {
    padding: 7rem 0;
  }
}

/* ================================
   BACKGROUND UTILITIES
   ================================ */
.bg-gray { background: var(--gray-50); }
.bg-light { background: var(--gray-100); }
.bg-primary { background: var(--primary); }
.bg-primary-dark { background: var(--primary-dark); }
.bg-primary-light { background: var(--primary-light); }
.bg-secondary { background: var(--secondary); }
.bg-dark { background: var(--gray-900); }
.bg-white { background: var(--white); }
.bg-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
.bg-gradient-dark { background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%); }

.bg-1 {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  position: relative;
}

.bg-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg/bg-2.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.bg-1 > * {
  position: relative;
  z-index: 2;
}

/* ================================
   MODERN BANNER & HERO
   ================================ */
.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  overflow: hidden;
}

.banner-img-part {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/bg/main-banner1.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

@media (max-width: 768px) {
  .banner-img-part {
    width: 100%;
    opacity: 0.2;
  }
}

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

.banner .block {
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

.banner .block span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
}

.banner .block h1 {
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 800;
}

/* Page Title Sections */
.page-title {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: var(--white);
  text-align: center;
}

@media (max-width: 768px) {
  .page-title {
    padding: 6rem 0 4rem;
  }
}

.page-title .container {
  position: relative;
  z-index: 2;
}

.page-title .block span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.page-title .block h1 {
  color: var(--white);
  margin-bottom: 2rem;
}

.breadcumb-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcumb-nav li {
  font-size: 0.875rem;
}

.breadcumb-nav a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.breadcumb-nav a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

/* ================================
   MODERN CARD SYSTEM
   ================================ */
.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
}

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

/* Pricing Cards */
.pricing-block {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.pricing-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.2);
}

.pricing-block .price-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
}

.pricing-block .price-header span {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.pricing-block .price-header h2 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-block .price-header h6 {
  color: var(--gray-500);
}

.price-amount {
  color: #ff6b35 !important;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BTI Orange Outline Buttons */
.btn-outline-primary {
  border: 2px solid #ff6b35 !important;
  color: #ff6b35 !important;
  background: transparent !important;
  border-radius: 0.75rem !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  border-color: #ff6b35 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3) !important;
}

.pricing-block .price-body {
  flex: 1;
  padding: 1rem 0;
}

.pricing-block .price-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-block .price-body li {
  padding: 0.75rem 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-block .price-body li:last-child {
  border-bottom: none;
}

.pricing-block .price-body li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: 0.5rem;
}

.pricing-block .text-underline {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.pricing-block .text-underline:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* ================================
   SERVICE SECTIONS
   ================================ */
.service-2 .service-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.service-2 .service-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-2 .service-info {
  padding: 2rem 0;
}

@media (max-width: 991.98px) {
  .service-2 .service-info {
    padding: 2rem 0 0;
  }
}

.service-2 .service-info h3 {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.service-2 .service-info p {
  color: var(--gray-600);
  line-height: 1.8;
}

.content-padding {
  padding: 4rem 0;
}

/* About Section */
.about-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.about-item:hover {
  background: var(--gray-50);
  transform: translateY(-5px);
}

.about-item .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.about-item h4 {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.about-item p {
  color: var(--gray-600);
}

/* Process Section */
.process .icon-block {
  padding: 2rem 1rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.process .icon-block:hover {
  background: var(--gray-50);
  transform: translateY(-5px);
}

.process .icon-block i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process .icon-block h5 {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.process .icon-block p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.process-block {
  padding: 2rem 0;
}

.process-block span {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-block h2 {
  color: var(--gray-800);
  margin: 1rem 0 1.5rem;
}

.process-block p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* ================================
   CTA SECTIONS
   ================================ */
.cta {
  position: relative;
  padding: 6rem 0;
  background: url('../images/bg/section-bg5.jpg') center/cover no-repeat;
  color: var(--white);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

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

.cta-content {
  background: var(--white);
  color: var(--gray-800);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.cta-2 {
  padding: 4rem 0;
}

.cta-block {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 3rem;
}

/* ================================
   PORTFOLIO SECTION
   ================================ */
.portfolio {
  padding: 6rem 0 0;
}

.portfolio .heading {
  margin-bottom: 3rem;
}

.portfolio .heading h2 {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.portfolio .heading p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

.portfolio-gallery {
  margin-top: 3rem;
}

.portflio-item {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

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

.portflio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

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

/* ================================
   CASE STUDY TIMELINE
   ================================ */
.case-study {
  padding: 6rem 0;
  background: var(--gray-50);
}

.case-study-content {
  margin-bottom: 4rem;
}

.case-study-content h2 {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.case-study-content p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* Modern Timeline Layout */
.case-timeline {
  position: relative;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

/* Desktop Timeline - Center line */
@media (min-width: 992px) {
  .case-timeline {
    margin-left: 0;
    padding: 3rem 0;
  }
  
  .case-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-light);
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .case-timeline:last-child::before {
    bottom: 50%;
  }
}

/* Mobile Timeline - Left line */
@media (max-width: 991.98px) {
  .case-timeline {
    border-left: 3px solid var(--primary-light);
    margin-left: 1.5rem;
    padding-left: 2rem;
  }
  
  .case-timeline:last-child {
    border-left: none;
  }
}

.case-timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Desktop Timeline Dots - Center */
@media (min-width: 992px) {
  .case-timeline-dot {
    left: 50%;
    top: 3rem;
    transform: translateX(-50%);
  }
}

/* Mobile Timeline Dots - Left */
@media (max-width: 991.98px) {
  .case-timeline-dot {
    left: -12px;
    top: 2rem;
  }
}

/* Timeline Content Styling */
.case-timeline .case-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.case-timeline .case-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.case-timeline .case-content h4 {
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.case-timeline .case-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Desktop specific content positioning */
@media (min-width: 992px) {
  /* Left side content */
  .case-timeline:nth-child(odd) .case-content {
    margin-right: 3rem;
  }
  
  /* Right side content */
  .case-timeline:nth-child(even) .case-content {
    margin-left: 3rem;
  }
  
  /* Content arrows for desktop */
  .case-timeline:nth-child(odd) .case-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 2rem;
    width: 0;
    height: 0;
    border-left: 10px solid var(--white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  
  .case-timeline:nth-child(even) .case-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 2rem;
    width: 0;
    height: 0;
    border-right: 10px solid var(--white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

/* Step Numbers */
.case-timeline .case-content h4::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.case-study .container {
  counter-reset: step-counter;
}

/* Case Images - Hidden by default, can be used for icons */
.case-timeline .case-img {
  display: none;
}

@media (min-width: 992px) {
  .case-timeline .case-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .case-timeline .case-img::before {
    content: '📋';
    font-size: 2rem;
  }
  
  .case-timeline:nth-child(2) .case-img::before {
    content: '🔍';
  }
  
  .case-timeline:nth-child(3) .case-img::before {
    content: '🔧';
  }
  
  .case-timeline:nth-child(4) .case-img::before {
    content: '✅';
  }
}

/* ================================
   MODERN FOOTER
   ================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 1rem;
}

.footer .widget {
  margin-bottom: 2rem;
}

.footer .widget h3,
.footer .widget h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer .widget p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer .widget a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer .widget a:hover {
  color: var(--white);
  text-decoration: none;
}

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

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

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.widget-contact h6 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.widget-contact h6 i {
  color: var(--primary);
  font-size: 1.25rem;
}

.widget-contact h6 a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.widget-contact h6 a:hover {
  color: var(--white);
}

.footer-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.copyright a:hover {
  color: var(--white);
  text-decoration: none;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.letter-spacing {
  letter-spacing: 0.05em;
}

.lh-35 {
  line-height: 2.1875rem;
}

.mb-30 {
  margin-bottom: 1.875rem;
}

.mb-50 {
  margin-bottom: 3.125rem;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.d-none {
  display: none;
}

@media (min-width: 1024px) {
  .d-lg-block {
    display: block !important;
  }
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ================================
   RESPONSIVE UTILITIES
   ================================ */
@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .banner {
    min-height: 80vh;
  }
  
  .page-title {
    padding: 4rem 0 3rem;
  }
  
  .cta-content {
    padding: 2rem;
  }
  
  .pricing-block {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .case-timeline {
    margin-left: 0;
    border-left: none;
    padding: 2rem 0;
  }
  
  .case-timeline-dot {
    display: none;
  }
  
  .service-2 .service-img img {
    height: 300px;
  }
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Modern Hero Section */
.modern-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    var(--professional-blue) 0%, 
    var(--primary-dark) 50%, 
    var(--gray-800) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.min-vh-50 {
  min-height: 50vh;
}

.hero-content {
  color: white !important;
  z-index: 2;
  position: relative;
}

.hero-content * {
  color: white !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.text-gradient {
  color: white !important;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background-clip: unset;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  color: white;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white !important;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: white !important;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.floating-card h4 {
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.floating-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white !important;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: white !important;
  text-decoration: none;
  background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.icon-1 {
  top: 20%;
  left: 10%;
  animation: float-reverse 8s ease-in-out infinite;
}

.icon-2 {
  top: 60%;
  right: 15%;
  animation: float 7s ease-in-out infinite;
}

.icon-3 {
  bottom: 20%;
  left: 20%;
  animation: float-reverse 9s ease-in-out infinite;
}

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

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

/* Modern Contact Methods */
.contact-methods {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.modern-contact-card {
  background: white;
  border-radius: 1.5rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modern-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  flex-grow: 1;
}

.card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem !important;
  color: white !important;
  position: relative;
  overflow: hidden;
}

.card-icon i {
  position: relative;
  z-index: 10;
  font-size: 2rem !important;
  color: white !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure FontAwesome icons are visible */
.card-icon i.fas,
.card-icon i.far,
.card-icon i.fab {
  z-index: 20;
  display: inline-block !important;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
  z-index: 1;
}

.phone-card .card-icon {
  background: linear-gradient(135deg, var(--professional-blue), var(--primary-dark));
}

/* Remove emoji fallbacks - only use FontAwesome */

.email-card .card-icon {
  background: linear-gradient(135deg, var(--professional-green), var(--accent-dark));
}



.location-card .card-icon {
  background: linear-gradient(135deg, var(--professional-gray), var(--gray-700));
}



.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.card-header p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.card-body {
  padding: 1rem 2rem 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.contact-action {
  margin-bottom: 1.5rem;
}

.action-btn {
  display: block;
  text-decoration: none;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  transition: var(--transition);
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

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

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

.action-btn.primary {
  background: linear-gradient(135deg, var(--professional-blue), var(--primary-dark));
  color: white;
}

.action-btn.secondary {
  background: linear-gradient(135deg, var(--professional-green), var(--accent-dark));
  color: white;
}

.action-btn.accent {
  background: linear-gradient(135deg, var(--professional-gray), var(--gray-700));
  color: white;
}

.action-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.action-btn.primary:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 107, 53, 0.3);
}

.action-btn.secondary:hover {
  box-shadow: 0 10px 25px -5px rgba(247, 147, 30, 0.3);
}

.action-btn.accent:hover {
  box-shadow: 0 10px 25px -5px rgba(55, 65, 81, 0.3);
}

.btn-content {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.btn-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

.contact-info {
  border-top: 1px solid var(--gray-300);
  padding-top: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.info-item i {
  color: var(--gray-500);
  width: 16px;
}

/* Location Info Section */
.location-info-section {
  padding: 5rem 0;
  background: white;
}

.modern-map-container {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.modern-map-container:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.map-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, var(--gray-50), white);
  border-bottom: 1px solid var(--gray-200);
}

.map-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.map-title i {
  color: var(--primary);
}

.map-subtitle {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.map-frame {
  position: relative;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  transition: var(--transition);
}

.map-actions {
  padding: 1.5rem 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.btn-directions {
  background: linear-gradient(135deg, var(--professional-blue), var(--primary-dark));
  color: white;
}

.btn-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(255, 107, 53, 0.3);
  color: white;
  text-decoration: none;
}

/* Business Info Card */
.business-info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: var(--transition);
}

.business-info-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.info-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  transition: var(--transition);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.info-item:hover {
  background: var(--gray-50);
  transform: translateX(5px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-item.emergency-item {
  background: white;
  border: 2px solid var(--professional-blue);
  box-shadow: 0 4px 6px -1px rgba(255, 107, 53, 0.1);
}

.info-item.emergency-item:hover {
  background: rgba(255, 107, 53, 0.05);
  box-shadow: 0 8px 12px -2px rgba(255, 107, 53, 0.15);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.info-icon:not(.emergency) {
  background: white;
  border: 2px solid var(--gray-200);
  color: var(--professional-blue);
}

.info-icon.emergency {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.info-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(255, 107, 53, 0.3);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .modern-hero {
    min-height: 60vh;
    text-align: center;
  }
  
  .hero-visual {
    margin-top: 3rem;
    height: 300px;
  }
  
  .floating-card {
    max-width: 280px;
    padding: 1.5rem;
  }
  
  .location-info-section .row {
    flex-direction: column;
  }
  
  .business-info-card {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: 50vh;
    padding-top: 120px;
    padding-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
    color: white !important;
  }
  
  .hero-visual {
    height: 250px;
    margin-top: 2rem;
  }
  
  .floating-card {
    max-width: 250px;
    padding: 1.25rem;
  }
  
  .floating-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  /* Contact Methods Mobile */
  .contact-methods {
    padding: 3rem 0;
  }
  
  .contact-methods .row.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1rem;
  }
  
  .contact-methods .col-lg-4,
  .contact-methods .col-md-6 {
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .modern-contact-card {
    margin-bottom: 1.5rem !important;
  }
  
  .modern-contact-card:hover {
    transform: none;
  }
  
  .card-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .card-body {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .action-btn {
    padding: 0.875rem 1.25rem;
  }
  
  .btn-content {
    font-size: 1rem;
  }
  
  /* Location Info Mobile */
  .location-info-section {
    padding: 3rem 0;
  }
  
  .modern-map-container,
  .business-info-card {
    margin-bottom: 1.5rem;
  }
  
  .map-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .map-title {
    font-size: 1.5rem;
  }
  
  .map-frame iframe {
    height: 300px;
  }
  
  .map-actions {
    padding: 1.25rem 1.5rem;
  }
  
  .business-info-card {
    padding: 1.5rem;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--gray-200);
  }
  
  .info-item:hover {
    transform: none;
    background: var(--gray-50);
  }
  
  .info-content {
    text-align: center;
  }
  
  .emergency-btn {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .modern-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .floating-card {
    max-width: 220px;
    padding: 1rem;
  }
  
  .contact-methods .container,
  .location-info-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .modern-contact-card {
    border-radius: 1rem;
    margin-bottom: 1.5rem !important;
  }
  
  .card-header,
  .card-body,
  .business-info-card,
  .modern-map-container {
    padding: 1rem;
  }
  
  .map-header {
    padding: 1rem 1rem 0.75rem;
  }
  
  .map-actions {
    padding: 1rem;
  }
  
  .info-item {
    padding: 1rem;
    background: white !important;
    border: 1px solid var(--gray-200) !important;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .modern-contact-card:hover,
  .action-btn:hover,
  .btn-modern:hover,
  .emergency-btn:hover {
    transform: none;
  }
  
  .floating-card,
  .floating-icon {
    animation: none;
  }
  
  .action-btn::before,
  .btn-modern::before {
    transition: none;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(0px) rotate(0deg); }
  }
  
  @keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(0px) rotate(0deg); }
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact-card {
    border: 2px solid var(--gray-800);
  }
  
  .emergency-banner {
    border-width: 3px;
  }
  
  .contact-card-icon {
    border: 2px solid white;
  }
}

/* Quick Actions Mobile Bar */
.quick-actions-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  display: flex;
  z-index: 1000;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: env(safe-area-inset-bottom) 0 0;
}

.quick-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  color: var(--gray-600);
  transition: var(--transition);
  border-right: 1px solid var(--gray-200);
}

.quick-action-btn:last-child {
  border-right: none;
}

.quick-action-btn:hover,
.quick-action-btn:active {
  background: var(--gray-50);
  color: var(--primary);
  text-decoration: none;
}

.quick-action-btn.office:hover,
.quick-action-btn.office:active {
  color: var(--professional-blue);
  background: rgba(255, 107, 53, 0.1);
}

.quick-action-btn.emergency:hover,
.quick-action-btn.emergency:active {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.quick-action-btn.email:hover,
.quick-action-btn.email:active {
  color: var(--professional-green);
  background: rgba(247, 147, 30, 0.1);
}

.quick-action-btn i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.quick-action-btn span {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Back to Top Button */
.btn-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Mobile body padding for quick actions */
@media (max-width: 991.98px) {
  body.has-quick-actions {
    padding-bottom: 70px;
  }
}

/* Large screens - hide quick actions and adjust back to top */
@media (min-width: 992px) {
  .btn-back-to-top {
    bottom: 30px;
  }
}

/* Page Loading Overlay */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: var(--gray-600);
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

@keyframes spinner-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
  .navigation,
  .navbar {
    display: none !important;
  }
  
  body {
    padding-top: 0 !important;
  }
  
  .section {
    padding: 2rem 0 !important;
  }
}

/* ================================
   MOBILE IMAGE OPTIMIZATIONS
   ================================ */

/* General responsive image improvements */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Video section image improvements */
.video-block .video-img {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.video-block .video-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition);
  border-radius: var(--border-radius-lg);
}

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

/* Mobile specific video image styling */
@media (max-width: 991.98px) {
  .video-block .video-img {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  
  .video-block .video-img img {
    min-height: 250px;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
  }
}

/* Award/Certification images */
.award-img-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  min-height: 120px;
}

.award-img-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.award-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.award-img img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

/* Mobile specific award images */
@media (max-width: 767.98px) {
  .award-img-block {
    margin-bottom: 1.5rem;
    min-height: 100px;
  }
  
  .award-img img {
    max-height: 60px;
  }
}

/* Tablet specific award images */
@media (min-width: 768px) and (max-width: 991.98px) {
  .award-img-block {
    margin-bottom: 2rem;
    min-height: 110px;
  }
  
  .award-img img {
    max-height: 70px;
  }
}

/* Portfolio/Gallery images improvements */
.portflio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.portflio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

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

/* Mobile portfolio images */
@media (max-width: 767.98px) {
  .portflio-item img {
    height: 250px;
  }
}

/* Generic image container improvements */
.section img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* Responsive image grid for awards section */
@media (max-width: 575.98px) {
  .awards .row {
    justify-content: center;
  }
  
  .awards .col-lg-2,
  .awards .col-md-3,
  .awards .col-sm-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
}