.policy,
.success {
  padding-block: 120px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}



.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.header {
  background: #000;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #4338ca;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s;
}

.mobile-menu-btn:hover {
  transform: scale(1.05);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  background: #000;
  padding: 20px 0;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-list li {
  margin: 15px 0;
}

.mobile-nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: #f8f9fa;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.hero-features {
  list-style: none;
  margin: 30px 0;
}

.hero-features li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.hero-features li::before {
  content: "•";
  color: #4338ca;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-button {
  display: inline-block;
  background: #4338ca;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s;
  margin-top: 20px;
}

.cta-button:hover {
  background: #3730a3;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* About Section */
.about {
  padding: 80px 0;
  color: #fff;
}

.about-content {
  background: url("../img/about-bg.png") center / cover no-repeat;
  padding: 30px;
  border-radius: 40px;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about .cta-button {
  background: #fff;
  color: #4338ca;
}

.about .cta-button:hover {
  background: #f1f5f9;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px;
  border-radius: 10px;
  color: #fff;
}

.service-card.blue-bg {
  background: linear-gradient(135deg, #4338ca 0%, #312e81 100%);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
  padding: 80px 0;
  background: #fff;
}

.roadmap-left {
  max-width: 500px;
}

.roadmap-img {
  width: 100%;
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .roadmap-content {
    flex-direction: row;
  }
}

.roadmap h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.roadmap > .container > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  line-height: 1.8;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.roadmap-card {
  text-align: center;
  padding: 30px 20px;
}

.roadmap-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.roadmap-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.why-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #4338ca;
  color: #fff;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-section > .container > p {
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 1.8;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: #312e81;
  padding: 40px;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form input {
  background: #fff;
  color: #333;
}

.contact-form input::placeholder {
  color: #999;
}

.phone-input {
  display: flex;
  gap: 0;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 15px;
  border-radius: 5px 0 0 5px;
  border-right: 1px solid #ddd;
}

.country-code img {
  width: 20px;
  height: auto;
}

.phone-input input {
  border-radius: 0 5px 5px 0;
  flex: 1;
}

.contact-form button {
  background: #4338ca;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #3730a3;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.office {
  margin-bottom: 30px;
}

.office h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.office h3::before {
  content: "📍";
  position: absolute;
  left: 0;
}

.office p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.map img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* Footer */
.footer {
  background: #000;
  padding: 40px 0;
  color: #fff;
}

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

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4338ca;
}

.footer-copyright p {
  font-size: 12px;
  color: #999;
}

/* Cookie Popup */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cookie-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-popup {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
  margin-bottom: 20px;
}

.cookie-icon img {
  width: 60px;
  height: 60px;
}

.cookie-popup h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #4338ca;
}

.cookie-popup p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-accept {
  background: #4338ca;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-accept:hover {
  background: #3730a3;
}

.cookie-reject {
  background: transparent;
  color: #4338ca;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-reject:hover {
  color: #3730a3;
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-content,
  .why-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .phone-input {
    flex-direction: column;
    gap: 10px;
  }

  .country-code {
    border-radius: 5px;
    border-right: none;
    justify-content: center;
  }

  .phone-input input {
    border-radius: 5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .services,
  .roadmap,
  .why-section,
  .contact-section,
  .about {
    padding: 60px 0;
  }

  .contact-form {
    padding: 25px;
  }

  .cookie-popup {
    padding: 25px;
    margin: 15px;
  }

  .cookie-popup h3 {
    font-size: 20px;
  }
}

/* About Page Styles */
.about-hero {
  padding: 120px 0 80px;
  background: #f8f9fa;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-hero-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.core-principles {
  padding: 80px 0;
  background: #fff;
}

.core-principles h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
  text-align: center;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.principle-card {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.principle-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.principle-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.principle-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.customer-partnership {
  padding: 80px 0;
  background: #4338ca;
  color: #fff;
}

.customer-partnership h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
}

.partnership-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partnership-item {
 
  gap: 30px;
  align-items: flex-start;
}

.partnership-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.partnership-icon img {
  width: 30px;
  height: 30px;
}

.partnership-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.partnership-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-member {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.team-member h4 {
  font-size: 16px;
  color: #4338ca;
  font-weight: 500;
  margin-bottom: 20px;
}

.team-member p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

/* Career Page Styles */
.career-hero {
  padding: 120px 0 80px;
  background: #f8f9fa;
}

.career-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.career-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.career-hero-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.career-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.why-join {
  padding: 80px 0;
  background: #fff;
}

.why-join h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
  text-align: center;
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.why-join-item {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.why-join-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.why-join-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.professional-growth {
  padding: 40px;
  background: #4338ca;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.professional-growth h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.professional-growth p {
  font-size: 16px;
  line-height: 1.6;
}

.team-testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-testimonials h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 30px;
}

.testimonial-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.testimonial-content h4 {
  font-size: 14px;
  color: #4338ca;
  font-weight: 500;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.how-we-work {
  padding: 80px 0;
  background: #4338ca;
  color: #fff;
}

.how-we-work h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.work-process {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.process-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Contacts Page Styles */
.contact-hero {
  padding: 120px 0 80px;
  background: #4338ca;
  color: #fff;
  min-height: 90vh;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.contact-hero > .container > p {
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-form-section {
  background: #312e81;
  padding: 40px;
  border-radius: 10px;
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-contact-form input,
.main-contact-form button {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.main-contact-form input {
  background: #fff;
  color: #333;
}

.main-contact-form input::placeholder {
  color: #999;
}

.main-contact-form button {
  background: #4338ca;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.main-contact-form button:hover {
  background: #3730a3;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.office-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.office-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.office-card h3::before {
  content: "📍";
  position: absolute;
  left: 0;
}

.office-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-email {
  font-weight: 500;
  color: #fff !important;
}

.contact-phone {
  font-weight: 500;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .about-hero-content,
  .career-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero h1,
  .career-hero h1 {
    font-size: 36px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .principles-grid,
  .why-join-grid {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partnership-item {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .contact-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .about-hero h1,
  .career-hero h1,
  .contact-hero h1 {
    font-size: 28px;
  }

  .core-principles,
  .why-join,
  .team-testimonials,
  .how-we-work,
  .customer-partnership,
  .team-section,
  .contact-hero {
    padding: 60px 0;
  }

  .contact-form-section,
  .professional-growth {
    padding: 25px;
  }

  .office-card {
    padding: 20px;
  }
}

/* Form Input Focus States */
.contact-form input:focus,
.main-contact-form input:focus {
  outline: none;
  border: 2px solid #4338ca;
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}

/* Button Hover Effects */
.service-card,
.roadmap-card,
.principle-card,
.why-join-item,
.team-member,
.testimonial-card,
.office-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.team-member:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.roadmap-card:hover,
.principle-card:hover,
.why-join-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Loading States */
.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Mobile Menu Animation */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
  max-height: 300px;
  transition: max-height 0.3s ease-in;
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Error States */
input.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 5px rgba(239, 68, 68, 0.3) !important;
}

input.error::placeholder {
  color: #ef4444;
}

/* Success States */
input.success {
  border-color: #10b981 !important;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.3) !important;
}

/* Improved Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

p {
  line-height: 1.8;
  color: inherit;
}

/* Link States */
a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
}

/* Image Loading */
img {
  transition: opacity 0.3s ease;
}

img[src=""] {
  opacity: 0;
}

/* Print Styles */
@media print {
  .header,
  .cookie-overlay,
  .mobile-menu-btn,
  .cta-button {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}
