/* Contact Page Styles */
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg-color, #ffffff);
    color: var(--text-color, #333333);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .wp-block-template-part {
    width: 100%;
    background: var(--bg-color, #ffffff);
    box-shadow: 0 2px 8px var(--box-shadow-color, rgba(0,0,0,0.04));
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .wp-block-site-logo img {
    max-width: 180px;
    height: auto;
    border-radius: 16px;
  }
  
  .wp-block-group.is-layout-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .wp-block-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .wp-block-button__link {
    padding: 0.5em 1.5em;
    border-radius: 6px;
    text-decoration: none;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s;
  }
  .wp-block-button__link:hover {
    background: #2563eb;
  }
  
  .plover-hide-on-dark { display: block; }
  .plover-hide-on-light { display: none; }
  body.dark-mode .plover-hide-on-dark { display: none; }
  body.dark-mode .plover-hide-on-light { display: block; }
  
  .contact-page-content {
    min-height: 60vh;
    padding: 3rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #6b7280;
  }
  
  footer {
    text-align: center;
    padding: 2rem 0 1rem 0;
    background: var(--bg-secondary, #f8f9fa);
    color: var(--text-muted, #6b7280);
    font-size: 1rem;
    border-top: 1px solid var(--border-color, #dee2e6);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  
  footer a {
    color: var(--text-muted, #6b7280);
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: var(--primary-color, #4a6cf7);
  }
  
  /* =================================
     MODERN RESPONSIVE DESIGN
     ================================= */
  
  /* Enhanced Mobile Experience */
  @media (max-width: 800px) {
    .wp-block-group.is-layout-flex {
      flex-direction: column;
      gap: 1.5rem;
      animation: fadeInUp 0.6s ease-out;
    }
    
    .contact-page-content {
      padding: 2rem 1.5rem;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.05) 100%);
      border-radius: 16px;
      margin: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transform: translateY(0);
      transition: all 0.3s ease;
    }
    
    .contact-page-content:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    .dark-theme .contact-page-content {
      background: linear-gradient(135deg, rgba(147, 197, 253, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    }
  }
  
  /* Smooth Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Screen reader only class */
  .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
  }
  
  /* =================================
     HEADER STYLES
     ================================= */
  /* Removed Google Fonts import as we're using system fonts */
  
  .site-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background-color: #ffffff;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 1rem 0;
      box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .dark-theme .site-header {
      background-color: rgba(0, 0, 0, 0.95);
      box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
  }
  
  .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }
  
  .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
  }
  
  /* Header Controls */
  .header-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
  }
  
  /* Modern Hamburger Menu Button */
  .hamburger-menu {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 4px;
      position: relative;
      z-index: 1001;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1 !important;
      visibility: visible !important;
      margin-left: auto;
  }
  
  .hamburger-icon {
      width: 28px;
      height: 28px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      stroke: #333;
      position: relative;
  }
  
  /* Hover and active states */
  .hamburger-menu:hover {
      background-color: rgba(0, 0, 0, 0.05);
  }
  
  .hamburger-menu:active {
      background-color: rgba(0, 0, 0, 0.1);
  }
  
  /* Dark theme styles */
  .dark-theme .hamburger-icon {
      stroke: #e5e7eb;
  }
  
  .dark-theme .hamburger-menu:hover {
      background-color: rgba(255, 255, 255, 0.05);
  }
  
  .dark-theme .hamburger-menu:active {
      background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Active state animation */
  .hamburger-menu[aria-expanded="true"] {
      position: fixed;
      right: 1rem;
      top: 1rem;
  }
  
  .hamburger-menu[aria-expanded="true"] .hamburger-icon {
      transform: rotate(180deg);
  }
  
  .hamburger-menu[aria-expanded="true"] .hamburger-icon line {
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  }
  
  .hamburger-menu[aria-expanded="true"] .hamburger-icon line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
      transform-origin: center;
  }
  
  .hamburger-menu[aria-expanded="true"] .hamburger-icon line:nth-child(2) {
      opacity: 0;
      transform: translateX(-10px);
  }
  
  .hamburger-menu[aria-expanded="true"] .hamburger-icon line:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
      transform-origin: center;
  }
  
  /* Dark theme styles for hamburger */
  .dark-theme .hamburger-line {
      background-color: #e5e7eb;
  }
  
  .dark-theme .hamburger-menu:hover .hamburger-line {
      background-color: #3b82f6;
  }
  
  /* Ensure header has no border in dark theme */
  .dark-theme .site-header {
      border-bottom: none;
  }
  
  /* Ensure hamburger is visible and works on all screen sizes */
  .hamburger-menu {
      display: flex !important;
      opacity: 1 !important;
      visibility: visible !important;
  }
  
  /* Hide the mobile menu toggle if it exists */
  .mobile-menu-toggle {
      display: none !important;
  }
  
  /* Ensure header controls are properly aligned */
  .header-controls {
      display: flex;
      align-items: center;
      gap: 1.5rem;
  }
  
  /* Navigation visibility states */
  .main-navigation {
      opacity: 0;
      visibility: hidden;
  }
  
  .main-navigation.active {
      opacity: 1 !important;
      visibility: visible !important;
      right: 0 !important;
  }
  
  /* Off-canvas Navigation - Modern Glass Effect */
  .main-navigation {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100vh;
      background: linear-gradient(135deg, 
          rgba(255, 255, 255, 0.15) 0%, 
          rgba(255, 255, 255, 0.08) 50%, 
          rgba(255, 255, 255, 0.05) 100%);
      backdrop-filter: blur(40px) saturate(180%);
      -webkit-backdrop-filter: blur(40px) saturate(180%);
      padding: 6rem 1.5rem 2rem;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                  opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1002;
      border-left: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px 0 0 20px;
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15),
                  inset 1px 0 0 rgba(255, 255, 255, 0.2),
                  0 0 100px rgba(59, 130, 246, 0.1);
      display: flex;
      flex-direction: column;
  }
  
  /* Menu open state for body */
  body.menu-open {
      overflow: hidden;
  }
  
  /* Navigation */
  .nav-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
  }
  
  .menu-item {
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
      margin: 0;
      width: 100%;
      display: flex;
  }
  
  .main-navigation.active .menu-item {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Staggered animation for menu items */
  .main-navigation.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
  .main-navigation.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
  .main-navigation.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
  .main-navigation.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
  .main-navigation.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
  
  .menu-item a {
      display: flex;
      align-items: center;
      width: 100%;
      padding: 1rem 1.5rem;
      color: #1f2937;
      text-decoration: none;
      font-size: 0.5rem;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      background-color: transparent;
      border: none;
      text-align: left;
      cursor: pointer;
  }
  
  /* Removed ::before pseudo-element that might interfere */
  
  .menu-item a:hover::before,
  .menu-item a:focus::before {
      transform: scaleY(1);
  }
  
  .menu-item a:hover,
  .menu-item a:focus {
      background-color: #d3d6dbe1;
      color: #68758b;
      padding-left: 1.5rem;
      outline: none;
  }
  
  /* Dark theme styles for navigation */
  .dark-theme .main-navigation {
      background: linear-gradient(135deg, 
          rgba(0, 0, 0, 0.4) 0%, 
          rgba(15, 15, 15, 0.3) 50%, 
          rgba(0, 0, 0, 0.2) 100%);
      backdrop-filter: blur(140px) saturate(180%);
      -webkit-backdrop-filter: blur(40px) saturate(180%);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4),
                  inset 1px 0 0 rgba(255, 255, 255, 0.1),
                  0 0 100px rgba(59, 130, 246, 0.2);
  }
  
  .dark-theme .menu-item a {
      color: #e5e7eb;
  }
  
  .dark-theme .menu-item a:hover,
  .dark-theme .menu-item a:focus {
      background-color: #1a1a1a;
      color: #60a5fa;
  }
  
  .dark-theme .menu-item a::before {
      background-color: #60a5fa;
  }
  
  /* Dark Theme Styles */
  .dark-theme .hamburger-line {
      background-color: #e5e7eb;
  }
  
  .dark-theme .main-navigation {
      background: linear-gradient(135deg, 
          rgba(0, 0, 0, 0.4) 0%, 
          rgba(15, 15, 15, 0.3) 50%, 
          rgba(0, 0, 0, 0.2) 100%);
      backdrop-filter: blur(40px) saturate(180%);
      -webkit-backdrop-filter: blur(40px) saturate(180%);
  }
  
  .dark-theme .menu-item a {
      color: #e5e7eb;
  }
  
  .dark-theme .menu-item a:hover {
      background-color: #1a1a1a;
      color: #60a5fa;
  }
  
  /* Logo Section */
  .logo-section {
      display: flex;
      align-items: center;
      flex-shrink: 0;
  }
  
  .logo-link {
      display: block;
      height: 100px; /* Increased size */
      transition: transform 0.3s ease;
      width: auto; /* Allow width to adjust based on image */
  }
  
  .logo-link:hover {
      transform: scale(1.05);
  }
  
  .logo-img {
      height: 100%;
      width: auto;
      min-width: 200px;
      object-fit: contain;
      max-width: 250px; /* Increased maximum width */
      object-fit: contain;
      display: block; /* Ensure proper spacing */
  }
  
  /* Navigation */
  .main-navigation {
      margin: 0 auto;
      padding: 0 2rem;
  }
  
  .nav-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 15px;
  }
  
  .menu-item a {
      color: #374151;
      text-decoration: none;
      font-family: 'Times New Roman', Times, serif;
      font-weight: bold;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      position: relative;
      padding: 10px 15px;
      border-radius: 6px;
  }
  
  .dark-theme .menu-item a {
      color: #e5e7eb;
  }
  
  .menu-item a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #3b82f6;
      transition: width 0.3s ease;
  }
  
  .menu-item a:hover::after,
  .menu-item a:focus::after {
      width: 100%;
  }
  
  /* Header Controls */
  .header-controls {
      display: flex;
      align-items: center;
      gap: 1.5rem;
  }
  
  /* Theme Toggle Button */
  .theme-toggle {
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 50%;
      background-color: #f3f4f6;
      color: #374151;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      padding: 0;
      position: relative;
      overflow: visible;
      transform-origin: center;
  }
  
  .dark-theme .theme-toggle {
      background-color: #000000;
      color: #e5e7eb;
  }
  
  .theme-toggle:hover {
      transform: rotate(-25deg);
      background-color: #e5e7eb;
  }
  
  .dark-theme .theme-toggle:hover {
      background-color: #1a1a1a;
  }
  
  /* Theme Icons Base Styles */
  .theme-toggle svg {
      position: absolute;
      width: 20px;
      height: 20px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease;
  }
  
  /* Light theme: Show moon icon (to switch to dark) */
  .theme-toggle .moon-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      z-index: 2;
  }
  
  .theme-toggle .sun-icon {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.5);
      z-index: 1;
  }
  
  /* Dark theme: Show sun icon (to switch to light) */
  .dark-theme .theme-toggle .moon-icon {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.5);
      z-index: 1;
  }
  
  .dark-theme .theme-toggle .sun-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      z-index: 2;
  }
  
  /* Search Toggle */
  .search-toggle {
      background: none;
      border: none;
      color: #4b5563;
      cursor: pointer;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s ease;
  }
  
  .dark-theme .search-toggle {
      color: #9ca3af;
  }
  
  .search-toggle:hover {
      color: #3b82f6;
  }
  
  /* Header Search */
  .header-search {
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      max-width: 400px;
      background-color: #ffffff;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      border-radius: 8px;
      padding: 15px;
      display: none;
      z-index: 1001;
  }
  
  .dark-theme .header-search {
      background-color: #1f2937;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  }
  
  .header-search.active {
      display: flex;
      align-items: center;
      gap: 10px;
  }
  
  .header-search .search-input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      font-size: 14px;
      background-color: #f9fafb;
      color: #111827;
  }
  
  .dark-theme .header-search .search-input {
      background-color: #374151;
      border-color: #4b5563;
      color: #f3f4f6;
  }
  
  .search-close {
      background: none;
      border: none;
      color: #6b7280;
      cursor: pointer;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s ease;
  }
  
  .dark-theme .search-close {
      color: #9ca3af;
  }
  
  .search-close:hover {
      color: #ef4444;
  }
  
  .hamburger-menu {
      display: flex !important;
      background: rgba(59, 130, 246, 0.1);
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      position: relative;
      z-index: 1001;
      opacity: 1 !important;
      visibility: visible !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  }
  
  .hamburger-menu:hover {
      background: rgba(59, 130, 246, 0.2);
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }
  
  .dark-theme .hamburger-menu {
      background: rgba(147, 197, 253, 0.1);
      box-shadow: 0 2px 8px rgba(147, 197, 253, 0.2);
  }
  
  .dark-theme .hamburger-menu:hover {
      background: rgba(147, 197, 253, 0.2);
      box-shadow: 0 4px 15px rgba(147, 197, 253, 0.3);
  }
  
  .hamburger-icon {
      width: 32px;
      height: 32px;
      stroke: #333;
      transition: all 0.3s;
  }
  
  .dark-theme .hamburger-icon {
      stroke: #e5e7eb;
  }
  
  .main-navigation {
      position: fixed;
      top: 0;
      right: -320px;
      width: 300px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 6rem 1.5rem 2rem;
      box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      gap: 2rem;
      z-index: 1000;
      border-left: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .dark-theme .main-navigation {
      background: rgba(31, 41, 55, 0.98);
      border-left-color: rgba(147, 197, 253, 0.1);
  }
  
  /* FORCE HIDE ANY CLOSE BUTTONS IN NAVIGATION */
  .main-navigation button,
  .main-navigation .close,
  .main-navigation .close-btn,
  .main-navigation .close-button,
  .main-navigation .menu-close,
  .main-navigation .nav-close,
  .main-navigation [aria-label*="close"],
  .main-navigation [aria-label*="Close"],
  .main-navigation .wp-block-navigation__responsive-container-close,
  .main-navigation .wp-block-navigation-submenu__toggle {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
  }
  
  /* Hide any pseudo-elements that might create close buttons */
  .main-navigation::before,
  .main-navigation::after,
  .main-navigation *::before,
  .main-navigation *::after {
      content: none !important;
  }
  
  /* Override any WordPress navigation close button styles */
  .wp-block-navigation__responsive-container-close {
      display: none !important;
  }
  
  .wp-block-navigation-submenu__toggle {
      display: none !important;
  }
  
  .main-navigation.active {
      right: 0;
      opacity: 1;
      visibility: visible;
  }
  
  .menu-list, .main-navigation ul {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding: 0;
      margin: 0;
      list-style: none;
  }
  
  .menu-item a {
      display: block;
      width: 100%;
      padding: 1rem 1.5rem;
      font-family: 'Times New Roman', Times, serif;
      font-weight: bold;
      font-size: 1.15rem;
      color: #222;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
  }
  .menu-item a:hover,
  .menu-item a:focus {
      background: #f3f4f6;
      color: #3b82f6;
  }
  
  .dark-theme .main-navigation {
      background: #1f2937;
  }
  .dark-theme .menu-item a {
      color: #e5e7eb;
  }
  .dark-theme .menu-item a:hover,
  .dark-theme .menu-item a:focus {
      background: #374151;
      color: #60a5fa;
  }
  
  /* Remove any media queries that hide hamburger or change nav layout on desktop */
  @media (min-width: 0px) {
      .hamburger-menu {
          display: flex !important;
      }
      .main-navigation {
          display: flex !important;
          flex-direction: column !important;
          position: fixed !important;
          top: 0 !important;
          right: -85% !important;
          width: 85%;
          max-width: 320px;
          height: 100vh;
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-left: 1px solid rgba(255, 255, 255, 0.2);
          box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25), 
                      inset 1px 0 0 rgba(255, 255, 255, 0.1);
          z-index: 1000;
      }
      .main-navigation.active {
          right: 0;
          opacity: 1;
          visibility: visible;
      }
      .nav-buttons {
          display: none !important;
      }
  }
  
  /* Remove obsolete mobile-menu-toggle styles */
  .mobile-menu-toggle { display: none !important; 
          top: 0;
          right: 0;
          width: 85%;
          max-width: 320px;
          height: 100vh;
          background-color: #ffffff;
          padding: 6rem 2rem 2rem;
          box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease-out;
          z-index: 1001;
          overflow-y: auto;
          transform: translateX(100%);
      }
      
      .main-navigation.active {
          transform: translateX(0);
      }
      
      .dark-theme .main-navigation {
          background: rgba(0, 0, 0, 0.92);
          backdrop-filter: blur(25px);
          -webkit-backdrop-filter: blur(25px);
          border-left: 1px solid rgba(255, 255, 255, 0.1);
          box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5), 
                      inset 1px 0 0 rgba(255, 255, 255, 0.05);
      }
      
      .nav-menu {
          flex-direction: column;
          gap: 0.5rem;
          padding: 0;
          margin: 0;
          list-style: none;
      }
      
      .menu-item a {
          padding: 0.75rem 1rem;
          display: block;
          border-radius: 6px;
          transition: all 0.2s ease;
          color: #1f2937;
          text-decoration: none;
      }
      
      .dark-theme .menu-item a {
          color: #f3f4f6;
      }
      
      .menu-item a:hover {
          background-color: rgba(0, 0, 0, 0.05);
      }
      
      .dark-theme .menu-item a:hover {
          background-color: rgba(255, 255, 255, 0.1);
      }
      
      /* Overlay */
      .mobile-menu-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 1000;
          opacity: 0;
          transition: opacity 0.3s ease;
      }
      
      .mobile-menu-overlay.active {
          display: block;
          opacity: 1;
      }
      
      /* Hamburger to X animation */
      .mobile-menu-toggle.active .menu-bar:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
      }
      
      .mobile-menu-toggle.active .menu-bar:nth-child(2) {
          opacity: 0;
          transform: translateX(-10px);
      }
      
      .mobile-menu-toggle.active .menu-bar:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
      }
      
      /* Prevent body scroll when menu is open */
      body.menu-open {
          overflow: hidden;
          position: fixed;
          width: 100%;
          height: 100%;
      }
  
  
  /* Galaxy A51, Z1, and popular Android phones */
  @media (max-width: 576px) {
      .logo-img {
          height: 45px;
          max-width: 140px;
          min-width: auto;
      }
      
      .logo-link {
          height: 45px;
      }
  }
  
  @media (max-width: 480px) {
      .logo-img {
          height: 40px;
          max-width: 120px;
          min-width: auto;
      }
      
      .logo-link {
          height: 40px;
      }
      
      .header-search {
          max-width: calc(100% - 2rem);
          left: 1rem;
          box-sizing: border-box;
      }
  }
  .theme-btn:hover {
      background-color: #f3f4f6;
      color: #374151;
  }
  
  .theme-btn svg {
      width: 18px;
      height: 18px;
  }
  
  /* Navigation Buttons */
  .nav-buttons {
      display: flex;
      gap: 0.75rem;
  }
  
  .nav-btn {
      padding: 0.5rem 1rem;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 0.375rem;
      transition: all 0.2s ease;
  }
  
  .login-btn {
      color: #6b7280;
      background: transparent;
      border: 1px solid transparent;
  }
  
  .login-btn:hover {
      color: #374151;
      background-color: #f9fafb;
  }
  
  .signup-btn {
      color: #ffffff;
      background-color: #3b82f6;
      border: 1px solid #3b82f6;
  }
  
  .signup-btn:hover {
      background-color: #2563eb;
      border-color: #2563eb;
  }
  
  /* Import Poppins font */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
  
  /* Footer Styles */
  .site-footer {
      background-color: #ffffff;
      color: #1f2937;
      padding: 4rem 0 0;
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
      line-height: 1.6;
      width: 100%;
      max-width: 100vw;
      box-sizing: border-box;
      font-weight: 400;
      overflow-x: hidden;
  }
  
  .footer-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
  }
  
  .footer-divider {
      height: 4px;
      background: linear-gradient(90deg, 
          #3b82f6 0%, 
          #8b5cf6 25%, 
          #ec4899 50%, 
          #f59e0b 75%, 
          #10b981 100%
      );
      margin: 0 calc(-50vw + 50%) 2rem;
      width: 110vw;
      position: relative;
      left: 50%;
      transform: translateX(-49%);
      border-radius: 0;
  }
  
  .footer-content {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      margin-bottom: 3rem;
      max-width: 1600px;
      margin: 0 auto 3rem auto;
      padding: 0 2rem;
  }
  
  /* Left Column */
  .footer-left {
      flex: 0 0 350px;
      min-width: 300px;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }
  
  .footer-logo {
      margin: 2rem 0 1.5rem;
      max-width: 300px;
      position: relative;
      z-index: 1;
      display: inline-block;
  }
  
  .footer-logo-img {
      height: 105px;
      width: auto;
      max-width: 100%;
      display: block;
      object-fit: contain;
  }
  
  .footer-description {
      color: #6b7280;
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 2rem;
  }
  
  /* Search Bar */
  .footer-search {
      margin: 1.5rem 0 2rem;
      width: 100%;
      max-width: 320px;
  }
  
  .search-wrapper {
      position: relative;
      max-width: 100%;
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      overflow: hidden;
      background: white;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
  }
  
  .search-input {
      width: 100%;
      padding: 0.75rem 1rem;
      padding-right: 3rem;
      border: none;
      font-size: 0.9375rem;
      color: #374151;
      outline: none;
      background: transparent;
  }
  
  .search-input::placeholder {
      color: #9ca3af;
  }
  
  .search-btn {
      position: absolute;
      right: 0.5rem;
      top: 50%;
      background: #f3f4f6;
      border: none;
      color: #6b7280;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      transform: translateY(-50%);
  }
  
  .search-btn:hover {
      background-color: #e5e7eb;
      color: #374151;
  }
  
  .search-icon {
      width: 18px;
      height: 18px;
      fill: currentColor;
  }
  
  /* Dark theme for search */
  .dark-theme .search-wrapper {
      background: #374151;
      border-color: #4b5563;
  }
  
  .dark-theme .search-input {
      color: #f3f4f6;
      background: transparent;
  }
  
  .dark-theme .search-input::placeholder {
      color: #9ca3af;
  }
  
  .dark-theme .search-btn {
      background: #6a9ee7;
      color: #fff;
  }
  
  .dark-theme .search-btn:hover {
      background-color: #2563eb;
      color: #fff;
  }
  
  /* Search Bar */
  .footer-search {
      display: flex;
      align-items: center;
      margin: 1rem 0;
      width: 100%;
      max-width: 100%;
      position: relative;
      box-sizing: border-box;
  }
  
  .search-wrapper {
      flex: 1;
      position: relative;
      margin-right: 100px;
      translate: -135px 0;
      transform: translateX(150px);
  }
  
  .search-input {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid #e2e8f0;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      color: #4a4a4a;
      background-color: #f8fafc;
      transition: all 0.2s ease;
      outline: none;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      height: 45px;
      box-sizing: border-box;
      display: inline-block;
      vertical-align: middle;
  }
  
  .search-input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  .search-input::placeholder {
      color: #94a3b8;
  }
  
  .search-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 0.5rem;
      background-color: #3b82f6;
      border: none;
      color: white;
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
      vertical-align: middle;
      translate: -10px 0;
      margin: 0;
      padding: 0;
  }
  
  .search-btn:hover {
      background-color: #2563eb;
  }
  
  .search-icon {
      width: 20px;
      height: 20px;
  }
  
  /* Dark theme styles for search */
  .dark-theme .search-input {
      background-color: #1e293b;
      border-color: #334155;
      color: #e2e8f0;
  }
  
  .dark-theme .search-input::placeholder {
      color: #94a3b8;
  }
  
  .dark-theme .search-btn {
      background-color: #3b82f6;
  }
  
  .dark-theme .search-btn:hover {
      background-color: #2563eb;
  }
  
  /* Social Links */
  .social-links {
      display: flex;
      gap: 12px;
      margin: 1.5rem 0 0 15px;
      flex-wrap: wrap;
  }
  
  .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #f3f4f6;
      color: #4b5563;
      transition: all 0.3s ease;
      translate: 0;
  }
  
  .social-link:hover {
      background-color: #3b82f6;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  .social-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
  }
  
  /* Dark theme styles */
  .dark-theme .social-link {
      background-color: rgba(255, 255, 255, 0.1);
      color: #e5e7eb;
  }
  
  .dark-theme .social-link:hover {
      background-color: #3b82f6;
      color: white;
  }
  
  /* Right Column */
  .footer-right {
      flex: 1;
      display: flex;
      justify-content: flex-start;
      padding-left: 2rem;
  }
  
  .footer-nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      width: 100%;
      max-width: 100%;
      align-items: flex-start;
      box-sizing: border-box;
  }
  
  .nav-section {
      min-width: 0;
      margin-bottom: 1rem;
  }
  
  /* Contact Us section */
  .nav-section:last-child {
      grid-column: span 1;
  }
  
  .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: #1f2937;
      font-family: 'Times New Roman', Times, serif;
      font-weight: bold;
      position: relative;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .nav-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 1rem;
      position: relative;
      padding-bottom: 0.2rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: 'Times New Roman', Times, serif;
      font-weight: bold;
  }
  
  
  
  .nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }
  
  .nav-link {
      color: #4b5563;
      text-decoration: none;
      font-size: 0.9375rem;
      transition: all 0.2s ease;
      display: inline-block;
      font-weight: 400;
      line-height: 1.7;
      position: relative;
      padding: 0.15rem 0;
  }
  
  .nav-link:hover {
      color: #3b82f6;
      transform: translateX(4px);
  }
  
  /* Contact Info */
  .contact-info {
      gap: 1rem !important;
  }
  
  /* Target SVG icons in contact items */
  .contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 4px;
  }
  
  /* Default light theme styles for SVG paths */
  .contact-item svg path {
      fill: #2a2b2c; /* Blue color for light theme */
      transition: fill 0.2s ease;
  }
  
  /* Dark theme styles for SVG paths */
  .dark-theme .contact-item svg path {
      fill: #ffffff; /* White color for dark theme */
  }
  
  /* Hover effect for contact items */
  .contact-item:hover svg path {
      fill: #60a5fa; /* Lighter blue on hover in light theme */
  }
  
  .dark-theme .contact-item:hover svg path {
      fill: #93c5fd; /* Lighter blue on hover in dark theme */
  }
  
  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #64676b;
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 0.75rem;
      font-weight: 400;
  }
  
  /* Removed redundant .contact-icon styles since we're now targeting SVGs directly */
  
  /* Footer Bottom */
  .footer-bottom {
      border-top: 1px solid #e5e7eb;
      padding: 1.5rem 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
  }
  
  .copyright {
      color: #6b7280;
      font-size: 0.875rem;
  }
  
  .footer-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
  }
  
  .footer-link {
      color: #6b7280;
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s ease;
  }
  
  .footer-link:hover {
      color: #3b82f6;
  }
  
  .divider {
      color: #d1d5db;
      font-size: 0.75rem;
  }
  
  /* Dark Theme */
  .dark-theme .site-footer {
      background-color: #000000;
      color: #e5e7eb;
  }
  
  .dark-theme .nav-title {
      color: #f9fafb;
  }
  
  .dark-theme .nav-link,
  .dark-theme .footer-description,
  .dark-theme .contact-item,
  .dark-theme .copyright,
  .dark-theme .footer-link {
      color: #9ca3af;
  }
  
  .dark-theme .footer-bottom {
      border-top-color: #374151;
  }
  
  .dark-theme .social-link {
      background-color: #374151;
      color: #f3f4f6;
  }
  
  .dark-theme .social-link:hover {
      translate:+X 2px ;
      color: white;
  }
  
  .dark-theme .contact-icon {
      color: #ffffff; /* Brighter blue for better visibility */
      filter: none; /* Remove brightness filter */
      transition: color 0.2s ease;
  }
  
  .dark-theme .contact-item:hover .contact-icon {
      color: #93c5fd; /* Even lighter blue on hover */
  }
  
  /* Ensure contact text is visible in dark mode */
  .dark-theme .contact-item {
      color: #e5e7eb !important;
  }
  
  /* Dark theme social links */
  .dark-theme .social-link {
      background-color: rgba(255, 255, 255, 0.05); /* Very subtle background */
      color: #9ca3af; /* Light gray for icons */
  }
  
  .dark-theme .social-link:hover {
      background-color: rgba(59, 130, 246, 0.2); /* Blue tint on hover */
      color: #3b82f6; /* Brighter blue on hover */
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
      .footer-nav {
          gap: 2rem;
      }
  }
  
  /* Small Laptops and MacBooks (1024px - 1440px) */
  @media (min-width: 1024px) and (max-width: 1440px) {
      .footer-content {
          display: flex;
          flex-direction: row;
          gap: 3rem;
          padding: 2rem 1.5rem;
          align-items: flex-start;
          max-width: 1400px;
          margin: 0 auto;
          box-sizing: border-box;
          width: 100%;
      }
      
      .footer-left {
          flex: 0 0 350px;
          max-width: 350px;
          padding-right: 1rem;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
      }
      
      .footer-logo {
          margin-bottom: 1rem;
          transform: none;
      }
      
      .footer-logo-img {
          height: 90px;
          width: auto;
      }
      
      .footer-description {
          font-size: 0.9rem;
          line-height: 1.6;
          margin-bottom: 1.5rem;
          color: #6b7280;
      }
      
      .footer-search {
          width: 100%;
          max-width: 320px;
          margin: 1rem 0;
      }
      
      .search-wrapper {
          max-width: 100%;
          width: 100%;
      }
      
      .footer-right {
          flex: 1;
          min-width: 0;
          padding-left: 2rem;
      }
      
      .footer-nav {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 2.5rem;
          width: 100%;
          box-sizing: border-box;
      }
      
      .nav-section {
          min-width: 0;
      }
      
      .nav-section h3 {
          font-size: 0.9rem;
          font-weight: 600;
          margin-bottom: 0.75rem;
          color: #1f2937;
      }
      
      .nav-section a {
          font-size: 0.85rem;
          padding: 0.25rem 0;
          display: block;
          color: #6b7280;
          transition: color 0.2s ease;
          line-height: 1.5;
      }
      
      .nav-section a:hover {
          color: #3b82f6;
      }
      
      /* Contact section specific styling */
      .nav-section:last-child {
          grid-column: span 1;
      }
      
      .contact-item {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          margin-bottom: 0.5rem;
          font-size: 0.85rem;
      }
      
      .social-links {
          margin-top: 1.5rem;
          display: flex;
          gap: 0.75rem;
      }
      
      .social-link {
          width: 36px;
          height: 36px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background-color: #f3f4f6;
          transition: all 0.2s ease;
      }
      
      .social-link:hover {
          background-color: #3b82f6;
          color: white;
          transform: translateY(-2px);
      }
      
      .footer-bottom {
          padding: 1.5rem;
          margin-top: 1rem;
          border-top: 1px solid #e5e7eb;
      }
      
      .copyright {
          font-size: 0.85rem;
          text-align: center;
      }
  }
  
  /* Medium Laptops (1200px - 1440px) */
  @media (min-width: 1200px) and (max-width: 1440px) {
      .footer-content {
          gap: 4rem;
          padding: 2.5rem 3rem;
          box-sizing: border-box;
          max-width: 1600px;
      }
      
      .footer-left {
          flex: 0 0 380px;
          max-width: 380px;
      }
      
      .footer-nav {
          grid-template-columns: repeat(4, 1fr);
          gap: 3.5rem;
      }
  }
  
  /* Tablets and Small Laptops (768px - 1024px) */
  @media (min-width: 768px) and (max-width: 1023px) {
      .footer-content {
          flex-direction: column;
          gap: 2.5rem;
          padding: 2rem 1.5rem;
          box-sizing: border-box;
      }
      
      .footer-left {
          flex: none;
          max-width: 100%;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
      }
      
      .footer-right {
          padding-left: 0;
      }
      
      .footer-nav {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
          justify-items: center;
          text-align: center;
      }
      
      .nav-section {
          min-width: 0;
      }
      
      .social-links {
          justify-content: center;
      }
  }
  
  /* Mobile Devices (up to 768px) */
  @media (max-width: 767px) {
      .footer-content {
          flex-direction: column;
          gap: 2rem;
          padding: 1.5rem 1rem;
          text-align: center;
          box-sizing: border-box;
      }
      
      .footer-left {
          flex: none;
          max-width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
      }
      
      .footer-logo-img {
          height: 60px;
          translate: 0 0;
      }
      
      .footer-description {
          font-size: 0.9rem;
          margin-bottom: 1rem;
      }
      
      .footer-search {
          max-width: 100%;
          margin: 1rem 0;
          width: 100%;
      }
      
      .footer-right {
          padding-left: 0;
      }
      
      .footer-nav {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 1.5rem;
          text-align: left;
      }
      
      .nav-section {
          min-width: 0;
      }
      
      .nav-section h3 {
          font-size: 0.9rem;
          margin-bottom: 0.5rem;
      }
      
      .nav-section a {
          font-size: 0.8rem;
          padding: 0.2rem 0;
      }
      
      .social-links {
          justify-content: center;
          margin-top: 1rem;
      }
  }
  
  /* Small Mobile Devices (up to 480px) */
  @media (max-width: 480px) {
      .footer-content {
          padding: 1rem 0.75rem;
          gap: 1.5rem;
          box-sizing: border-box;
      }
      
      .footer-logo-img {
          height: 50px;
      }
      
      .footer-nav {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          text-align: center;
      }
      
      .nav-section {
          min-width: 100%;
      }
      
      .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 0.75rem;
          padding: 1rem 0.75rem;
      }
      
      .footer-links {
          justify-content: center;
          flex-wrap: wrap;
      }
      
      .copyright {
          font-size: 0.8rem;
      }
  }
  
  /* Large Screens (1440px+) */
  @media (min-width: 1441px) {
      .footer-content {
          gap: 5rem;
          padding: 3rem 4rem;
          max-width: 1800px;
          margin: 0 auto 3rem auto;
      }
      
      .footer-left {
          flex: 0 0 420px;
          max-width: 420px;
      }
      
      .footer-logo-img {
          height: 110px;
      }
      
      .footer-search {
          max-width: 380px;
      }
      
      .footer-right {
          padding-left: 3rem;
      }
      
      .footer-nav {
          grid-template-columns: repeat(4, 1fr);
          gap: 4rem;
      }
      
      .nav-section h3 {
          font-size: 1rem;
          margin-bottom: 1rem;
      }
      
      .nav-section a {
          font-size: 0.9rem;
          padding: 0.3rem 0;
      }
  }
  
  /* Extra Large Screens (1920px+) */
  @media (min-width: 1920px) {
      .footer-content {
          gap: 6rem;
          padding: 3.5rem 5rem;
          max-width: 2000px;
      }
      
      .footer-left {
          flex: 0 0 480px;
          max-width: 480px;
      }
      
      .footer-logo-img {
          height: 120px;
      }
      
      .footer-search {
          max-width: 420px;
      }
      
      .footer-right {
          padding-left: 4rem;
      }
      
      .footer-nav {
          gap: 5rem;
      }
      
      .nav-section h3 {
          font-size: 1.1rem;
          margin-bottom: 1.2rem;
      }
      
      .nav-section a {
          font-size: 0.95rem;
          padding: 0.35rem 0;
      }
  }
  
  /* Theme Support */
  /* Dark Theme Overrides */
  body.dark-theme {
    --bg-color: #121212;
    --bg-secondary: #1e1e1e;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: #333;
    --box-shadow-color: rgba(0, 0, 0, 0.3);
  }
  
  /* Ensure header respects dark theme */
  body.dark-theme .main-navigation {
    background-color: var(--bg-secondary, #1e1e1e);
    border-bottom: 1px solid var(--border-color, #333);
  }
  
  /* Ensure footer respects dark theme */
  body.dark-theme footer {
    background-color: var(--bg-secondary, #1e1e1e);
    border-top: 1px solid var(--border-color, #333);
  }
  
  /* Ensure form elements respect dark theme */
  body.dark-theme input,
  body.dark-theme select,
  body.dark-theme textarea {
    background-color: var(--bg-tertiary, #2a2a2a);
    color: var(--text-color, #e0e0e0);
    border-color: var(--border-color, #333);
  }
  
  body.dark-theme .site-header {
      background-color: #000000;
  }
  
  body.dark-theme .site-footer {
      background-color: #000000;
  }
  
  body.dark-theme .nav-title {
      color: #ffffff;
  }
  
  body.dark-theme .nav-link {
      color: #cccccc;
  }
  
  body.dark-theme .nav-link:hover {
      color: #ffffff;
  }
  
  body.dark-theme .search-wrapper {
      background-color: #374151;
      border-color: #4b5563;
  }
  
  body.dark-theme .search-input {
      background-color: #374151;
      color: #f9fafb;
  }
  
  body.dark-theme .search-btn {
      background-color: #4b5563;
      color: #d1d5db;
  }
  
  body.dark-theme .search-btn:hover {
      background-color: #6b7280;
  }
  
  body.dark-theme .social-link {
      background: transparent;
      color: #cccccc;
  }
  
  body.dark-theme .social-link:hover {
      color: #ffffff;
  }
  
  /* Theme Toggle Visibility */
  .dark-mode-btn {
      display: flex;
  }
  
  .light-mode-btn {
      display: none;
  }
  
  body.dark-theme .dark-mode-btn {
      display: none;
  }
  
  .dark-theme .light-mode-btn {
      display: flex;
  }
  
  /* Dual Logo Visibility */
  .dark-logo {
      display: none;
  }
  
  .light-logo {
      display: block;
  }
  
  .dark-theme .dark-logo {
      display: block;
  }
  
  .dark-theme .light-logo {
      display: none;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .header-content {
          flex-direction: row; /* Keep header elements in one line */
          justify-content: space-between;
          align-items: center;
          gap: 0.5rem;
      }
      
      .header-controls {
          flex-direction: row; /* Keep controls in one line */
          gap: 0.5rem;
          align-items: center;
      }
      
      .logo-img {
          height: 35px;
          max-width: 110px;
          min-width: auto;
      }
      
      .logo-link {
          height: 35px;
      }
      
      .nav-buttons {
          display: none;
      }
      
      .footer-content {
          grid-template-columns: 1fr;
          gap: 2rem;
          text-align: center;
      }
      
      .footer-nav {
          justify-content: center;
          gap: 2rem;
      }
      
      .social-links {
          justify-content: center;
      }
  }
  
  @media (max-width: 480px) {
      .logo-img {
          height: 35px;
          max-width: 100px;
          min-width: auto;
      }
      
      .logo-link {
          height: 35px;
      }
      
      .footer-logo-img {
          height: 50px;
          translate: 0 0;
          max-width: 100%;
      }
      
      .footer-logo {
          max-width: 100%;
          margin: 1rem 0;
          text-align: center;
          transform: none;
      }
      
      .footer-nav {
          flex-direction: column;
          gap: 1.5rem;
      }
      
      .footer-search {
          max-width: 100%;
          margin: 1rem 0;
          width: 100%;
      }
  }