/* Navbar*/
.navbar {
  padding: 10px !important;
  background-color: #f4ecdd !important;
}
.nav-link {
  color: #6235ac !important;
}
.nav-logo {
  width: 180px;
}
.badge-cart {
  background-color: #fff;
  color: #c49bea !important;
}
.wishlist {
  color: #fff !important;
}
.wishlist:hover {
  color: #9044d7 !important;
}

/* End of Navbar*/
/* Hero Container */
.hero-img {
  background-image: url("../img/hero-desktop.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 45vw;
}
.search-hero {
  padding: 250px;
  margin-top: -75px;
}
.hero-content {
  color: #444444;
  font-size: 30px;
  -webkit-text-stroke: 5px rgba(255, 255, 255, 0.7);
  paint-order: stroke fill;
}
.hero-searchbar {
  width: 250px;
  height: 39px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: none;
  padding: 10px;
  font-size: 18px;
}
.hero-btn {
  background-color: #c49bea;
  border: none;
  height: 40px;
  width: 75px;
  margin-left: -5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  font-size: 18px;
}
/* End Hero Container */
/* Featured Products Container */
.featured-section {
  margin-top: -75px;
}
.featured-container {
  background-color: #fff;
  border-radius: 7px;
  text-align: center;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.card-group {
  gap: 20px !important;
  padding: 20px !important;
}

.card-front-1 {
  background-color: #79dac7 !important;
}
.card-front-2 {
  background-color: #f0c129 !important;
}
.card-front-3 {
  background-color: #df71a9 !important;
}
.card-front-1,
.card-front-2,
.card-front-3 {
  border: none !important;
  border-radius: 0px !important;
  padding: 80px;
  color: #fff !important;
}
.card-front-1 img,
.card-front-2 img,
.card-front-3 img {
  width: 80px;
}

/* End of Featured Products Container */
/* Home Products Container */
.home-products-title {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e3e3e3;
}
.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  margin-top: 30px;
}

.social-icons a {
  color: #6c757d;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.footer-color {
  background-color: #6235ac;
  color: #fff !important;
}
.social-icons a {
  color: #fff !important;
}

@media only screen and (max-width: 993px) {
  .search-hero {
    padding: auto !important;
  }

  .hero-img {
    background-image: url("../img/hero-mobile.jpg");
    height: 160vw;
  }

  .hero-content {
    font-size: 20px;
  }

  .featured-section {
    margin-top: auto;
  }
  .card-front-1,
  .card-front-2,
  .card-front-3 {
    padding: 30px;
  }
}

@media only screen and (max-width: 373px) {
  .search-hero {
    padding: 50px;
  }
  .hero-searchbar {
    width: 250px;
    height: 39px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: 18px;
  }

  .hero-btn {
    background-color: #c49bea;
    border: none;
    height: 40px;
    width: 75px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
  }

  .featured-section {
    margin-top: auto;
  }
}

/* Shop Page Styles */
.shop-section {
  padding: 100px 0 60px;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.shop-container {
  max-width: 1200px;
}

/* Shop Header */
.shop-header {
  margin-bottom: 40px;
  padding-top: 20px;
}

.shop-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.shop-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Filter Section */
.shop-filter-row {
  margin-bottom: 30px;
}

.shop-filter-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.shop-filter-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.shop-filter-select {
  padding: 8px 35px 8px 15px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #495057;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.shop-filter-select:hover {
  border-color: #007bff;
}

.shop-filter-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Products Grid */
.shop-products-grid {
  gap: 25px 0;
}

.shop-product-col {
  margin-bottom: 25px;
  padding: 0 12px;
}

/* Product Card */
.shop-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.shop-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 80%; /* 5:4 aspect ratio (4/5 = 0.8 = 80%) */
  overflow: hidden;
  background-color: #f8f9fa;
}
.shop-card-image-wrapper-souvenir {
  position: relative;
  width: 100%;
  padding-top: 66.33%; /* 5:4 aspect ratio (4/5 = 0.8 = 80%) */
  overflow: hidden;
  background-color: #f8f9fa;
}

.shop-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-image {
  transform: scale(1.05);
}

/* New Badge */
.shop-badge-new {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* Card Overlay */
.shop-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.shop-card:hover .shop-card-overlay {
  opacity: 1;
}

/* Overlay Buttons */
.shop-btn-wishlist,
.shop-btn-view {
  background-color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.shop-btn-wishlist {
  width: 50px;
  height: 50px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  color: #e74c3c;
}

.shop-btn-view {
  color: #007bff;
}

.shop-btn-wishlist:hover {
  background-color: #e74c3c;
  color: #ffffff;
  transform: scale(1.1);
}

.shop-btn-view:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: scale(1.05);
}

.shop-btn-wishlist i,
.shop-btn-view i {
  font-size: 1.1rem;
}

/* Card Body */
.shop-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 991px) {
  .shop-title {
    font-size: 2rem;
  }

  .shop-filter-container {
    justify-content: center;
  }
  .navbar {
    margin-top: 0px !important;
  }
}

@media (max-width: 767px) {
  .shop-section {
    padding: 80px 0 40px;
  }

  .shop-title {
    font-size: 1.75rem;
  }

  .shop-subtitle {
    font-size: 1rem;
  }

  .shop-filter-container {
    flex-direction: column;
    gap: 10px;
  }

  .shop-filter-select {
    width: 100%;
  }

  .shop-product-col {
    padding: 0 15px;
  }

  .shop-card-image-wrapper {
    padding-top: 80%; /* Keep 5:4 ratio on mobile */
  }

  .shop-badge-new {
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .shop-btn-wishlist {
    width: 45px;
    height: 45px;
  }

  .shop-btn-view {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .navbar {
    margin-top: 10px !important;
  }
}

@media (max-width: 575px) {
  .shop-header {
    margin-bottom: 30px;
  }

  .shop-card-body {
    padding: 15px;
  }

  .shop-card-title {
    font-size: 0.95rem;
  }
}

/* ========================================
   TOP BAR ANNOUNCEMENT
   ======================================== */
.topbar-announcement {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1051;
  overflow: hidden;
}

.topbar-text {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
}

.topbar-text strong {
  font-weight: 700;
  font-size: 1.05rem;
}

.topbar-icon {
  color: #ff6b9d;
  margin-right: 8px;
}

/* Adjust navbar to sit below top bar */
.navbar.fixed-top {
  top: 44px;
}

/* Adjust body padding to account for both top bar and navbar */
body {
  padding-top: 100px;
}

/* ========================================
     ABOUT SECTION
     ======================================== */
.inkblink-about-section {
  background-color: #f4ecdd;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.inkblink-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(118, 75, 162, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.inkblink-about-container {
  position: relative;
  z-index: 1;
}

/* Divider with Icon */
.inkblink-about-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.inkblink-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #667eea, transparent);
  display: inline-block;
}

.inkblink-divider-icon {
  color: #667eea;
  font-size: 1.2rem;
  animation: inkblink-star-rotate 3s linear infinite;
}

@keyframes inkblink-star-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* About Title */
.inkblink-about-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #6235ac;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  background-color: #6235ac;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* About Content */
.inkblink-about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.inkblink-about-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #495057;
  margin: 0;
  font-weight: 400;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.inkblink-about-text strong {
  color: #667eea;
  font-weight: 700;
}

/* ========================================
     PARTNERS SECTION
     ======================================== */
.inkblink-partners-section {
  background: #ffffff;
  padding: 70px 0;
  position: relative;
}

.inkblink-partners-container {
  max-width: 1200px;
}

/* Partners Title */
.inkblink-partners-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.inkblink-partners-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Partners Grid */
.inkblink-partners-grid {
  gap: 30px 0;
}

.inkblink-partner-col {
  margin-bottom: 30px;
}

/* Partner Link */
.inkblink-partner-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* Partner Card */
.inkblink-partner-card {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.inkblink-partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.inkblink-partner-card:hover::before {
  left: 100%;
}

.inkblink-partner-card:hover {
  transform: translateY(-10px);
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

/* Partner Logo */
.inkblink-partner-logo {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.inkblink-partner-card:hover .inkblink-partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Partner Name */
.inkblink-partner-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}

.inkblink-partner-card:hover .inkblink-partner-name {
  color: #667eea;
}

/* ========================================
     RESPONSIVE DESIGN
     ======================================== */
@media (max-width: 991px) {
  .inkblink-about-title {
    font-size: 2.2rem;
  }

  .inkblink-about-text {
    font-size: 1.1rem;
    padding: 25px 30px;
  }

  .inkblink-partners-title {
    font-size: 1.9rem;
  }

  .inkblink-partner-card {
    height: 160px;
    padding: 30px 20px;
  }

  .inkblink-partner-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .topbar-text {
    font-size: 0.85rem;
    padding: 0 15px;
  }

  .topbar-text strong {
    font-size: 0.95rem;
  }

  .inkblink-about-section {
    padding: 60px 0;
  }

  .inkblink-about-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .inkblink-about-text {
    font-size: 1rem;
    line-height: 1.7;
    padding: 20px 25px;
  }

  .inkblink-divider-line {
    width: 50px;
  }

  .inkblink-partners-section {
    padding: 50px 0;
  }

  .inkblink-partners-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .inkblink-partner-col {
    margin-bottom: 20px;
  }

  .inkblink-partner-card {
    height: 140px;
    padding: 25px 15px;
  }

  .inkblink-partner-logo {
    max-height: 80px;
  }

  .inkblink-partner-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .topbar-announcement {
    padding: 10px 0;
  }

  .topbar-text {
    font-size: 0.8rem;
  }

  .inkblink-about-title {
    font-size: 1.5rem;
  }

  .inkblink-about-text {
    font-size: 0.95rem;
    padding: 18px 20px;
  }

  .inkblink-partners-title {
    font-size: 1.4rem;
  }

  .inkblink-partner-card {
    height: 120px;
  }

  .inkblink-partner-logo {
    max-height: 70px;
  }

  .inkblink-partner-name {
    font-size: 0.85rem;
  }
}
/* ========================================
     RESPONSIVE DESIGN
     ======================================== */
@media (max-width: 991px) {
  .inkblink-about-title {
    font-size: 2.2rem;
  }

  .inkblink-about-text {
    font-size: 1.1rem;
    padding: 25px 30px;
  }

  .inkblink-partners-title {
    font-size: 1.9rem;
  }

  .inkblink-partner-card {
    height: 160px;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .topbar-text {
    font-size: 0.85rem;
    padding: 0 15px;
  }

  .topbar-text strong {
    font-size: 0.95rem;
  }

  .inkblink-about-section {
    padding: 60px 0;
  }

  .inkblink-about-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .inkblink-about-text {
    font-size: 1rem;
    line-height: 1.7;
    padding: 20px 25px;
  }

  .inkblink-divider-line {
    width: 50px;
  }

  .inkblink-partners-section {
    padding: 50px 0;
  }

  .inkblink-partners-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .inkblink-partner-col {
    margin-bottom: 20px;
  }

  .inkblink-partner-card {
    height: 140px;
    padding: 25px 15px;
  }

  .inkblink-partner-logo {
    max-height: 80px;
  }
}

@media (max-width: 575px) {
  .topbar-announcement {
    padding: 10px 0;
  }

  .topbar-text {
    font-size: 0.8rem;
  }

  .inkblink-about-title {
    font-size: 1.5rem;
  }

  .inkblink-about-text {
    font-size: 0.95rem;
    padding: 18px 20px;
  }

  .inkblink-partners-title {
    font-size: 1.4rem;
  }

  .inkblink-partner-card {
    height: 120px;
  }

  .inkblink-partner-logo {
    max-height: 70px;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-page-section {
  padding: 120px 0 80px;
  background: #fff;
  min-height: 100vh;
}

.about-page-container {
  max-width: 1100px;
}

/* Page Header */
.about-page-header {
  margin-bottom: 20px;
}

.about-page-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.about-title-icon {
  color: #667eea;
  font-size: 2.5rem;
}

/* Welcome Box */
.about-welcome-box {
  background: #6235ac;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  text-align: center;
}

.about-welcome-text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.about-welcome-text strong {
  font-weight: 700;
  text-decoration: underline;
}

/* Content Box */
.about-content-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-main-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #495057;
  margin: 0;
  text-align: center;
}

.about-main-text strong {
  color: #667eea;
  font-weight: 700;
}

/* Promise Section */
.about-promise-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0;
}

/* Promise Grid */
.about-promise-grid {
  margin-top: 20px;
}

/* Promise Cards */
.about-promise-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-promise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

/* Promise Icon */
.about-promise-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #6235ac 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.about-promise-card:hover .about-promise-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
}

.about-promise-icon {
  font-size: 2rem;
  color: #ffffff;
}

/* Promise Card Title */
.about-promise-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.5;
}

/* Closing Box */
.about-closing-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px 45px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid #667eea;
}

.about-closing-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #495057;
  margin: 0;
  line-height: 1.7;
}

.about-closing-text strong {
  color: #667eea;
  font-weight: 700;
}

/* Call to Action */
.about-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.about-cta-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 25px;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #6235ac 100%);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.about-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  color: #ffffff;
}

.about-cta-button i {
  font-size: 1.3rem;
}

/* ========================================
     RESPONSIVE DESIGN
     ======================================== */

@media (max-width: 991px) {
  .about-page-title {
    font-size: 2.5rem;
  }

  .about-title-icon {
    font-size: 2rem;
  }

  .about-welcome-text {
    font-size: 1.2rem;
  }

  .about-content-box {
    padding: 35px 40px;
  }

  .about-main-text {
    font-size: 1.1rem;
  }

  .about-promise-title {
    font-size: 1.75rem;
  }

  .about-closing-text {
    font-size: 1.2rem;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .about-page-section {
    padding: 100px 0 60px;
  }

  .about-page-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .about-title-icon {
    font-size: 1.75rem;
  }

  .about-welcome-box {
    padding: 25px 30px;
  }

  .about-welcome-text {
    font-size: 1.1rem;
  }

  .about-content-box {
    padding: 30px 25px;
  }

  .about-main-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-promise-title {
    font-size: 1.5rem;
  }

  .about-promise-card {
    padding: 30px 20px;
  }

  .about-promise-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .about-promise-icon {
    font-size: 1.75rem;
  }

  .about-promise-card-title {
    font-size: 1rem;
  }

  .about-closing-box {
    padding: 30px 25px;
  }

  .about-closing-text {
    font-size: 1.1rem;
  }

  .about-cta-title {
    font-size: 1.5rem;
  }

  .about-cta-subtitle {
    font-size: 1rem;
  }

  .about-cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .about-page-title {
    font-size: 1.75rem;
  }

  .about-welcome-box {
    padding: 20px 25px;
  }

  .about-welcome-text {
    font-size: 1rem;
  }

  .about-content-box {
    padding: 25px 20px;
  }

  .about-main-text {
    font-size: 0.95rem;
  }

  .about-promise-title {
    font-size: 1.3rem;
  }

  .about-closing-box {
    padding: 25px 20px;
  }

  .about-closing-text {
    font-size: 1rem;
  }

  .about-cta-title {
    font-size: 1.3rem;
  }
}
