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

:root {
  /* Light theme variables (default) */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-glow: rgba(245, 158, 11, 0.15);
  --secondary: #3b82f6;
  --secondary-glow: rgba(59, 130, 246, 0.15);
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dark: #0f172a;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-focus: rgba(245, 158, 11, 0.4);
  
  /* Fonts & Sizing */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.1);
}

/* Dark theme variables */
[data-theme="dark"] {
  --bg-main: #0b0f19;
  --bg-card: #131c31;
  --bg-card-hover: #1b2641;
  --primary: #ffb21a;
  --primary-hover: #e59c0e;
  --primary-glow: rgba(255, 178, 26, 0.15);
  --secondary: #3b82f6;
  --secondary-glow: rgba(59, 130, 246, 0.15);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 178, 26, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(255, 178, 26, 0.2);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border: 2px solid var(--bg-main);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

/* Gradient Texts & Badges */
.text-gradient {
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, var(--primary) 0%, #ff7b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3), var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(15, 23, 42, 0.03);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

[data-theme="dark"] .navbar.scrolled {
  background-color: rgba(11, 15, 25, 0.85);
}

.navbar .nav-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled .nav-container {
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo span {
  color: var(--primary);
}

.logo svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
  filter: drop-shadow(0 0 3px var(--primary));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 18px !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background-color: var(--primary) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

/* Segmented Theme Switch */
.theme-switch {
  display: flex;
  position: relative;
  background-color: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 3px;
  user-select: none;
  align-items: center;
  transition: var(--transition);
}

[data-theme="dark"] .theme-switch {
  background-color: rgba(255, 255, 255, 0.05);
}

.theme-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  z-index: 2;
  transition: var(--transition);
}

.theme-switch-btn.active {
  color: var(--text-dark);
}

[data-theme="dark"] .theme-switch-btn.active {
  color: var(--text-main);
}

.theme-switch-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: var(--transition);
}

/* Sliding Indicator */
.theme-switch-bg {
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  width: calc(50% - 3px);
  background-color: var(--primary);
  border-radius: 50px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* When Dark is active, slide background to the right */
[data-theme="dark"] .theme-switch-bg {
  transform: translateX(100%);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

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

.glow-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(10px);
  animation: pulse 8s infinite alternate;
}

.hero-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  overflow: hidden;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.card-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: blink 1.5s infinite;
}

.hero-card-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-card-feature:last-child {
  margin-bottom: 0;
}

.hero-card-feature .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-color);
  color: var(--primary);
  flex-shrink: 0;
}

[data-theme="dark"] .hero-card-feature .icon-container {
  background-color: rgba(255, 255, 255, 0.02);
}

.hero-card-feature .icon-container svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-card-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 3px;
  color: var(--text-main);
}

.hero-card-feature p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.2);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  transition: var(--transition);
}

[data-theme="dark"] .service-icon {
  background-color: rgba(255, 255, 255, 0.02);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Advantage Section */
.advantage {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-card-hover) 50%, var(--bg-main) 100%);
  position: relative;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.advantage-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
  filter: blur(20px);
}

.advantage-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  width: 100%;
}

.block-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.block-header svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.block-header h3 {
  margin-bottom: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  gap: 20px;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 8px var(--primary);
  z-index: 2;
}

.step-line {
  width: 2px;
  background-color: var(--border-color);
  flex-grow: 1;
  margin-top: 5px;
}

.timeline-step:last-child .step-line {
  display: none;
}

.step-content h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 5px;
}

.step-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-item {
  display: flex;
  gap: 15px;
}

.advantage-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.advantage-item h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.advantage-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-border-effect {
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.profile-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.profile-avatar-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin: 0 auto 20px auto;
  padding: 3px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

[data-theme="dark"] .profile-avatar-container {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profile-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.profile-card .subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.p-stat h4 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 3px;
}

.p-stat p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.a-feature {
  display: flex;
  gap: 15px;
}

.a-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.a-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.a-feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Section */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

[data-theme="dark"] .contact-icon-box {
  background-color: rgba(255, 255, 255, 0.03);
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-text-box h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.contact-text-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-text-box a:hover {
  color: var(--primary);
}

.contact-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.01);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

[data-theme="dark"] .form-control {
  background-color: rgba(255, 255, 255, 0.02);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.08);
}

.form-control::placeholder {
  color: #94a3b8;
}

[data-theme="dark"] .form-control::placeholder {
  color: #475569;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 1rem;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
}

[data-theme="dark"] .form-status.success {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

[data-theme="dark"] .form-status.error {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* Footer */
footer {
  background-color: #f1f5f9;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

[data-theme="dark"] footer {
  background-color: #060911;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4,
.footer-hours h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.hours-day {
  color: var(--text-muted);
}

.hours-time {
  font-weight: 500;
  color: var(--text-main);
}

.hours-row.highlight .hours-day,
.hours-row.highlight .hours-time {
  color: var(--primary);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal li {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Responsive Design Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-card {
    max-width: 100%;
  }
  
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .advantage-block {
    max-width: 100%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-visual {
    order: -1;
  }
  
  .about-border-effect {
    max-width: 100%;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 60px 0;
  }
  
  .profile-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
  
  .about-border-effect {
    border: none;
    height: auto;
    max-width: 100%;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 100px 40px;
    align-items: flex-start;
    gap: 2rem;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .navbar.scrolled .nav-container {
    padding: 15px 0;
  }
  
  .theme-switch {
    margin-left: 0;
    order: -1;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-card {
    padding: 25px 20px;
  }
}

@media (max-width: 560px) {
  .theme-switch-btn .switch-text {
    display: none;
  }
  .theme-switch-btn {
    padding: 6px 10px;
    gap: 0;
  }
}
