/* ============================================
   SPONSORSHIP PAGE - PROFESSIONAL & STYLISH
   ============================================ */

/* ===== PAGE HEADER STYLING ===== */
/* Using default treck.css styling - matches immigration.html */

/* Breadcrumb uses default treck.css styling */

/* ===== SERVICES SECTION STYLING ===== */
.services-one {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.services-one .section-title {
  margin-bottom: 80px;
}

.services-one .section-title__tagline {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--treck-base);
  font-weight: 600;
}

.services-one .section-title__title {
  color: #333;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.services-one .row {
  gap: 25px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.services-one .col-xl-3 {
  flex: 1;
  min-width: 0;
}

.services-one__single {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: white;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-one__single:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--treck-base);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--treck-white);
  line-height: 1;
}

.services-one__single:hover .services-one__icon {
  transform: scale(1.1) rotate(8deg);
  background-color: var(--treck-base);
  box-shadow: 0 10px 30px rgba(240, 65, 70, 0.4);
}

.services-one__title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.services-one__text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}

/* ===== ABOUT/WHY CHOOSE US SECTION ===== */
.about-one {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  position: relative;
}

.about-one .row {
  align-items: center;
  gap: 60px;
}

.about-one__left {
  margin-bottom: 0;
}

.about-one__img-box {
  position: relative;
  max-width: 100%;
  width: 100%;
}

.about-one__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  max-width: 350px;
}

.about-one__img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-one__img-2 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  margin-top: -40px;
  margin-left: 40px;
  max-width: 280px;
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
}

.about-one__img-2 img {
  width: 100%;
  height: auto;
  display: block;
}

.about-one__right {
  padding: 20px;
}

.about-one__right .section-title__tagline {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--treck-base);
  font-weight: 600;
  margin-bottom: 15px;
}

.about-one__right .section-title__title {
  color: #333;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.about-one__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.about-one__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-one__points li {
  margin-bottom: 35px;
  display: flex;
  gap: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.03);
}

.about-one__points li:hover {
  transform: translateX(12px);
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.about-one__points .icon {
  font-size: 40px;
  color: var(--treck-base);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-one__points li:hover .icon {
  transform: scale(1.15) rotate(-5deg);
}

.about-one__points h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.about-one__points p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ===== PRODUCT DESCRIPTION SECTIONS ===== */
.product-description {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Alternating background colors for visual interest */
.product-description:nth-child(odd) {
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.product-description:nth-child(even) {
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}

/* ============================================
   SECTION INNER STYLING
   ============================================ */

.product-description__inner {
  animation: fadeInUp 0.8s ease-out;
  padding: 40px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.product-description__inner:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================
   TITLE STYLING WITH UNDERLINE
   ============================================ */

.product-description__title {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.product-description__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--treck-base) 0%, #ff9a56 100%);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.product-description__inner:hover .product-description__title::after {
  width: 120px;
}

/* ============================================
   PARAGRAPH TEXT STYLING
   ============================================ */

.product-description__text {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ============================================
   SUBTITLE STYLING
   ============================================ */

.product-description__title-two {
  font-size: 21px;
  font-weight: 700;
  color: #333;
  margin-top: 45px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.product-description__title-two::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 24px;
  background: linear-gradient(180deg, var(--treck-base) 0%, #ff9a56 100%);
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.product-description__inner:hover .product-description__title-two::before {
  height: 28px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* ============================================
   LIST STYLING WITH ICONS
   ============================================ */

.product-description__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-description__list li {
  padding: 16px 0;
  padding-left: 45px;
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.08);
  letter-spacing: 0.2px;
}

.product-description__list li:last-child {
  border-bottom: none;
}

.product-description__list li:hover {
  padding-left: 55px;
  color: var(--treck-base);
  background: rgba(255, 107, 53, 0.06);
  padding: 16px 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 6px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.product-description__list li .icon-check {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 20px;
  color: var(--treck-base);
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-description__list li:hover .icon-check {
  transform: scale(1.25) rotate(12deg);
  filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.3));
}

.product-description__list li strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* ============================================
   ICON STYLING IN HEADERS
   ============================================ */

.product-description__inner>div:first-child i {
  transition: all 0.3s ease;
}

.product-description__inner:hover>div:first-child i {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CTA SECTION ===== */
.excellence-one {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--treck-base) 0%, #ff8c5a 100%);
  position: relative;
  overflow: hidden;
}

.excellence-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.excellence-one__inner {
  position: relative;
  z-index: 1;
}

.excellence-one__title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.excellence-one__btn-box {
  display: flex;
  justify-content: center;
}

.excellence-one__btn {
  background: white;
  color: var(--treck-base);
  font-weight: 700;
  padding: 16px 50px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid white;
}

.excellence-one__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: #f5f1ed;
  border-color: #f5f1ed;
}

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

@media (max-width: 1024px) {
  .services-one .row {
    gap: 20px;
  }

  .services-one__single {
    padding: 22px;
  }

  .services-one__title {
    font-size: 22px;
  }

  .services-one__text {
    font-size: 14px;
  }

  .about-one .row {
    gap: 40px;
  }

  .product-description__inner {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .services-one {
    padding: 80px 0 100px;
  }

  .services-one .section-title {
    margin-bottom: 60px;
  }

  .services-one .section-title__title {
    font-size: 32px;
  }

  .services-one .row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .services-one .col-xl-3 {
    flex: 0 0 calc(50% - 10px);
  }

  .services-one__single {
    padding: 22px;
  }

  .services-one__icon {
    width: 80px;
    height: 80px;
  }

  .services-one__icon span {
    font-size: 48px;
  }

  .services-one__title {
    font-size: 19px;
  }

  .services-one__text {
    font-size: 14px;
  }

  .about-one {
    padding: 80px 0 100px;
  }

  .about-one .row {
    gap: 30px;
  }

  .about-one__right .section-title__title {
    font-size: 32px;
  }

  .about-one__points li {
    margin-bottom: 25px;
    padding: 15px;
  }

  .about-one__points .icon {
    font-size: 32px;
  }

  .about-one__points h3 {
    font-size: 18px;
  }

  .product-description {
    padding: 70px 0;
  }

  .product-description__inner {
    padding: 30px;
  }

  .product-description__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .product-description__title-two {
    font-size: 18px;
    margin-top: 35px;
    margin-bottom: 20px;
  }

  .product-description__list li {
    font-size: 14px;
    padding: 14px 0;
    padding-left: 40px;
  }

  .product-description__list li:hover {
    padding-left: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .excellence-one {
    padding: 100px 0;
  }

  .excellence-one__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .excellence-one__btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-one {
    padding: 60px 0 80px;
  }

  .services-one .section-title {
    margin-bottom: 40px;
  }

  .services-one .section-title__title {
    font-size: 24px;
  }

  .services-one .row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .services-one .col-xl-3 {
    flex: 0 0 100%;
  }

  .services-one__single {
    padding: 20px;
  }

  .services-one__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }

  .services-one__icon span {
    font-size: 40px;
  }

  .services-one__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .services-one__text {
    font-size: 14px;
  }

  .about-one {
    padding: 60px 0 80px;
  }

  .about-one__img-2 {
    margin-top: -20px;
    margin-left: 20px;
  }

  .about-one__right {
    padding: 0;
  }

  .about-one__right .section-title__title {
    font-size: 24px;
  }

  .about-one__text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .about-one__points li {
    margin-bottom: 20px;
    padding: 12px;
    gap: 15px;
  }

  .about-one__points .icon {
    font-size: 28px;
  }

  .about-one__points h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .about-one__points p {
    font-size: 14px;
  }

  .product-description {
    padding: 50px 0;
  }

  .product-description__inner {
    padding: 20px;
  }

  .product-description__title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .product-description__text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .product-description__title-two {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 15px;
  }

  .product-description__list li {
    font-size: 13px;
    padding: 12px 0;
    padding-left: 35px;
    margin-bottom: 8px;
  }

  .product-description__list li .icon-check {
    font-size: 16px;
    top: 12px;
  }

  .excellence-one {
    padding: 80px 0;
  }

  .excellence-one__title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .excellence-one__btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}