/* SS Group Nepal - Professional Website Styles */

:root {
  /* Color System */
  --bg: 248 250 252;
  --text: 15 23 42;
  --text-light: 71 85 105;
  --text-muted: 148 163 184;
  --primary: 15 23 42;
  --accent: 14 165 233;
  --accent-light: 56 189 248;
  --violet: 139 92 246;
  --success: 34 197 94;
  --warning: 245 158 11;
  --error: 239 68 68;
  --surface: 255 255 255;
  --border: 226 232 240;
  --border-light: 241 245 249;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Typography */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(var(--text), 0.05);
  --shadow: 0 4px 6px rgba(var(--text), 0.07);
  --shadow-lg: 0 10px 15px rgba(var(--text), 0.1);
  --shadow-xl: 0 20px 25px rgba(var(--text), 0.15);
  
  /* Transitions */
  --transition: 0.2s ease-in-out;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: rgb(var(--text));
  background: rgb(var(--bg));
  font-size: var(--font-base);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: rgb(var(--text));
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-4xl); }
h2 { font-size: var(--font-3xl); }
h3 { font-size: var(--font-2xl); }
h4 { font-size: var(--font-xl); }
h5 { font-size: var(--font-lg); }
h6 { font-size: var(--font-base); }

p {
  margin-bottom: var(--space-md);
  color: rgb(var(--text-light));
}

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

a:hover {
  color: rgb(var(--accent-light));
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 800px;
}

.container-wide {
  max-width: 1400px;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Header */
.site-header {
  background: rgba(var(--surface), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(var(--border));
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 800;
  font-size: var(--font-xl);
  color: rgb(var(--text));
  text-decoration: none;
}

.logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--violet)));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: var(--font-lg);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  color: rgb(var(--text));
  font-weight: 500;
  transition: all var(--transition);
}

.nav-link:hover {
  background: rgb(var(--border-light));
  color: rgb(var(--accent));
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  background: rgb(var(--text));
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: min(400px, 90%);
    flex-direction: column;
    background: rgb(var(--surface));
    border: 1px solid rgb(var(--border));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav.open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: var(--space-md);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  font-size: var(--font-base);
}

.btn-primary {
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--violet)));
  color: white;
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: rgb(var(--surface));
  color: rgb(var(--text));
  border: 1px solid rgb(var(--border));
}

.btn-secondary:hover {
  background: rgb(var(--border-light));
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-lg);
}

.btn-filter {
  background: rgb(var(--surface));
  color: rgb(var(--text-light));
  border: 1px solid rgb(var(--border));
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-sm);
}

.btn-filter:hover,
.btn-filter.active {
  background: rgb(var(--accent));
  color: white;
  border-color: rgb(var(--accent));
}

.gallery-filters {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

/* Cards */
.card {
  background: rgb(var(--surface));
  border: 1px solid rgb(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgb(var(--accent-light));
}

/* Page Header (Replaces Hero) */
.page-header {
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  background: linear-gradient(135deg, rgb(var(--surface)) 0%, rgb(var(--border-light)) 100%);
  border-bottom: 1px solid rgb(var(--border));
}

.breadcrumb {
  font-size: var(--font-sm);
  color: rgb(var(--text-muted));
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: rgb(var(--accent));
}

.breadcrumb-sep {
  margin: 0 var(--space-sm);
}

.page-title {
  font-size: clamp(var(--font-3xl), 5vw, var(--font-4xl));
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, rgb(var(--text)), rgb(var(--accent)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-subtitle {
  font-size: var(--font-lg);
  color: rgb(var(--text-light));
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-size: var(--font-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--font-lg);
  color: rgb(var(--text-light));
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.feature {
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.feature h3 {
  margin-bottom: var(--space-md);
  color: rgb(var(--text));
}

.feature p {
  color: rgb(var(--text-light));
}

/* Company Cards */
.company-card {
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

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

.company-card:hover::before {
  left: 100%;
}

.company-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(var(--accent), 0.1), rgba(var(--violet), 0.1));
  display: grid;
  place-items: center;
  margin-bottom: var(--space-lg);
  color: rgb(var(--accent));
}

.company-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.tag {
  background: rgba(var(--accent), 0.1);
  color: rgb(var(--accent));
  padding: var(--space-xs) var(--space-sm);
  border-radius: 999px;
  font-size: var(--font-sm);
  font-weight: 500;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: rgb(var(--text));
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgb(var(--border));
  border-radius: var(--radius);
  background: rgb(var(--surface));
  font-size: var(--font-base);
  transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgb(var(--accent));
  box-shadow: 0 0 0 3px rgba(var(--accent), 0.1);
}

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

/* Contact Grid */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  padding: var(--space-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  width: 100%;
}

.contact-info-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgb(var(--surface)), rgb(var(--border-light)));
  border-radius: var(--radius-lg);
  border: 1px solid rgb(var(--border));
}

.contact-methods {
  margin-top: var(--space-lg);
}

.contact-method {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgb(var(--border-light));
}

.contact-method:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(var(--accent), 0.1);
  display: grid;
  place-items: center;
  color: rgb(var(--accent));
  flex-shrink: 0;
}

.method-content h4 {
  margin-bottom: var(--space-xs);
  color: rgb(var(--text));
}

.method-content p {
  margin-bottom: var(--space-xs);
  color: rgb(var(--text-light));
}

.method-note {
  font-size: var(--font-sm);
  color: rgb(var(--text-muted));
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgb(var(--surface));
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item-content {
  padding: var(--space-lg);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-size: var(--font-3xl);
  font-weight: 800;
  color: rgb(var(--accent));
  margin-bottom: var(--space-sm);
  display: block;
}

.stat-label {
  color: rgb(var(--text-light));
  font-weight: 500;
}

/* Company Details */
.company-detailed-card {
  margin-bottom: var(--space-2xl);
}

.company-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.company-title h3 {
  margin-bottom: var(--space-xs);
}

.company-subtitle {
  color: rgb(var(--text-light));
  font-size: var(--font-sm);
  margin: 0;
}

.company-features {
  margin: var(--space-lg) 0;
}

.company-features h4 {
  margin-bottom: var(--space-md);
  color: rgb(var(--text));
}

.company-features ul {
  list-style: none;
  padding: 0;
}

.company-features li {
  padding: var(--space-sm) 0;
  color: rgb(var(--text-light));
  position: relative;
  padding-left: var(--space-lg);
}

.company-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgb(var(--success));
  font-weight: bold;
}

.company-details {
  margin-top: var(--space-lg);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgb(var(--text-light));
  font-size: var(--font-sm);
}

.detail-item svg {
  width: 16px;
  height: 16px;
  color: rgb(var(--accent));
}

/* Testimonials */
.testimonials {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  text-align: center;
  padding: var(--space-xl);
}

.testimonial-content {
  margin-bottom: var(--space-lg);
}

.testimonial-content p {
  font-size: var(--font-lg);
  font-style: italic;
  color: rgb(var(--text));
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgb(var(--border));
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: var(--font-base);
  color: rgb(var(--text));
}

.author-info p {
  margin: 0;
  font-size: var(--font-sm);
  color: rgb(var(--text-light));
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.value-item {
  text-align: center;
  padding: var(--space-xl);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent), 0.1), rgba(var(--violet), 0.1));
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-lg);
  color: rgb(var(--accent));
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-lg);
}

.faq-item {
  padding: var(--space-lg);
}

.faq-item h4 {
  color: rgb(var(--text));
  margin-bottom: var(--space-md);
}

.faq-item p {
  color: rgb(var(--text-light));
  margin: 0;
}

/* Footer */
.site-footer {
  background: rgb(var(--text));
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.footer-brand h3 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgb(var(--accent-light));
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Newsletter */
.newsletter-form {
  margin-top: var(--space-lg);
}

.input-group {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  white-space: nowrap;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

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

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

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .page-header {
    padding: var(--space-2xl) 0 var(--space-lg);
  }
  
  .card {
    padding: var(--space-lg);
  }
}

/* Focus States */
:focus-visible {
  outline: 2px solid rgb(var(--accent));
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Alert Messages */
.alert {
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
  border-left: 4px solid;
}

.alert-error {
  background: rgba(var(--error), 0.1);
  border-color: rgb(var(--error));
  color: rgb(var(--error));
}

.alert-success {
  background: rgba(var(--success), 0.1);
  border-color: rgb(var(--success));
  color: rgb(var(--success));
}

.alert ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.alert li {
  margin-bottom: var(--space-xs);
}

/* Enhanced Mobile Responsiveness */

/* Extra Small Devices (phones, 576px and down) */
@media screen and (max-width: 575px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .page-header h1 {
    font-size: var(--font-3xl);
  }
  
  .page-header .lead {
    font-size: var(--font-base);
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .site-header .container {
    padding: 0 var(--space-md);
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgb(var(--surface));
    border-top: 1px solid rgb(var(--border));
    padding: var(--space-lg);
    z-index: 1000;
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
  }
  
  .nav.active {
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .card {
    padding: var(--space-lg);
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .contact-form .form-group {
    margin-bottom: var(--space-lg);
  }
  
  .stats-card .stats-number {
    font-size: var(--font-2xl);
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-header h1 {
    font-size: var(--font-4xl);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .container {
    max-width: 720px;
  }
  
  .nav {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
}

/* Large Devices (desktops, 992px and up) */
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Ultra Wide Screens (1400px and up) */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Animated Counter Styles */
.stats-number {
  display: inline-block;
  font-weight: 800;
  font-size: var(--font-3xl);
  color: rgb(var(--accent));
  line-height: 1;
  transition: all 0.3s ease;
}

.stats-card:hover .stats-number {
  transform: scale(1.1);
  color: rgb(var(--violet));
}

.stats-card {
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Gallery Responsive Improvements */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media screen and (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .gallery-filters {
    overflow-x: auto;
    padding-bottom: var(--space-sm);
  }
  
  .gallery-filters .btn-filter {
    flex-shrink: 0;
    margin-right: var(--space-sm);
  }
}

/* Form Responsive Improvements */
@media screen and (max-width: 767px) {
  .contact-form {
    padding: var(--space-lg);
  }
  
  .form-input,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}



/* Accessibility Improvements */
.using-keyboard *:focus {
  outline: 2px solid rgb(var(--accent));
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-toggle {
    display: none !important;
  }
  
  .container {
    width: 100% !important;
    max-width: none !important;
  }
  
  .card {
    border: 1px solid #000;
    break-inside: avoid;
  }
}

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
