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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: visible;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.5rem;
  position: relative;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b;
  text-decoration: none;
}

.logo-img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #475569;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
}

.hamburger:hover {
  color: #2563eb;
}

.hamburger i {
  font-size: 1.5rem;
  pointer-events: none;
}

.hamburger:active,
.hamburger:focus {
  outline: none;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  max-height: 50vh;
  overflow-y: auto;
  z-index: 99;
}

.nav.active {
  display: flex !important;
}

.nav a {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 1px solid #f1f5f9;
  display: block;
}

.nav a:last-child {
  border-bottom: none;
}

.nav a:hover {
  color: #2563eb;
  background-color: #f0f4f8;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
  font-family: inherit;
  font-size: inherit;
}

.nav-dropdown-btn:hover {
  color: #2563eb;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  display: none;
  flex-direction: column;
  margin-top: 0.5rem;
  z-index: 10;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 0.75rem 1rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:last-child {
  border-bottom: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

.dropdown-menu a:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-menu a:hover {
  background-color: #f0f4f8;
  color: #2563eb;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
}

.header-phone a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header-phone a:hover {
  color: #1d4ed8;
}

@media (min-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 1rem 0;
  }

  .hamburger {
    display: none;
    margin: 0;
  }

  .nav {
    position: static !important;
    display: flex !important;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    order: initial;
  }

  .nav a {
    width: auto;
    padding: 0 !important;
    border: none !important;
    font-size: 1rem;
  }

  .nav a:last-child {
    border: none !important;
  }

  .nav.active {
    display: flex !important;
  }

  .nav-contact {
    display: none;
  }

  .header-content > a.btn-primary {
    display: inline-flex;
  }

  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.9rem;
  display: inline-flex;
}

.header-content > a.btn-primary {
  display: none;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover {
  background: #eff6ff;
}

/* Carousel */
.carousel {
  width: 100%;
  background: #1e293b;
  position: relative;
}

.carousel-container {
  position: relative;
  height: 16.8rem;
}

@media (min-width: 768px) {
  .carousel-container {
    height: 22.4rem;
  }
}

@media (min-width: 1024px) {
  .carousel-container {
    height: 26.6rem;
  }
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  cursor: pointer;
  transition: filter 0.3s;
}

.carousel-slide:hover {
  filter: brightness(1.1);
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 800px;
}

.carousel-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .carousel-content h2 {
    font-size: 3rem;
  }
}

.carousel-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .carousel-content p {
    font-size: 1.125rem;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 20;
  opacity: 0;
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 2rem;
  background: white;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #f0f9ff, white, #f8fafc);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

.hero-text p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gradient-box {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border-radius: 1.5rem;
  opacity: 0.1;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.services > .container {
  text-align: center;
}

.services h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .services h2 {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #475569;
}

/* Why Us Section */
.why-us {
  padding: 5rem 0;
  background: #f0f9ff;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .why-us-content {
    grid-template-columns: 1fr 1fr;
  }
}

.why-us-text h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-us-text h2 {
    font-size: 3rem;
  }
}

.why-us-text p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
}

.benefits {
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #475569;
}

.benefits i {
  color: #2563eb;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-us-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24rem;
}

.stat-box {
  background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 15rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact CTA Section */
.contact-cta {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-cta h2 {
    font-size: 3rem;
  }
}

.contact-cta p {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.info-block {
  color: #475569;
}

.info-block .info-label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.info-block a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.info-block a:hover {
  color: #1d4ed8;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(to bottom right, #f0f9ff, white, #f8fafc);
  padding: 3rem 0;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.25rem;
  color: #475569;
  max-width: 600px;
}

.contact-section {
  padding: 4rem 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: white;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: all 0.3s;
  text-align: center;
}

.contact-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #475569;
  margin-bottom: 0.5rem;
}

.contact-card a,
.phone-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-card a:hover,
.phone-links a:hover {
  color: #1d4ed8;
}

.phone-links {
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-form-container {
    padding: 3rem;
  }
}

.contact-form-container h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.form-group label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  ring: 2px;
  ring-color: #2563eb;
  border-color: transparent;
}

.form-group textarea {
  resize: none;
}

#contactForm > button {
  width: 100%;
  margin-top: 1rem;
}

.full-width {
  width: 100%;
}

#formMessage {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  display: none;
}

#formMessage.success {
  background: #dcfce7;
  color: #166534;
  display: block;
}

#formMessage.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-section p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  text-align: center;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none !important;
  }

  .header-phone {
    display: none !important;
  }

  .contact-info {
    flex-direction: column;
    align-items: stretch;
  }

  .info-block {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex !important;
  }

  .header-phone {
    display: flex !important;
  }
}

/* Service Pages */
.service-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.service-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.service-hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-details {
  padding: 3rem 0;
  background: white;
}

.service-description h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.service-description h3 {
  font-size: 1.5rem;
  color: #2563eb;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #475569;
  font-size: 1rem;
}

.benefits-list i {
  color: #2563eb;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefits-list strong {
  color: #1e293b;
}

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

.feature-item {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.feature-item:hover {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

.service-cta {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 0.5rem;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.service-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.service-cta .btn-primary {
  background: white;
  color: #2563eb;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.service-cta .btn-primary:hover {
  background: #f8fafc;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .service-hero-content h1 {
    font-size: 2rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .service-details {
    padding: 2rem 0;
  }

  .service-description h2 {
    font-size: 1.5rem;
  }

  .service-description h3 {
    font-size: 1.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-cta {
    padding: 2rem 1rem;
  }

  .service-cta h2 {
    font-size: 1.5rem;
  }
}

/* Map Section */
.map-section {
  margin: 4rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-section h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.map-section iframe {
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Location Address Styling */
.location-address {
  font-style: normal;
  line-height: 1.8;
  color: #475569;
}

.contact-card .location-address {
  margin: 1rem 0 0 0;
  padding: 0;
}

/* Header Image Section */
.header-image-section {
  width: 100%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #0f172a;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #0f172a;
}

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

.apply-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.apply-form label {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form input[type="file"] {
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.apply-form input[type="text"]:focus,
.apply-form input[type="email"]:focus,
.apply-form input[type="tel"]:focus,
.apply-form input[type="file"]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.apply-form input[readonly] {
  background-color: #f8fafc;
  cursor: not-allowed;
}

.apply-form small {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.apply-form button[type="submit"] {
  padding: 0.75rem 2rem;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.apply-form button[type="submit"]:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
