@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&display=swap");

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

body {
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0533ff;
  padding: 1rem 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

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

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.cta-button {
  background: white;
  border: 2px solid white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  color: #0533ff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: transparent;
  color: white !important;
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: #0533ff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  background: white;
  color: #0533ff;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  height: 500px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: fadeIn 1s ease-out 0.5s both;
}

/* About Section */
.about {
  background: #2d3748;
  padding: 5rem 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.title-highlight {
  color: #48bb78;
}

.about-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.service-card {
  background: transparent;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.branding-title {
  color: #ecc94b;
}

.webdev-title {
  color: #48bb78;
}

.corporate-title {
  color: #ecc94b;
}

.ecommerce-title {
  color: #f56500;
}

.service-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
}

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

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.services-highlight {
  color: #1a202c;
}

.services-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Process Section (Left Side) */
.process-section {
  background: #2d3748;
  padding: 3rem;
  border-radius: 12px;
  position: relative;
}

.process-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #48bb78;
  margin-bottom: 2rem;
}

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

.process-item {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-icon {
  width: 20px;
  height: 20px;
  background: #48bb78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

.process-image {
  margin: 2rem 0;
  text-align: center;
}

.content-image {
  max-width: 200px;
  max-height: 150px;
  object-fit: contain;
}

.process-cta {
  display: inline-block;
  background: #48bb78;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.process-cta:hover {
  background: #38a169;
  transform: translateY(-2px);
}

/* Workflow Section (Right Side) */
.workflow-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workflow-step {
  background: #48bb78;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.workflow-step:hover {
  transform: translateX(5px);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
}

.step-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3rem;
  width: 2rem;
  height: 2px;
  background: #1a202c;
  transform: translateY(-50%);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #1a202c;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Projects Section */
.projects {
  background: #f7fafc;
  padding: 5rem 0;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.projects-header {
  text-align: center;
  margin-bottom: 4rem;
}

.projects-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.projects-highlight {
  color: #1a202c;
}

.projects-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.project-card {
  border-radius: 16px;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blankie-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.linkcrafter-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nlt-card {
  background: linear-gradient(135deg, #b8860b 0%, #8b7355 100%);
}

.jona-card {
  background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
}

.project-content {
  flex-grow: 1;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.project-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: white;
}

.project-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white;
}

.project-image {
  text-align: center;
  margin: 1.5rem 0;
}

.project-img {
  max-width: 150px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 8px;
}

.project-footer {
  text-align: center;
}

.project-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.7rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.project-btn:hover {
  background: white;
  color: #1a202c;
  transform: translateY(-2px);
}

/* Career Section */
.career {
  background: #f7fafc;
  padding: 5rem 0;
}

.career-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.career-card {
  background: #0533ff;
  border-radius: 20px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.career-content {
  z-index: 2;
}

.career-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.career-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.career-btn {
  display: inline-block;
  background: white;
  color: #0533ff;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.career-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.career-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.career-image {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

/* Contact Section */
.contact {
  background: #f7fafc;
  padding: 5rem 0;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group.full-width {
  margin-bottom: 2rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Chakra Petch", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0533ff;
  box-shadow: 0 0 0 3px rgba(5, 51, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0aec0;
}

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

.contact-btn {
  background: #0533ff;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background: #0422cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 51, 255, 0.3);
}

.contact-btn:active {
  transform: translateY(0);
}

/* Thank You Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}

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

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.modal-close {
  color: #a0aec0;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #4a5568;
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.modal-message {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

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

/* Footer */
.footer {
  background: #2d3748;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

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

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-privacy {
  color: #7c94ff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-privacy:hover {
  color: #7c94ff;
  text-decoration: underline;
}

.footer-title {
  color: #7c94ff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

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

.footer-email {
  color: #7c94ff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-email:hover {
  color: #7c94ff;
  text-decoration: underline;
}

.footer-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: normal;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0533ff;
  color: white;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 20px rgba(5, 51, 255, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0422cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(5, 51, 255, 0.4);
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0533ff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 6rem 2rem 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-visual {
    height: 300px;
    order: -1;
  }

  .hero-image {
    max-height: 250px;
  }

  /* About Section Mobile */
  .about {
    padding: 3rem 0;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-header {
    margin-bottom: 3rem;
  }

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

  .service-card {
    padding: 1.5rem;
    text-align: center;
  }

  .service-icon {
    margin: 0 auto 1.5rem;
  }

  /* Services Section Mobile */
  .services {
    padding: 3rem 0;
  }

  .services-title {
    font-size: 2rem;
  }

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

  .process-section {
    padding: 2rem;
    order: 2;
  }

  .workflow-section {
    order: 1;
  }

  .step-number::before {
    display: none;
  }

  /* Projects Section Mobile */
  .projects {
    padding: 3rem 0;
  }

  .projects-title {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .project-card {
    padding: 1.5rem;
    min-height: 350px;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-img {
    max-width: 120px;
    max-height: 100px;
  }

  /* Career Section Mobile */
  .career {
    padding: 3rem 0;
  }

  .career-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .career-title {
    font-size: 2.2rem;
  }

  .career-visual {
    order: -1;
  }

  .career-image {
    max-height: 200px;
  }

  /* Contact Section Mobile */
  .contact {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

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

  .modal-content {
    margin: 20% auto;
    width: 95%;
  }

  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 5rem 1rem 2rem;
  }

  .about-container {
    padding: 0 1rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1rem;
  }

  .services-container {
    padding: 0 1rem;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .process-section {
    padding: 1.5rem;
  }

  .workflow-step {
    padding: 1.5rem;
  }

  .projects-container {
    padding: 0 1rem;
  }

  .projects-title {
    font-size: 1.8rem;
  }

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

  .project-card {
    padding: 1.2rem;
    min-height: 320px;
  }

  .project-title {
    font-size: 1.3rem;
  }

  .project-tagline {
    font-size: 1rem;
  }

  .project-description {
    font-size: 0.9rem;
  }

  /* Career Section Small Mobile */
  .career-container {
    padding: 0 1rem;
  }

  .career-card {
    padding: 2rem 1.5rem;
  }

  .career-title {
    font-size: 2rem;
  }

  .career-description {
    font-size: 1rem;
  }

  /* Contact Section Small Mobile */
  .contact-container {
    padding: 0 1rem;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-message {
    font-size: 1rem;
  }

  /* Footer Small Mobile */
  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}
