* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e2e8f0;
}

.logo-image {
  height: 80px;
  width: auto;
  max-width: 400px;
}

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

.nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e2e8f0;
}

.nav-link-contact {
  background: #1e293b;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #e2e8f0;
}

.nav-link-contact:hover {
  background: #334155;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #3b82f6, transparent),
    radial-gradient(2px 2px at 40px 70px, #8b5cf6, transparent),
    radial-gradient(1px 1px at 90px 40px, #06b6d4, transparent),
    radial-gradient(1px 1px at 130px 80px, #f59e0b, transparent),
    radial-gradient(2px 2px at 160px 30px, #ef4444, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.icon-box {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.7);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid #475569;
}

.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.5);
  border-color: #64748b;
}

.hero-payment {
  display: flex;
  justify-content: center;
}

.payment-info {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 400px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.payment-info span {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.payment-info div {
  flex: 1;
}

.payment-info strong {
  color: #e2e8f0;
  font-weight: 600;
}

.payment-info span {
  color: #94a3b8;
  font-size: 0.9rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background: rgba(51, 65, 85, 0.5);
  color: #94a3b8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-highlight {
  background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: rgba(15, 23, 42, 0.5);
}

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

.service-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.7);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

.service-card > p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-features li {
  padding: 0.5rem 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.service-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #60a5fa;
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.why-choose {
  margin-top: 2rem;
}

.why-choose h3 {
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.why-list {
  list-style: none;
}

.why-list li {
  padding: 0.5rem 0;
  color: #cbd5e1;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.technologies {
  text-align: center;
}

.technologies h3 {
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tech-tag {
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: rgba(15, 23, 42, 0.5);
}

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

.team-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.team-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(51, 65, 85, 0.5);
}

.team-status {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
}

.team-card h3 {
  color: #e2e8f0;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.team-experience {
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.team-description {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.team-skills h4 {
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.skill-tag {
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  color: #e2e8f0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.contact-icon.phone {
  background: rgba(34, 197, 94, 0.2);
}

.contact-icon.email {
  background: rgba(59, 130, 246, 0.2);
}

.contact-icon.location {
  background: rgba(168, 85, 247, 0.2);
}

.contact-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-value {
  color: #e2e8f0;
  font-weight: 600;
}

.payment-plans {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.payment-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.payment-plans h4 {
  color: #22c55e;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.payment-plans p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Contact Form */
.contact-form-container h3 {
  color: #e2e8f0;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 8px;
  padding: 0.75rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.btn-full {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact Message Display */
.contact-message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.contact-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Cost Estimator Section */
.cost-estimator-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
}

.cost-estimator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.estimator-container {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Initial state - centered form */
.estimator-container.initial-state {
  justify-content: center;
}

.estimator-container.initial-state .estimator-form {
  max-width: 600px;
  width: 100%;
}

.estimator-container.initial-state .estimator-result {
  display: none;
}

/* After estimation - two column layout */
.estimator-container.results-state {
  justify-content: space-between;
  align-items: flex-start;
}

.estimator-container.results-state .estimator-form {
  flex: 1;
  max-width: 500px;
}

.estimator-container.results-state .estimator-result {
  flex: 1;
  max-width: 500px;
  display: block;
}

.estimator-form {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.estimator-form h3 {
  color: #e2e8f0;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.estimator-result {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.estimator-result h3 {
  color: #e2e8f0;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.estimate-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.estimate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.project-type {
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.1rem;
}

.estimate-range {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.currency {
  color: #22c55e;
  font-size: 1.5rem;
  font-weight: 700;
}

.price-range {
  color: #e2e8f0;
  font-size: 2rem;
  font-weight: 700;
}

.estimate-details {
  margin-bottom: 2rem;
}

.estimate-section {
  margin-bottom: 1.5rem;
}

.estimate-section h4 {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.estimate-section ul {
  list-style: none;
  padding: 0;
}

.estimate-section li {
  color: #94a3b8;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.2);
  font-size: 0.9rem;
}

.estimate-section li:last-child {
  border-bottom: none;
}

.estimate-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.estimate-note {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.estimator-message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.estimator-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.estimator-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.estimator-message.loading {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

/* Email Quote Section */
.email-quote-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.email-quote-section h4 {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.email-note {
  color: #94a3b8;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.email-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.email-input-group input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.6);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.email-input-group input[type="email"]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.email-input-group input[type="email"]::placeholder {
  color: #64748b;
}

.email-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
}

.email-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.email-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.email-message.loading {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

/* Responsive Email Section */
@media (max-width: 768px) {
  .email-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .email-input-group input[type="email"] {
    width: 100%;
  }
  
  .email-input-group button {
    width: 100%;
  }
}

/* Responsive Design for Cost Estimator */
@media (max-width: 1024px) {
  .estimator-container {
    gap: 2rem;
  }
  
  .estimator-container.initial-state .estimator-form {
    max-width: 500px;
  }
  
  .estimator-container.results-state .estimator-form,
  .estimator-container.results-state .estimator-result {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .cost-estimator-section {
    padding: 4rem 0;
  }
  
  .estimator-container {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .estimator-container.initial-state {
    justify-content: center;
  }
  
  .estimator-container.initial-state .estimator-form {
    max-width: 100%;
  }
  
  .estimator-container.results-state {
    justify-content: center;
  }
  
  .estimator-container.results-state .estimator-form,
  .estimator-container.results-state .estimator-result {
    max-width: 100%;
    flex: none;
  }
  
  .estimator-form,
  .estimator-result {
    padding: 1.5rem;
  }
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: #94a3b8;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact div {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-column h4 {
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e2e8f0;
}

.footer-payment h4 {
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-payment p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.footer-copyright {
  color: #64748b;
  font-size: 0.9rem;
}

.footer-status {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-icons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-list {
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .services-section,
  .about-section,
  .team-section,
  .contact-section {
    padding: 4rem 0;
  }
}
/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.language-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease, background 0.3s ease;
}

.language-btn:hover {
    color: #e2e8f0;
    background: rgba(51, 65, 85, 0.3);
}

.language-btn.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.language-separator {
    color: #475569;
    margin: 0 0.5rem;
}

/* Responsive adjustments for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .language-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 1rem 0 0;
    }
}
