/* Ultra-Modern CSS with Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

@font-face {
  font-family: 'RobotoLight';
  src: url('Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html, input, textarea, button, select {
  font-family: 'RobotoLight', Arial, Helvetica, sans-serif !important;
  font-weight: 300;
  background: linear-gradient(135deg, #f8f6f2 0%, #e3f0fa 100%);
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Professional Header */
header {
  background: rgba(227, 240, 250, 0.98);
  border-bottom: 1px solid rgba(182, 216, 246, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(182, 216, 246, 0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: #e3f0fa;
  border-bottom: 1px solid #b6d8f6;
}

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  margin-right: 1.5rem;
}

.logo-group .logo {
  margin-bottom: 0.1rem;
}

.logo-group .logo-subtitle {
  margin-top: 0;
  margin-bottom: 0.1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #2a4d69;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.98rem;
  color: #4a5568;
  font-weight: 400;
  margin-bottom: 0.2rem;
  margin-top: -0.5rem;
  margin-left: 2px;
  letter-spacing: 0.1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #2a4d69;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.75rem 0;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a.active, nav a:hover {
  color: #1b7fc2;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  margin-left: 2rem;
  background: #fff;
  padding: 0.25rem;
  border-radius: 12px;
  border: 1px solid #b6d8f6;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #2a4d69;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active, .lang-btn:hover {
  color: #fff;
  background: #b6d8f6;
}

/* Premium Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 4rem 2rem;
}

.section {
  margin-bottom: 6rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3f0fa;
  padding: 4rem 3rem;
  box-shadow: 0 4px 24px rgba(182, 216, 246, 0.12);
}

/* Ultra-Premium Hero Section */
.hero {
  text-align: center;
  background: linear-gradient(135deg, #e3f0fa 0%, #f8f6f2 100%);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #b6d8f6;
  box-shadow: 0 8px 32px rgba(182, 216, 246, 0.25);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(182, 216, 246, 0.1) 0%, rgba(227, 240, 250, 0.2) 100%);
  border-radius: 16px;
  z-index: -1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  font-weight: 900;
  color: #2a4d69;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-titles {
  display: inline-block;
  background: #e3f0fa;
  color: #1b7fc2;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 20px;
  padding: 0.4em 1.2em;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(182, 216, 246, 0.10);
}

.hero p {
  font-size: 1.25rem;
  color: #2a4d69;
  margin-bottom: 2rem;
  max-width: 600px;
  font-weight: 500;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  background: #b6d8f6;
  color: #1b7fc2;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  margin-top: 1.2rem;
  box-shadow: 0 4px 16px rgba(182, 216, 246, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  background: #1b7fc2;
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 127, 194, 0.13);
}

/* Premium About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  position: relative;
  justify-self: center;
}

.about-photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a4d69;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.about-info p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3a5a7a;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Premium Experience Section */
.experience {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.experience h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a4d69;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.experience-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3a5a7a;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Premium Approach Section */
.approach {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.approach h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a4d69;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.approach-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3a5a7a;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Ultra-Premium Services Section */
.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a4d69;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
}

.service-item {
  background: #e3f0fa;
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #b6d8f6;
  box-shadow: 0 8px 24px rgba(182, 216, 246, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #222;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #b6d8f6;
  border-color: #1b7fc2;
  box-shadow: 0 12px 32px rgba(27, 127, 194, 0.18);
  transform: translateY(-2px);
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b7fc2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.service-item p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  font-weight: 400;
}

/* Premium Qualifications Section */
.qualifications {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.qualifications h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a4d69;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
}

.qualification-category {
  background: #e3f0fa;
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #b6d8f6;
  box-shadow: 0 8px 24px rgba(182, 216, 246, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #222;
  transition: all 0.3s ease;
}

.qualification-category:hover {
  background: #b6d8f6;
  border-color: #1b7fc2;
  box-shadow: 0 12px 32px rgba(27, 127, 194, 0.18);
  transform: translateY(-2px);
}

.qualification-category h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2a4d69;
  margin-bottom: 2rem;
  text-align: center;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  backdrop-filter: blur(15px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e3f0fa;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  flex: 1;
  color: #222;
}

.qualification-item:last-child {
  margin-bottom: 0;
}

.qual-icon {
  font-size: 2.5rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b6d8f6;
  border-radius: 12px;
  border: 1px solid #3b82f6;
  color: #2a4d69;
}

.qual-content {
  flex: 1;
}

.qual-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a4d69;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.qual-content p {
  font-size: 1rem;
  color: #3a5a7a;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.accreditation {
  display: inline-block;
  font-size: 0.875rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 500;
}

/* Ultra-Premium Contact Section */
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2a4d69;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.contact-container {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.contact-details {
  background: #e3f0fa;
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #b6d8f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #222;
}

.contact-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2a4d69;
  margin-bottom: 1.5rem;
}

.contact-details p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #3a5a7a;
  margin-bottom: 2rem;
  font-weight: 400;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-methods p {
  font-size: 1rem;
  color: #3a5a7a;
  margin: 0;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-methods strong {
  color: #3b82f6;
  font-weight: 700;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #b6d8f6;
  backdrop-filter: blur(15px);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #b6d8f6;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #2a4d69;
}

.btn-icon {
  font-size: 1.5rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.whatsapp-btn .btn-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
  border-color: rgba(34, 197, 94, 0.3);
}

.btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.btn-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-value {
  font-size: 1rem;
  font-weight: 500;
  color: #2a4d69;
}

/* Locations Section */
.locations-section {
  background: #e3f0fa;
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #b6d8f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.locations-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2a4d69;
  margin-bottom: 2rem;
  text-align: center;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #e3f0fa;
  backdrop-filter: blur(15px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #b6d8f6;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-card:hover {
  background: #b6d8f6;
  border-color: #1b7fc2;
  box-shadow: 0 12px 30px rgba(27, 127, 194, 0.2);
  transform: translateY(-2px);
}

.location-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.location-content {
  flex: 1;
}

.location-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2a4d69;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.location-content p {
  font-size: 1rem;
  color: #3a5a7a;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.location-type {
  display: inline-block;
  font-size: 0.875rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 500;
}

/* Premium Footer */
footer {
  text-align: center;
  padding: 3rem 0;
  background: #e3f0fa;
  backdrop-filter: blur(20px);
  color: #2a4d69;
  margin-top: 6rem;
  border-top: 1px solid #b6d8f6;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Professional Static Design */
.fade-in {
  opacity: 1;
  transform: none;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.slide-in-left {
  opacity: 1;
  transform: none;
}

.slide-in-left.visible {
  opacity: 1;
  transform: none;
}

.slide-in-right {
  opacity: 1;
  transform: none;
}

.slide-in-right.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  main {
    max-width: 95vw;
    padding: 120px 1rem 4rem 1rem;
  }
  
  .contact-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .lang-switcher {
    margin-left: 0;
  }
  
  .section {
    padding: 3rem 2rem;
    margin-bottom: 4rem;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
  
  .about {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .about-photo img {
    width: 240px;
    height: 240px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-info h2,
  .experience h2,
  .approach h2,
  .services h2,
  .qualifications h2,
  .contact h2 {
    font-size: 2.5rem;
  }
  
  .qualifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .location-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 2rem 1.5rem;
  }
  
  .about-photo img {
    width: 200px;
    height: 200px;
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .qualification-category {
    padding: 2rem 1.5rem;
  }
  
  .qualification-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .qual-icon {
    align-self: center;
  }
  
  .contact-btn {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .btn-content {
    align-items: center;
  }
  
  .location-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .location-icon {
    align-self: center;
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.5rem 0 0.5rem;
  }
  nav ul {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    width: 100vw;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    scrollbar-width: thin;
  }
  nav ul::-webkit-scrollbar {
    height: 4px;
  }
  nav ul::-webkit-scrollbar-thumb {
    background: #b6d8f6;
    border-radius: 2px;
  }
  nav a {
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
    min-width: 110px;
    text-align: center;
    border-radius: 8px;
    margin: 0 0.1rem;
  }
  .logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .section {
    padding: 1.2rem 0.5rem;
    margin-bottom: 2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-titles {
    font-size: 1rem;
    padding: 0.3em 0.8em;
  }
  .about-photo img {
    width: 120px;
    height: 120px;
  }
  .service-item, .qualification-category {
    padding: 1.2rem 0.5rem;
    min-width: 0;
  }
  .services-grid, .qualifications-grid {
    gap: 1rem;
  }
  .testimonial {
    padding: 1.2rem 0.5rem;
    font-size: 1rem;
  }
  .bacp-registration img {
    max-width: 98vw;
    padding: 0.3rem;
  }
}

.bacp-registration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0 2rem 0;
  flex-wrap: wrap;
}
.bacp-registration img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(182, 216, 246, 0.18);
  background: #fff;
  padding: 1rem;
  object-fit: contain;
}
@media (max-width: 600px) {
  .bacp-registration {
    flex-direction: column;
    gap: 1.2rem;
  }
  .bacp-registration img {
    max-width: 90vw;
    padding: 0.5rem;
  }
}

.blog-testimonials {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.testimonial {
  background: #e3f0fa;
  border: 1px solid #b6d8f6;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(182, 216, 246, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  font-size: 1.1rem;
  color: #2a4d69;
  font-family: 'Inter', sans-serif;
}

.testimonial h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b7fc2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.testimonial-author {
  display: block;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #4a5568;
  font-style: italic;
  text-align: right;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-left: auto;
  }
  .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: #1b7fc2;
    border-radius: 2px;
    transition: 0.3s;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 8px 32px rgba(182,216,246,0.18);
    z-index: 1200;
    padding: 1.5rem 0 1rem 0;
    margin: 0;
    border-radius: 0 0 18px 18px;
  }
  nav.nav-open ul {
    display: flex;
  }
  nav ul li {
    margin: 0.5rem 0;
    text-align: center;
  }
  .lang-switcher {
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 2000;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(182,216,246,0.10);
    padding: 0.2rem 0.4rem;
    display: flex;
    gap: 0.2rem;
  }
  .lang-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    min-width: 44px;
    min-height: 36px;
  }
  nav {
    position: relative;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .logo-group {
    margin-right: 0.5rem;
    margin-bottom: 0.2rem;
  }
  .logo-group .logo {
    font-size: 1.1rem;
    margin-bottom: 0.05rem;
  }
  .logo-group .logo-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0;
  }
  header {
    padding-top: 56px;
  }
}

@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
  nav ul {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .lang-switcher {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-left: auto;
    z-index: auto;
  }
  header {
    padding-top: 0;
  }
} 