/* McKeen Technologies - Modern Chrome & Black Design */

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --color-black: #000000;
  --color-dark: #0a0a0a;
  --color-darker: #111111;
  --color-gray-dark: #1a1a1a;
  --color-gray: #333333;
  --color-light: #f5f5f5;
  --color-white: #ffffff;
  
  /* Chrome/Silver Metallic */
  --color-chrome-light: #e8e8e8;
  --color-chrome: #c0c0c0;
  --color-chrome-dark: #a8a8a8;
  
  /* Silver Accents (Primary) */
  --color-silver-bright: #f0f0f0;
  --color-silver: #c0c0c0;
  --color-silver-medium: #a8a8a8;
  --color-silver-dark: #808080;
  
  /* Info/Alert Colors */
  --color-info: #3498db;
  --color-warning: #f39c12;
  
  /* Typography */
  --font-main: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--color-light);
  background: var(--color-black);
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 50%, var(--color-darker) 100%);
  position: relative;
}

/* Subtle chrome texture overlay */
.page-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--color-silver);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-silver-bright);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
              0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(192, 192, 192, 0.3));
  transition: var(--transition-smooth);
}

.logo img:hover {
  filter: drop-shadow(0 4px 12px rgba(192, 192, 192, 0.5));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-light);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  opacity: 0;
  transition: var(--transition-smooth);
}

.nav-menu a:hover::before,
.nav-menu .active a::before {
  opacity: 1;
}

.nav-menu a:hover,
.nav-menu .active a {
  color: var(--color-silver);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(145deg, var(--color-white), var(--color-chrome), var(--color-white));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(192, 192, 192, 0.3);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--color-silver);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(192, 192, 192, 0.5);
}

.hero .hero-tagline {
  font-size: 1rem;
  color: var(--color-chrome);
  margin-bottom: 1rem;
}

/* ===== Service Selector Section ===== */
.service-selector {
  padding: 3rem 0 4rem;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(145deg, var(--color-white), var(--color-chrome-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Service Card - Chrome Glass Effect ===== */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.08) 0%,
    rgba(192, 192, 192, 0.05) 50%,
    rgba(168, 168, 168, 0.02) 100%
  );
  border-radius: 16px;
  z-index: 0;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 1;
}

.card-inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Active Service Cards */
.service-card.active-service {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-card.active-service:hover {
  transform: translateY(-8px);
}

.service-card.active-service:hover::after {
  border-color: var(--color-silver-medium);
  box-shadow: 
    0 12px 40px rgba(192, 192, 192, 0.3),
    0 0 60px rgba(192, 192, 192, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Coming Soon Cards */
.service-card.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(70%);
}

.service-card.coming-soon::before {
  background: linear-gradient(145deg, 
    rgba(100, 100, 100, 0.08) 0%,
    rgba(50, 50, 50, 0.05) 100%
  );
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--color-chrome);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Service Card Content */
.service-icon {
  font-size: 3rem;
  color: var(--color-silver);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.service-description {
  color: var(--color-chrome-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  margin: 1rem 0;
  flex-grow: 1;
}

.service-features li {
  padding: 0.4rem 0;
  color: var(--color-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.service-features li i {
  color: var(--color-silver-medium);
  font-size: 0.9rem;
}

/* Info Banner for Environmental Card */
.info-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(224, 224, 224, 0.1));
  border: 1px solid var(--color-silver-medium);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-silver);
}

.info-banner i {
  font-size: 1.2rem;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-silver-medium) 0%, var(--color-silver) 100%);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(192, 192, 192, 0.5);
  background: linear-gradient(135deg, var(--color-silver) 0%, var(--color-silver-bright) 100%);
  color: var(--color-white);
}

.cta-button i {
  transition: var(--transition-fast);
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* ===== Company Intro Section ===== */
.company-intro {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-silver);
}

.intro-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--color-chrome-light);
}

.intro-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.primary-button, .secondary-button {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.primary-button {
  background: linear-gradient(135deg, var(--color-silver-medium), var(--color-silver));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(192, 192, 192, 0.5);
}

.secondary-button {
  background: transparent;
  border: 2px solid var(--color-silver-medium);
  color: var(--color-silver);
}

.secondary-button:hover {
  background: rgba(192, 192, 192, 0.1);
  border-color: var(--color-silver);
}

/* ===== Panel/Card Styles ===== */
.panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(192, 192, 192, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.panel:hover {
  border-color: rgba(192, 192, 192, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(192, 192, 192, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ===== Page Header ===== */
.page-header {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at center, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
}

.page-header-content {
  max-width: 800px;
}

.header-icon {
  font-size: 5rem;
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(192, 192, 192, 0.5);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  color: var(--color-chrome-light);
}

/* ===== Service Details Page ===== */
.service-details {
  padding: 4rem 0;
}

.service-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  display: flex;
  flex-direction: column;
}

.item-icon {
  font-size: 3rem;
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}

.service-item h3 {
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-item p {
  color: var(--color-chrome-light);
  margin-bottom: 1.5rem;
}

.service-item ul {
  list-style: none;
  margin-top: 1rem;
}

.service-item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-light);
}

.service-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-silver-medium);
}

/* ===== Notice Box (Environmental Page) ===== */
.notice-box {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(160, 160, 160, 0.1));
  border: 2px solid var(--color-silver-medium);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(192, 192, 192, 0.2);
}

.notice-icon {
  font-size: 3rem;
  color: var(--color-silver);
  text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.notice-content h3 {
  color: var(--color-silver);
  margin-bottom: 1rem;
}

.notice-content p {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.notice-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-silver-medium);
  color: var(--color-white);
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.notice-button:hover {
  background: var(--color-silver);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

/* ===== About Page ===== */
.about-content {
  padding: 4rem 0;
}

.about-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.mission-section {
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  color: var(--color-silver);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}

.value-card h3 {
  color: var(--color-silver);
  margin-bottom: 1rem;
}

.leadership-section {
  margin: 3rem 0;
}

.profile-title {
  color: var(--color-silver);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 2rem;
  color: var(--color-silver);
  text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.info-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-silver);
}

.info-details p {
  color: var(--color-chrome-light);
  margin-bottom: 0.25rem;
}

.info-details a {
  color: var(--color-light);
}

.info-details a:hover {
  color: var(--color-silver);
}

.emergency-text {
  color: var(--color-silver);
  font-weight: 600;
}

/* ===== Contact Form ===== */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--color-chrome-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-silver-medium);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  grid-column: 1 / -1;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-silver-medium), var(--color-silver));
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(192, 192, 192, 0.5);
  background: linear-gradient(135deg, var(--color-silver), var(--color-silver-bright));
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-chrome-light);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  color: var(--color-silver);
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: var(--color-silver-medium);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--color-chrome-light);
  margin-bottom: 0.5rem;
}

.footer-section i {
  color: var(--color-silver-medium);
  margin-right: 0.5rem;
}

.footer-section .emergency {
  color: var(--color-silver);
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-chrome-dark);
}

/* ===== Customer Login Page ===== */
.customer-login-section {
  padding: 4rem 0;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.login-box {
  padding: 3rem;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-icon {
  font-size: 4rem;
  color: var(--color-silver);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.login-header h2 {
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--color-chrome-light);
  font-size: 0.95rem;
}

.login-error {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.5);
  border-radius: 8px;
  color: #e74c3c;
  margin-bottom: 1.5rem;
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.login-error i {
  font-size: 1.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-form .form-group {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin-bottom: 0.5rem;
  color: var(--color-chrome-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.login-form label i {
  color: var(--color-silver);
}

.login-form input[type="text"],
.login-form input[type="password"] {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.login-form input:focus {
  outline: none;
  border-color: var(--color-silver);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--color-chrome-light);
}

.remember-me input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.forgot-password {
  color: var(--color-silver);
  text-decoration: none;
  transition: var(--transition-fast);
}

.forgot-password:hover {
  color: var(--color-silver-bright);
}

.login-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-silver-medium), var(--color-silver));
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
  margin-top: 1rem;
}

.login-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(192, 192, 192, 0.5);
  background: linear-gradient(135deg, var(--color-silver), var(--color-silver-bright));
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.login-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.login-footer p {
  color: var(--color-chrome-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.login-footer a {
  color: var(--color-silver);
  font-weight: 600;
}

.login-info {
  padding: 2.5rem;
}

.login-info h3 {
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.75rem 0;
  color: var(--color-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: var(--color-silver);
  font-size: 0.9rem;
}

.support-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.support-box h4 {
  color: var(--color-silver);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.support-box p {
  color: var(--color-chrome-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.support-box a {
  color: var(--color-light);
}

.support-box a:hover {
  color: var(--color-silver-bright);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-width: 120px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    opacity: 0;
    animation: fadeInSlide 0.5s forwards;
  }
  
  .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes fadeInSlide {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-menu a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .notice-box {
    flex-direction: column;
    text-align: center;
  }
  
  .login-container {
    grid-template-columns: 1fr;
  }
}

