/* =========================== */
/*   PAGE DETAIL STYLES        */
/* =========================== */
.breadcrumb {
  background: linear-gradient(135deg, #f7f5f1 0%, #eae5dc 100%);
  padding: 1.1rem 2rem;
  border-radius: 14px;
  font-size: 1.05rem;
  color: #8b3a3a;
  margin: 2.2rem auto 1.2rem auto;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(139, 58, 58, 0.07);
  letter-spacing: 0.2px;
}

.breadcrumb a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #8b3a3a;
}

.breadcrumb span {
  color: #8b3a3a;
  font-weight: 700;
}

.detail-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(139, 58, 58, 0.08);
  padding: 3.5rem 2.2rem;
  margin: 0 auto 2.5rem auto;
  max-width: 900px;
}

.detail-title {
  font-size: 2.2rem;
  color: var(--primary-burgundy);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-align: left;
}

.detail-content {
  font-size: 1.08rem;
  color: #3d3d3d;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.detail-content img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.10);
  margin: 1.2rem 0;
}

.detail-content h2,
.detail-content h3,
.detail-content h4 {
  color: #8b3a3a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.detail-content ul,
.detail-content ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}

.detail-content blockquote {
  background: #f7f5f1;
  border-left: 4px solid #d4af37;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  color: #8b3a3a;
  font-style: italic;
  border-radius: 8px;
}

.detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fafbfc;
  border-radius: 8px;
  overflow: hidden;
}

.detail-content th,
.detail-content td {
  padding: 0.8rem 1rem;
  border: 1px solid #ecf0f1;
  text-align: left;
}

.detail-content th {
  background: #f5f1e8;
  color: #8b3a3a;
  font-weight: 700;
}

.detail-content a {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.3s;
}

.detail-content a:hover {
  color: #8b3a3a;
}

@media (max-width: 900px) {
  .detail-section {
    padding: 2.2rem 1rem;
    max-width: 98vw;
  }

  .breadcrumb {
    padding: 0.7rem 1rem;
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .detail-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .detail-section {
    padding: 1.2rem 0.5rem;
  }

  .detail-content {
    font-size: 0.98rem;
  }
}

/* =========================== */
/*   PARTNERS INFINITE SCROLL  */
/* =========================== */
.partners-section {
  background: linear-gradient(135deg, #f7f5f1 0%, #eae5dc 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.partners-grid {
  display: flex;
  align-items: center;
  animation: partnersScroll 20s linear infinite;
  gap: 2.5rem;
  width: max-content;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(139, 58, 58, 0.08);
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100px;
  min-width: 160px;
  flex-shrink: 0;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.partner-logo img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(70%) contrast(1.1);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1.05);
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partner-logo {
    height: 80px;
    min-width: 130px;
    padding: 1rem;
  }

  .partner-logo img {
    max-width: 80px;
    max-height: 35px;
  }

  .partners-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .partners-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 2.5rem 0;
  }

  .partner-logo {
    height: 60px;
    min-width: 100px;
    padding: 0.75rem;
  }

  .partner-logo img {
    max-width: 60px;
    max-height: 25px;
  }

  .partners-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .partners-grid {
    gap: 1rem;
    animation-duration: 15s;
  }
}

/* =========================== */
/*   CONTACT FORM SELECTS      */
/* =========================== */
.image-upload-container {
  margin-top: 10px;
}

.upload-area {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
}

.upload-area:hover {
  border-color: #007bff;
  background: #f0f8ff;
}

.upload-area.dragover {
  border-color: #007bff;
  background: #e3f2fd;
}

.upload-prompt svg {
  color: #666;
  margin-bottom: 15px;
}

.upload-prompt p {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.upload-info {
  font-size: 13px;
  color: #999;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.image-preview-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.image-preview-item:hover {
  transform: scale(1.05);
}

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

.image-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s ease;
}

.image-remove-btn:hover {
  background: rgba(255, 0, 0, 1);
}

.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fafbfc url('data:image/svg+xml;utf8,<svg fill="%23d4af37" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 1.1rem center/1.2rem 1.2rem;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  padding: 13px 2.5rem 13px 16px;
  font-size: 1rem;
  color: #2c3e50;
  transition: border-color 0.3s;
  cursor: pointer;
}

.contact-form select.form-control:focus {
  border-color: #d4af37;
  background-color: #fff;
  outline: none;
}

.contact-form select.form-control option {
  color: #2c3e50;
  background: #fff;
}

.contact-form select.form-control:invalid {
  color: #b0b0b0;
}

/* Select kutusu okunu gizle (IE hariç) */
.contact-form select.form-control::-ms-expand {
  display: none;
}

/* Select kutusu hover ve aktif */
.contact-form select.form-control:hover {
  border-color: #b8860b;
}

/* Select kutusu label ile hizalama */
.contact-form .form-group label[for="service"],
.contact-form .form-group label[for="budget"] {
  font-weight: 600;
  color: #8b3a3a;
  letter-spacing: 0.5px;
}

/* =========================== */
/*   CONTACT PAGE STYLES       */
/* =========================== */
.contact-hero {
  background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.contact-hero-content small {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-hero-content h1 {
  font-size: 2.3rem;
  color: var(--primary-burgundy);
  font-weight: 800;
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.contact-hero-content p {
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.contact-hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-image img {
  width: 320px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(139, 58, 58, 0.10);
  border: 3px solid var(--accent-gold);
  background: #fff;
}

.contact-badge {
  margin-top: -30px;
  background: #d4af37;
  color: #fff;
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.10);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  z-index: 3;
}

.contact-badge i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.contact-info {
  background: #fff;
  padding: 3rem 0 2rem 0;
}

.contact-item {
  background: #f5f1e8;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 2rem 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.7rem;
}

.contact-item h3 {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent-gold);
}

.contact-form-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0 2rem 0;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  margin-bottom: 2rem;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  color: #8b3a3a;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.contact-form-wrapper p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 0.97rem;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s;
  font-family: inherit;
  background: #fafbfc;
}

.contact-form .form-control:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: #fff;
}

.contact-form .btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.13);
  transition: all 0.3s;
  cursor: pointer;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  color: #5a2a2a;
  transform: translateY(-2px);
}

.work-process {
  background: #fff;
  padding: 4rem 0 2rem 0;
}

.work-process .section-title {
  color: var(--primary-burgundy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.work-process .section-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.process-step {
  background: #f5f1e8;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 2rem 1.2rem;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.10);
}

.step-content h4 {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
}

.contact-faq {
  background: #f5f1e8;
  padding: 4rem 0 2rem 0;
}

.contact-faq .section-title {
  color: var(--primary-burgundy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: #8b3a3a;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #3d3d3d;
  font-size: 0.97rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-hero {
    padding: 3rem 0 1.5rem 0;
  }

  .contact-hero-image {
    position: static;
    transform: none;
    margin: 2rem auto 0 auto;
  }

  .contact-hero-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-hero-content h1 {
    font-size: 1.4rem;
  }

  .contact-hero-image img {
    width: 98vw;
    max-width: 98vw;
  }

  .contact-form-wrapper {
    padding: 20px 5px;
  }

  .work-process,
  .contact-faq,
  .contact-form-section,
  .contact-info {
    padding: 2rem 0 1rem 0;
  }
}

/* =========================== */
/*   ABOUT AGENCY HERO BÖLÜMÜ  */
/* =========================== */
.about-hero {
  background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  margin-bottom: 2.5rem;
}

.about-hero-content small {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  color: var(--primary-burgundy);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-hero-image img {
  width: 600px;
  max-width: 90vw;
  aspect-ratio: 2/3;
  object-fit: cover;
  background-position: bottom;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(139, 58, 58, 0.10);
  border: 3px solid var(--accent-gold);
  background: #fff;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.about-stats .stat-item {
  text-align: center;
}

.about-stats h3 {
  font-size: 2.1rem;
  color: var(--accent-gold);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.about-stats p {
  color: var(--primary-burgundy);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 3rem 0 2rem 0;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-hero-image img {
    width: 220px;
  }

  .about-stats {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 2rem 0 1rem 0;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-content h1 {
    font-size: 1.3rem;
  }

  .about-hero-content p {
    font-size: 0.95rem;
  }

  .about-hero-image img {
    width: 120px;
  }

  .about-stats h3 {
    font-size: 1.2rem;
  }

  .about-stats p {
    font-size: 0.85rem;
  }

  .about-stats {
    gap: 0.5rem;
  }
}

/* =========================== */
/*   ABOUT MISSION & WHY       */
/* =========================== */
.about-mission {
  background: #fff;
  padding: 8rem 0 ;
}

.about-mission .row {
  gap: 2.5rem;
}

.mission-item {
  background: #f5f1e8;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  text-align: center;
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.mission-item h3 {
  color: var(--primary-burgundy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.mission-item p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.about-why {
  background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
  padding: 8rem 0;
}

.about-why .section-title {
  color: var(--primary-burgundy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-why .section-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.why-list {
  gap: 2rem;
}

.why-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 2rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.why-item:hover {
  box-shadow: 0 8px 32px rgba(139, 58, 58, 0.13);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.7rem;
}

.why-item h4 {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
}

@media (max-width: 900px) {

  .about-mission,
  .about-why {
    padding: 2rem 0 1rem 0;
  }

  .about-why .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {

  .mission-item,
  .why-item {
    padding: 1.2rem 0.5rem;
  }

  .about-why .section-title {
    font-size: 1.1rem;
  }

  .about-why .section-desc {
    font-size: 0.95rem;
  }
}

/* =========================== */
/*   ABOUT VALUES & TEAM       */
/* =========================== */
.about-values {
  background: #fff;
  padding: 8rem 0;
}

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

.value-item {
  background: #f5f1e8;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 2rem 1.2rem;
  text-align: center;
}

.value-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.7rem;
}

.value-item h4 {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
}

.about-team {
  background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
  padding: 4rem 0 2rem 0;
}

.about-team .section-title {
  color: var(--primary-burgundy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-team .section-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.team-info,
.team-skills {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 2rem 1.2rem;
  margin-bottom: 1.5rem;
}

.team-info h3,
.team-skills h3 {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.team-info p {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
}

.skill-items {
  margin-top: 1.2rem;
}

.skill-item {
  margin-bottom: 1.1rem;
}

.skill-name {
  color: var(--primary-burgundy);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  display: block;
}

.skill-bar {
  background: #f5f1e8;
  border-radius: 8px;
  height: 10px;
  width: 100%;
  overflow: hidden;
}

.skill-progress {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze));
  height: 100%;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .about-team {
    padding: 2rem 0 1rem 0;
  }

  .about-team .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {

  .team-info,
  .team-skills {
    padding: 1.2rem 0.5rem;
  }

  .about-team .section-title {
    font-size: 1.1rem;
  }

  .about-team .section-desc {
    font-size: 0.95rem;
  }
}

/* =========================== */
/*   ABOUT PROCESS             */
/* =========================== */
.about-process {
  background: #fff;
  padding: 4rem 0 2rem 0;
}

.about-process .section-title {
  color: var(--primary-burgundy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-process .section-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.process-step {
  background: #f5f1e8;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(139, 58, 58, 0.06);
  padding: 2rem 1.2rem;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.10);
}

.step-content h4 {
  color: var(--primary-burgundy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-process {
    padding: 2rem 0 1rem 0;
  }

  .about-process .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .process-step {
    padding: 1.2rem 0.5rem;
  }

  .about-process .section-title {
    font-size: 1.1rem;
  }

  .about-process .section-desc {
    font-size: 0.95rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
}

:root {
  --primary-dark: #5a2a2a;
  --primary-burgundy: #8b3a3a;
  --accent-gold: #d4af37;
  --accent-bronze: #b8860b;
  --light-bg: #f5f1e8;
  --text-dark: #3d3d3d;
}

.main-header {
  background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
  box-shadow: 0 4px 15px rgba(90, 42, 42, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #d4af37;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Logo Center */
.logo-center {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-center a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-center a:hover {
  transform: scale(1.05);
}

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

/* Navigation Menus */
.menu-left,
.menu-right {
  flex: 1;
}

.menu-left {
  text-align: right;
}

.menu-right {
  text-align: left;
}

.menu-left ul,
.menu-right ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  justify-content: center;
}

.menu-left ul {
  justify-content: flex-end;
}

.menu-right ul {
  justify-content: flex-start;
}

/* Menu Items */
.menu-left li,
.menu-right li {
  position: relative;
}

.menu-left a,
.menu-right a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #3d3d3d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  position: relative;
}

.menu-left a::after,
.menu-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b3a3a, #d4af37);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.menu-left a:hover,
.menu-right a:hover {
  color: #8b3a3a;
  background: rgba(139, 58, 58, 0.08);
}

.menu-left a:hover::after,
.menu-right a:hover::after {
  width: 80%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4rem;
  vertical-align: 0.125em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::before {
  transform: rotateZ(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  background: #fff;
  min-width: 200px;
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-left .submenu {
  right: 0;
}

.menu-right .submenu {
  left: 0;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  position: relative;
}

.submenu a {
  padding: 0.6rem 1.5rem;
  color: #555;
  font-weight: 400;
  border-radius: 0;
}

.submenu a:hover {
  background: rgba(139, 58, 58, 0.1);
  color: #8b3a3a;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 0.35rem;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #8b3a3a;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  transform-origin: center;
}

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

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

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

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
  .header-container {
    gap: 1.5rem;
    padding: 0.8rem 1rem;
  }

  .menu-left a,
  .menu-right a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .logo-center img {
    max-height: 150px;
  }
}

@media (max-width: 991px) {
  /* Hide desktop menus */
  .menu-left,
  .menu-right {
    display: none !important;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  /* Show mobile menu container */
  .mobile-menu {
    display: block !important;
  }
  
  /* Mobile menu styling */
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
  }
  
  .mobile-menu > ul > li {
    border-bottom: 1px solid #f2f2f2;
  }
  
  .mobile-menu > ul > li > a {
    color: #222;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    padding: 0.75rem 1.5rem;
    transition: color .2s, background-color .2s;
  }
  
  .mobile-menu > ul > li > a:hover {
    color: #d4af37;
    background-color: #fafafa;
  }
  
  /* Mobile dropdown styles */
  .mobile-menu .dropdown .submenu {
    display: none;
    padding: 0;
    background: #f8f8f8;
    margin: 0;
  }
  
  .mobile-menu .dropdown.active .submenu {
    display: block;
  }
  
  .mobile-menu .submenu li {
    border-bottom: 1px solid #e8e8e8;
  }
  
  .mobile-menu .submenu a {
    color: #555;
    font-size: 1rem;
    padding: 0.6rem 2rem;
    display: block;
    text-decoration: none;
    transition: color .2s, background-color .2s;
  }
  
  .mobile-menu .submenu a:hover {
    color: #d4af37;
    background-color: #f0f0f0;
  }
  
  /* Mobile dropdown arrow */
  .mobile-menu .dropdown-toggle::after {
    content: "▼";
    float: right;
    font-size: 0.8rem;
    transition: transform .2s;
    color: #8b3a3a;
  }
  
  .mobile-menu .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  /* Remove desktop dropdown arrows on mobile */
  .mobile-menu .dropdown-toggle::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    position: relative;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  
  .main-header {
    position: relative;
  }

  .menu-left,
  .menu-right {
    display: none !important;
  }

  .logo-center {
    margin-right: auto;
    margin-left: 0.5rem;
  }

  .logo-center img {
    max-height: 90px;
  }
  
  .mobile-menu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }
}


@media (max-width: 480px) {
  .logo-center img {
    max-height: 70px;
  }

  .mobile-menu-toggle {
    right: 15px;
    width: 28px;
    height: 28px;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .mobile-menu > ul > li > a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }

  .mobile-menu .submenu a {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}
  

/* ===========================
   SMOOTH SCROLLING
   =========================== */

html {
  scroll-behavior: smooth;
}

/* ===========================
   ACCESSIBILITY
   =========================== */

.menu-left a:focus,
.menu-right a:focus {
  outline: 2px solid #8b3a3a;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .main-header,
  .logo-center a,
  .menu-left a,
  .menu-right a,
  .mobile-menu-toggle span,
  .submenu {
    transition: none;
  }
}

/* ===========================
   FOOTER STYLES
   =========================== */

footer {
  background: linear-gradient(135deg, #5a2a2a 0%, #3d1f1f 100%);
  color: #f5f1e8;
  padding: 4rem 0 0 0;
}

.footer-social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-social-icons a img {
  filter: invert(1);
}

.fixed-whatsapp-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  transition: box-shadow .2s;
}

.fixed-whatsapp-icon:hover {
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
}

.fixed-whatsapp-icon img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.newsletter-bg {
  background: linear-gradient(135deg, #8b3a3a 0%, #6b2c2c 100%);
  padding: 3rem 0;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5f1e8;
  margin-bottom: 0.5rem;
}

.newsletter .description {
  font-size: 0.95rem;
  color: rgba(245, 241, 232, 0.9);
}

.newsletter form {
  display: flex;
  gap: 0.5rem;
  min-width: 300px;
}

.input-baykus {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  color: #3d3d3d;
  transition: all 0.3s ease;
}

.input-baykus:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.input-baykus::placeholder {
  color: rgba(61, 61, 61, 0.6);
}

.button-baykus {
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #3d3d3d;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Roboto Condensed', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.button-baykus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.button-baykus.two {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #5a2a2a;
  width: 100%;
}

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

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

footer .col-sm-4,
footer .col-sm-2 {
  padding: 1rem 0;
}

footer .description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(245, 241, 232, 0.85);
}

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

footer .contact>div:first-child {
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

footer .contact>div:last-child {
  font-size: 1rem;
  color: #f5f1e8;
}

footer .menu .title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer .menu .desct {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.85);
  margin-bottom: 1.5rem;
}

footer .menu .desct b {
  color: #d4af37;
  font-weight: 700;
}

.link-2,
.link-3 {
  display: block;
  color: rgba(245, 241, 232, 0.8);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.link-2:hover,
.link-3:hover {
  color: #d4af37;
  padding-left: 0.5rem;
}

.copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 2rem;
}

.copyright .text {
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.8);
}

.copyright .text b {
  color: #d4af37;
  font-weight: 700;
}

.copyright .policy {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter form {
    min-width: auto;
    flex-direction: column;
  }

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

  .copyright .policy {
    flex-direction: column;
    gap: 0.8rem;
    justify-content: flex-start;
  }

  footer .menu .title {
    font-size: 1rem;
  }

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

/* ===========================
   LANDING PAGE STYLES
   =========================== */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  padding-top: 5rem;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-image: url('/view/frontend/assets/img/pictures/high-quality-mythological-hero-banner.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    align-items: flex-end;
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    align-items: flex-end;
    padding: 1rem 0;
  }
}



.hero-cta {
  display: inline-block;
  font-size: 1.08rem;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.45em 1.2em;
  border-radius: 18px;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1), box-shadow 1s cubic-bezier(.4, 0, .2, 1);
}



.dust-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(212, 175, 55, 0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(139, 58, 58, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(212, 175, 55, 0.7) 0.5px, transparent 0.5px),
    radial-gradient(circle, rgba(90, 42, 42, 0.5) 1px, transparent 1px);
  background-size:
    200px 200px,
    300px 300px,
    150px 150px,
    250px 250px;
  background-position:
    0 0,
    50px 50px,
    30px 30px,
    80px 80px;
  z-index: 2;
  opacity: 1;
  mix-blend-mode: multiply;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(90, 42, 42, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
}

.hero-circle a {
  text-decoration: none;
}

.hero-circle:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(90, 42, 42, 0.4);
}

.hero-circle {
  width: 550px;
  height: 195px;
  background: linear-gradient(135deg, #8b3a3a 0%, #5a2a2a 100%);
  border-radius: 350px 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 2rem;
  box-shadow: 0 -4px 20px rgba(90, 42, 42, 0.4);
  border: 2px solid #d4af37;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.hero-circle-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  display: inline-block;
}

.hero-title .letter {
  display: inline-block;
  opacity: 0;
  margin: 0 1px;
}

.hero-subtitle {
  font-size: 1rem;
  color: #f5f1e8;
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-block;
}

.hero-subtitle .letter {
  display: inline-block;
  opacity: 0;
  margin: 0 1px;
}

@media (max-width: 768px) {
  .hero-circle {
    width: 280px;
    height: 140px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-section::before {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-circle {
    width: 380px;
    height: 120px;
  }

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

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-content {
    margin-bottom: 0;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.mb-5 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 1rem;
}

.col-sm-4 {
  grid-column: span 1;
}

.col-sm-2 {
  grid-column: span 1;
}

.col-6 {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .col-sm-4 {
    grid-column: span 1;
  }

  .col-sm-2 {
    grid-column: span 1;
  }
}


/* Form CSS */


.talent-application-container {
  min-height: calc(100vh - 200px);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 0;
}

.talent-header {
  text-align: center;
  margin-bottom: 50px;
}

.talent-header h1 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 700;
}

.talent-header p {
  font-size: 1.1rem;
  color: #666;
}

.form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-section {
  margin-bottom: 40px;
}

.form-section:last-of-type {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.3rem;
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8e8e8;
}

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

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 10px;
}

.required {
  color: #e74c3c;
  font-weight: 700;
}

.optional {
  color: #95a5a6;
  font-size: 0.85rem;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background-color: #f8fbfd;
}

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

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

/* Phone Input */
.phone-input-wrapper {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
}

.country-code-select {
  padding: 14px 12px;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  font-size: 0.95rem;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.country-code-select:hover {
  border-color: #3498db;
}

.country-code-select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.phone-input {
  margin-bottom: 0;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #3498db;
}

.checkbox-label {
  font-size: 0.95rem;
  color: #2c3e50;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.checkbox-wrapper:hover .checkbox-label {
  background-color: #ecf0f1;
}

.checkbox-wrapper.large {
  margin-bottom: 15px;
}

.checkbox-wrapper.large .checkbox-label {
  padding: 10px 0;
  font-size: 0.9rem;
}

.checkbox-wrapper.large .checkbox-label a {
  color: #3498db;
  text-decoration: underline;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-input {
  display: none;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 2px dashed #3498db;
  border-radius: 12px;
  background-color: #f8fbfd;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-upload-label:hover {
  background-color: #ecf5fb;
  border-color: #2980b9;
}

.file-upload-label svg {
  color: #3498db;
  margin-bottom: 10px;
  opacity: 0.8;
}

.file-upload-label span {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 5px;
}

.file-upload-label small {
  color: #95a5a6;
  font-size: 0.85rem;
}

/* Form Actions */
.form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit,
.btn-reset {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-reset {
  background-color: #ecf0f1;
  color: #2c3e50;
}

.btn-reset:hover {
  background-color: #bdc3c7;
}

.form-info {
  text-align: center;
  padding: 20px;
  background-color: #d5f4e6;
  border-radius: 12px;
  color: #27ae60;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-wrapper {
    padding: 25px;
  }

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

  .phone-input-wrapper {
    grid-template-columns: 90px 1fr;
  }

  .checkbox-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .talent-header h1 {
    font-size: 1.8rem;
  }

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

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

  .form-wrapper {
    padding: 20px;
  }

  .talent-header h1 {
    font-size: 1.4rem;
  }

  .form-section {
    margin-bottom: 30px;
  }
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
  background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  padding-right: 2rem;
}

.about-title {
  font-size: 2.5rem;
  color: var(--primary-burgundy);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze));
  margin-bottom: 2rem;
  border-radius: 2px;
}

.about-description {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--accent-gold);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(90, 42, 42, 0.2);
  border: 3px solid var(--accent-gold);
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-box:hover img {
  transform: scale(1.05);
}

.about-image-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 58, 58, 0.2) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.about-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(90, 42, 42, 0.10);
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1);
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  animation: aboutZoomIn 2.6s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes aboutZoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services-section {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8dfd3 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.services-title {
  font-size: 2.5rem;
  color: var(--primary-burgundy);
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-header .title-underline {
  margin: 1rem auto 2rem;
}

.services-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(90, 42, 42, 0.08);
  border-top: 4px solid var(--accent-gold);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(90, 42, 42, 0.15);
  border-top-color: var(--accent-bronze);
}

.service-card:hover::before {
  left: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.service-icon.modeling {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 58, 58, 0.2));
}

.service-icon.modeling::before {
  content: '👗';
}

.service-icon.acting {
  background: linear-gradient(135deg, rgba(139, 58, 58, 0.2), rgba(212, 175, 55, 0.2));
}

.service-icon.acting::before {
  content: '🎭';
}

.service-icon.hosting {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(90, 42, 42, 0.2));
}

.service-icon.hosting::before {
  content: '🎤';
}

.service-icon.influencer {
  background: linear-gradient(135deg, rgba(139, 58, 58, 0.2), rgba(212, 175, 55, 0.2));
}

.service-icon.influencer::before {
  content: '📱';
}

.service-icon.content {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 58, 58, 0.2));
}

.service-icon.content::before {
  content: '🎥';
}

.service-icon.management {
  background: linear-gradient(135deg, rgba(90, 42, 42, 0.2), rgba(212, 175, 55, 0.2));
}

.service-icon.management::before {
  content: '📊';
}

.service-name {
  font-size: 1.3rem;
  color: var(--primary-burgundy);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===========================
   RESPONSIVE - ABOUT & SERVICES
   =========================== */

@media (max-width: 768px) {

  .about-section,
  .services-section {
    padding: 4rem 0;
  }

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

  .about-text {
    padding-right: 0;
  }

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

  .about-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .about-image-box {
    max-width: 300px;
  }

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

  .service-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {

  .about-section,
  .services-section {
    padding: 2.5rem 0;
  }

  .about-title,
  .services-title {
    font-size: 1.6rem;
  }

  .about-description,
  .services-description {
    font-size: 0.9rem;
  }

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

  .about-image-box {
    max-width: 250px;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .service-name {
    font-size: 1.1rem;
  }
}