/*!
 * GHS Theme CSS
 * Modern hosting theme inspired by yenitema.ghs.net.tr
 * Author: GHS Theme Developer
 */

/* Color Variables */
:root {
  --ghs-primary: #2c5aa0;
  --ghs-primary-light: #4a7bc8;
  --ghs-primary-dark: #1e3d6f;
  --ghs-secondary: #6c757d;
  --ghs-success: #28a745;
  --ghs-info: #17a2b8;
  --ghs-warning: #ffc107;
  --ghs-danger: #dc3545;
  --ghs-light: #f8f9fa;
  --ghs-dark: #343a40;
  --ghs-white: #ffffff;
  --ghs-gray-100: #f8f9fa;
  --ghs-gray-200: #e9ecef;
  --ghs-gray-300: #dee2e6;
  --ghs-gray-400: #ced4da;
  --ghs-gray-500: #adb5bd;
  --ghs-gray-600: #6c757d;
  --ghs-gray-700: #495057;
  --ghs-gray-800: #343a40;
  --ghs-gray-900: #212529;
  
  /* Typography */
  --ghs-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ghs-font-size-base: 1rem;
  --ghs-line-height: 1.6;
  
  /* Spacing */
  --ghs-border-radius: 8px;
  --ghs-border-radius-lg: 12px;
  --ghs-border-radius-sm: 4px;
  
  /* Shadows */
  --ghs-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --ghs-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --ghs-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Global Styles */
body.ghs-theme {
  font-family: var(--ghs-font-family);
  line-height: var(--ghs-line-height);
  color: var(--ghs-gray-900);
  background-color: var(--ghs-white);
}

/* Top Bar Enhanced Styles */
.ghs-top-bar {
  background: linear-gradient(135deg, var(--ghs-primary) 0%, var(--ghs-primary-dark) 100%);
  color: var(--ghs-white);
  padding: 10px 0;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.ghs-top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Language Selector */
.language-selector {
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-flag-wrapper {
  position: relative;
  margin-right: 8px;
}

.flag-icon {
  width: 24px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ghs-white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 200px;
}

.language-selector:hover .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: var(--ghs-gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-option:hover {
  background: var(--ghs-gray-100);
  color: var(--ghs-primary);
  text-decoration: none;
}

/* User Menu Wrapper */
.user-menu-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 5px 15px 5px 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.user-menu-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
}

.user-avatar {
  width: 35px;
  height: 35px;
  background: var(--ghs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ghs-primary);
  margin-right: 10px;
}

.user-info {
  position: relative;
}

.user-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--ghs-white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 180px;
  margin-top: 10px;
}

.user-menu-wrapper:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Contact Info Enhanced */
.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item {
  position: relative;
}

.contact-link {
  display: flex;
  align-items: center;
  color: var(--ghs-white);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.contact-link i {
  margin-right: 8px;
  font-size: 1rem;
}

.whatsapp-btn:hover {
  background: #25d366;
  transform: translateY(-2px);
}

.email-btn:hover {
  background: #ea4335;
  transform: translateY(-2px);
}

/* Action Buttons */
.action-buttons {
  gap: 10px;
}

.callback-btn, .contact-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.callback-btn:hover {
  background: var(--ghs-white);
  color: var(--ghs-primary);
  transform: translateY(-2px);
}

.contact-btn {
  background: var(--ghs-white);
  color: var(--ghs-primary);
  border: none;
}

.contact-btn:hover {
  background: var(--ghs-gray-100);
  transform: translateY(-2px);
}

/* Enhanced Main Navigation Styles */
.ghs-main-nav {
  background: var(--ghs-white);
  border-bottom: 1px solid var(--ghs-gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ghs-main-nav.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 0;
}

/* Brand Enhanced */
.brand-container {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--ghs-primary), var(--ghs-primary-light));
  color: var(--ghs-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--ghs-primary);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}

.brand-tagline {
  color: var(--ghs-gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-img {
  max-height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.ghs-main-nav.scrolled .logo-img {
  max-height: 40px;
}

/* Navigation Links Enhanced */
.navbar-nav {
  align-items: center;
  gap: 5px;
}

.nav-link {
  color: var(--ghs-gray-700);
  font-weight: 500;
  padding: 15px 20px !important;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin: 0 2px;
}

.nav-icon {
  margin-right: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--ghs-primary);
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(74, 123, 200, 0.05));
  transform: translateY(-1px);
}

.nav-link:hover .nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Mega Menu Styles */
.mega-dropdown {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ghs-white);
  border: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 1000;
  margin-top: 0;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-title {
  color: var(--ghs-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ghs-primary);
  position: relative;
}

.mega-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--ghs-primary-light);
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li {
  margin-bottom: 8px;
}

.mega-list a {
  color: var(--ghs-gray-600);
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding-left: 15px;
  position: relative;
}

.mega-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid var(--ghs-primary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mega-list a:hover {
  color: var(--ghs-primary);
  background: rgba(44, 90, 160, 0.05);
  padding-left: 20px;
  text-decoration: none;
}

.mega-list a:hover::before {
  opacity: 1;
}

/* Mega Footer Promo Cards */
.mega-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--ghs-gray-200);
}

.promo-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ghs-gray-50), var(--ghs-white));
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--ghs-gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.promo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ghs-primary), var(--ghs-primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ghs-white);
  margin-right: 15px;
  font-size: 1.2rem;
}

.promo-content h6 {
  margin: 0 0 5px 0;
  color: var(--ghs-primary);
  font-weight: 600;
}

.promo-content p {
  margin: 0;
  color: var(--ghs-gray-600);
  font-size: 0.85rem;
}

/* Regular Dropdown Enhanced */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 15px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 25px;
  color: var(--ghs-gray-700);
  transition: all 0.3s ease;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.dropdown-item i {
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(74, 123, 200, 0.05));
  color: var(--ghs-primary);
  padding-left: 30px;
}

/* Navbar Actions Enhanced */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Notification Button */
.notification-btn {
  position: relative;
  background: var(--ghs-gray-100);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.notification-btn:hover {
  background: var(--ghs-primary);
  color: var(--ghs-white);
  transform: scale(1.05);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--ghs-danger);
  color: var(--ghs-white);
  border-radius: 50%;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Cart Enhanced */
.cart-wrapper {
  position: relative;
}

.cart-btn {
  display: flex;
  align-items: center;
  background: var(--ghs-gray-100);
  padding: 10px 15px;
  border-radius: 25px;
  color: var(--ghs-gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}

.cart-btn:hover {
  background: var(--ghs-primary);
  color: var(--ghs-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.cart-icon {
  position: relative;
  font-size: 1.1rem;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--ghs-danger);
  color: var(--ghs-white);
  border-radius: 50%;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cart-text {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Desktop Search */
.navbar-search-desktop {
  margin-left: 20px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--ghs-gray-100);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 280px;
}

.search-wrapper:focus-within {
  background: var(--ghs-white);
  box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
  transform: scale(1.02);
}

.search-input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  width: 100%;
  font-size: 0.9rem;
  color: var(--ghs-gray-700);
  outline: none;
}

.search-input::placeholder {
  color: var(--ghs-gray-500);
}

.search-btn {
  border: none;
  background: var(--ghs-primary);
  color: var(--ghs-white);
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: var(--ghs-primary-dark);
  transform: scale(1.05);
}

/* Mobile Search */
.navbar-search {
  padding: 15px 0;
  border-top: 1px solid var(--ghs-gray-200);
}

.navbar-search .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-search .form-control {
  border: none;
  padding: 12px 20px;
  background: var(--ghs-white);
  font-size: 0.9rem;
}

.navbar-search .btn {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
}

/* Enhanced Mobile Navigation */
.ghs-main-nav .navbar-toggler {
  border: none;
  padding: 0;
  background: none;
  color: var(--ghs-gray-700);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ghs-main-nav .navbar-toggler:hover {
  background: var(--ghs-gray-100);
  transform: scale(1.05);
}

.ghs-main-nav .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.ghs-main-nav .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghs-main-nav .navbar-toggler-icon::before,
.ghs-main-nav .navbar-toggler-icon::after,
.ghs-main-nav .navbar-toggler-icon {
  content: '';
  display: block;
  height: 3px;
  width: 24px;
  background: var(--ghs-gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.ghs-main-nav .navbar-toggler-icon::before {
  transform: translateY(-8px);
}

.ghs-main-nav .navbar-toggler-icon::after {
  transform: translateY(8px);
}

.ghs-main-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.ghs-main-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.ghs-main-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

@media (max-width: 991.98px) {
  .ghs-top-bar {
    padding: 8px 0;
  }
  
  .ghs-top-bar .contact-info,
  .ghs-top-bar .action-buttons {
    display: none !important;
  }
  
  .ghs-main-nav {
    padding: 15px 0;
  }
  
  .ghs-main-nav .navbar-collapse {
    background: var(--ghs-white);
    margin-top: 20px;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--ghs-gray-200);
  }
  
  .ghs-main-nav .navbar-nav {
    align-items: stretch;
    gap: 0;
  }
  
  .ghs-main-nav .nav-link {
    padding: 15px 20px !important;
    border-bottom: 1px solid var(--ghs-gray-100);
    border-radius: 0;
    margin: 0;
  }
  
  .ghs-main-nav .nav-link:hover {
    background: var(--ghs-gray-50);
    transform: none;
  }
  
  .mega-menu,
  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: var(--ghs-gray-50);
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 15px 20px;
  }
  
  .mega-menu-content {
    padding: 0;
  }
  
  .mega-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .mega-list a {
    padding: 8px 0;
    padding-left: 0;
  }
  
  .mega-footer {
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .promo-card {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .dropdown-item {
    padding: 10px 20px;
  }
  
  .brand-icon {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .brand-tagline {
    font-size: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .ghs-top-bar {
    padding: 6px 0;
    font-size: 0.8rem;
  }
  
  .user-menu-wrapper {
    padding: 3px 10px 3px 3px;
  }
  
  .user-avatar {
    width: 30px;
    height: 30px;
  }
  
  .user-name {
    font-size: 0.8rem;
  }
  
  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  
  .brand-name {
    font-size: 1.1rem;
  }
  
  .cart-btn {
    padding: 8px 12px;
  }
  
  .cart-text {
    display: none;
  }
}

/* User Notifications */
.user-notifications .btn {
  position: relative;
}

.user-notifications .badge-sm {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 0.6rem;
  min-width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

/* Footer Styles */
.ghs-footer {
  background: var(--ghs-gray-900);
  color: var(--ghs-white);
  margin-top: 4rem;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-title {
  color: var(--ghs-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--ghs-gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ghs-white);
  text-decoration: none;
}

.footer-partners {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
}

.partner-logo {
  max-height: 40px;
  width: auto;
  margin: 0 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--ghs-gray-300);
  text-decoration: none;
  margin-left: 1rem;
}

.footer-legal a:hover {
  color: var(--ghs-white);
  text-decoration: none;
}

/* Primary Button Overrides */
.btn-primary {
  background-color: var(--ghs-primary);
  border-color: var(--ghs-primary);
  border-radius: var(--ghs-border-radius);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--ghs-primary-dark);
  border-color: var(--ghs-primary-dark);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--ghs-primary);
  border-color: var(--ghs-primary);
  border-radius: var(--ghs-border-radius);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--ghs-primary);
  border-color: var(--ghs-primary);
  transform: translateY(-1px);
}

/* Card Styles */
.card {
  border: none;
  box-shadow: var(--ghs-shadow-sm);
  border-radius: var(--ghs-border-radius);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--ghs-shadow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--ghs-primary) 0%, var(--ghs-primary-light) 100%);
  color: var(--ghs-white);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
  background: var(--ghs-white);
  border-radius: var(--ghs-border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--ghs-gray-200);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ghs-shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--ghs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--ghs-white);
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ghs-gray-900);
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ghs-primary);
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .ghs-top-bar .contact-info {
    display: none !important;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .ghs-top-bar {
    padding: 6px 0;
  }
  
  .ghs-main-nav {
    padding: 0.75rem 0;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .footer-main {
    padding: 2rem 0 1rem;
  }
  
  .footer-partners {
    padding: 1rem 0;
  }
  
  .partner-logo {
    margin: 0.5rem;
    max-height: 30px;
  }
}

/* Quick Services Section */
.quick-service-item {
  padding: 1rem;
  border-radius: var(--ghs-border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
}

.quick-service-item:hover {
  background: var(--ghs-white);
  box-shadow: var(--ghs-shadow-sm);
  transform: translateY(-2px);
}

.service-icon-sm {
  width: 40px;
  height: 40px;
  background: var(--ghs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--ghs-white);
  font-size: 1rem;
}

/* Action Cards */
.action-card {
  display: block;
  padding: 1.5rem 1rem;
  background: var(--ghs-white);
  border-radius: var(--ghs-border-radius);
  text-decoration: none;
  color: var(--ghs-gray-700);
  transition: all 0.3s ease;
  border: 1px solid var(--ghs-gray-200);
}

.action-card:hover {
  text-decoration: none;
  color: var(--ghs-gray-900);
  transform: translateY(-3px);
  box-shadow: var(--ghs-shadow);
}

.action-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--ghs-white);
  font-size: 1.25rem;
}

/* Account Cards */
.account-card {
  display: block;
  padding: 1.5rem 1rem;
  background: var(--ghs-white);
  border-radius: var(--ghs-border-radius);
  text-decoration: none;
  color: var(--ghs-gray-700);
  transition: all 0.3s ease;
  border: 1px solid var(--ghs-gray-200);
}

.account-card:hover {
  text-decoration: none;
  color: var(--ghs-primary);
  transform: translateY(-3px);
  box-shadow: var(--ghs-shadow);
}

.account-icon {
  width: 50px;
  height: 50px;
  background: var(--ghs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--ghs-white);
  font-size: 1.25rem;
}

/* Hero Section Enhancements */
.hero-price {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-price .price-text {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

/* Section Spacing */
.featured-services {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.help-section {
  background: var(--ghs-white);
}

.account-section {
  background: var(--ghs-gray-100);
}

/* Background Utilities */
.bg-light {
  background-color: var(--ghs-gray-100) !important;
}

/* Form Styles */
.form-control {
  border-radius: var(--ghs-border-radius-sm);
  border: 1px solid var(--ghs-gray-300);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--ghs-primary);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.input-group-text {
  background-color: var(--ghs-gray-100);
  border-color: var(--ghs-gray-300);
  color: var(--ghs-gray-600);
}

/* Login Form */
.login-form .card {
  max-width: 540px;
  margin: 2rem auto;
  box-shadow: var(--ghs-shadow-lg);
}

/* Client Area Tiles */
.tiles .tile {
  display: block;
  background: var(--ghs-white);
  border: 1px solid var(--ghs-gray-200);
  border-radius: var(--ghs-border-radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--ghs-gray-700);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tiles .tile:hover {
  color: var(--ghs-gray-900);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--ghs-shadow);
}

.tiles .tile .stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ghs-primary);
}

.tiles .tile .title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.tiles .tile .highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ghs-primary);
}

/* Card Enhancements */
.card-accent-blue .highlight,
.bg-color-blue {
  background-color: var(--ghs-primary) !important;
}

.card-accent-green .highlight,
.bg-color-green {
  background-color: var(--ghs-success) !important;
}

.card-accent-red .highlight,
.bg-color-red {
  background-color: var(--ghs-danger) !important;
}

.card-accent-gold .highlight,
.bg-color-gold {
  background-color: var(--ghs-warning) !important;
}

/* Client Home Cards */
.client-home-cards .card {
  margin-bottom: 1.5rem;
}

.client-home-cards .card-header {
  background-color: var(--ghs-gray-50);
  border-bottom: 1px solid var(--ghs-gray-200);
  font-weight: 600;
}

/* List Groups */
.list-group-item {
  border-color: var(--ghs-gray-200);
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: var(--ghs-gray-50);
}

.list-group-item.active {
  background-color: var(--ghs-primary);
  border-color: var(--ghs-primary);
}

/* Tables */
.table {
  border-color: var(--ghs-gray-200);
}

.table th {
  border-top: none;
  font-weight: 600;
  color: var(--ghs-gray-700);
}

.table td {
  border-color: var(--ghs-gray-200);
}

/* Invoice Styles */
.invoice-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.invoice-status span {
  padding: 0.5rem 1rem;
  border-radius: var(--ghs-border-radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.invoice-status .paid {
  background-color: var(--ghs-success);
  color: var(--ghs-white);
}

.invoice-status .unpaid {
  background-color: var(--ghs-danger);
  color: var(--ghs-white);
}

.invoice-status .draft {
  background-color: var(--ghs-gray-500);
  color: var(--ghs-white);
}

/* Alerts */
.alert {
  border-radius: var(--ghs-border-radius);
  border: none;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--ghs-success);
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--ghs-danger);
}

.alert-info {
  background-color: rgba(23, 162, 184, 0.1);
  color: var(--ghs-info);
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #856404;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}