/* ===== CUSTOM VARIABLES ===== */
:root {
  --primary-color: #212121;
  --accent-color: #8e24aa;
  --accent-light: #c7b8ea;
  --teal-color: #0097a7;
  --bg-light: #f7f7f7;
  --text-dark: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --shadow-offset: -18px 18px 0 #e0e0e0;
  --border-radius-asymmetric: 0 22px 0 26px;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

/* ===== ASYMMETRIC CONTAINER ===== */
.container-asymmetric {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 8%;
  padding-right: 4%;
}

@media (max-width: 768px) {
  .container-asymmetric {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ===== SECTION SPACING ===== */
section {
  padding: 180px 0;
}

section.py-5 {
  padding: 180px 0 !important;
}

.mb-5 {
  margin-bottom: 58px !important;
}

.mt-5 {
  margin-top: 58px !important;
}

.mb-4 {
  margin-bottom: 48px !important;
}

.mt-4 {
  margin-top: 48px !important;
}

.mb-3 {
  margin-bottom: 29px !important;
}

.mt-3 {
  margin-top: 31px !important;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: 4.5rem;
  font-weight: 300;
  text-align: left;
  margin-bottom: 44px;
}

.section-description {
  font-size: 1.1rem;
  text-align: right;
  width: 60%;
  margin-left: auto;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ===== NAVIGATION ===== */
.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-img {
  max-height: 46px;
  width: auto;
}

.site-name {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin-left: 5%;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 500;
  border-radius: var(--border-radius-asymmetric);
  padding: 0.8rem 2rem;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-primary-custom:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}

.btn-outline-primary-custom:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section-asymmetric {
  height: 80vh;
  min-height: 600px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  padding-top: calc(80vh * 0.2);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 31px;
  text-align: left;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 48px;
  text-align: right;
  width: 60%;
  margin-left: auto;
}

.hero-cta-group {
  margin-left: 5%;
}

.hero-features {
  display: flex;
  gap: 31px;
  flex-wrap: wrap;
  margin-left: 10%;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-asymmetric);
  color: var(--white);
  backdrop-filter: blur(7px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--accent-light);
}

/* ===== PAGE HERO ===== */
.page-hero-section {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.page-hero-section.small {
  height: 40vh;
  min-height: 300px;
}

.page-hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--white);
  text-align: left;
}

.page-hero-description {
  font-size: 1.2rem;
  color: var(--white);
  text-align: right;
  width: 60%;
  margin-left: auto;
}

/* ===== CARDS WITH ASYMMETRIC DESIGN ===== */
.service-card,
.blog-card,
.team-card,
.testimonial-card,
.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  padding: 47px;
  transition: transform 0.3s;
  position: relative;
  height: 100%;
}

.service-card::before,
.blog-card::before,
.team-card::before,
.testimonial-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 61px;
  background: var(--accent-light);
  border-radius: 0 26px 0 0;
  pointer-events: none;
}

.service-card:hover,
.blog-card:hover,
.team-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translate(-5px, 5px);
}

/* ===== SERVICE CARDS ===== */
.service-icon {
  width: 77px;
  height: 83px;
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  margin-left: 5%;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-asymmetric);
  margin-bottom: 27px;
}

.service-title {
  font-size: 2rem;
  margin-bottom: 21px;
  text-align: left;
  margin-left: 5%;
}

.service-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 23px;
  right: 22px;
  background: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 18px 0 20px 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: left;
  margin-bottom: 33px;
  margin-left: 5%;
}

.pricing-plan {
  font-size: 2rem;
  margin-bottom: 17px;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent-color);
}

.pricing-price .currency {
  font-size: 1.8rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 31px;
  margin-left: 10%;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--teal-color);
  margin-right: 7px;
}

/* ===== TEAM CARDS ===== */
.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-asymmetric);
  margin-bottom: 32px;
}

.team-info {
  text-align: left;
  margin-left: 5%;
}

.team-name {
  font-size: 1.8rem;
  margin-bottom: 9px;
}

.team-role {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 13px;
}

.team-certification {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 17px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.team-social {
  display: flex;
  gap: 16px;
  margin-left: 5%;
}

.team-social a {
  width: 37px;
  height: 37px;
  background: var(--bg-light);
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-rating {
  color: #ffc107;
  margin-left: 5%;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 33px;
  text-align: right;
  width: 90%;
  margin-left: auto;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: 5%;
}

.testimonial-image {
  width: 61px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-position {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== STATS SECTION ===== */
.stat-card {
  text-align: center;
  padding: 46px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 17px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 11px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
}

.gallery-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* ===== BLOG CARDS ===== */
.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-asymmetric);
  margin-bottom: 30px;
}

.blog-meta {
  display: flex;
  gap: 19px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 5%;
}

.blog-category {
  color: var(--accent-color);
  font-weight: 600;
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
  margin-left: 5%;
}

.blog-excerpt {
  font-size: 1.1rem;
  margin-bottom: 28px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item {
  border: none;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  overflow: hidden;
}

.accordion-button {
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 29px 45px;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background: var(--accent-light);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 27px 45px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

/* ===== CTA SECTION ===== */
.cta-card {
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: var(--border-radius-asymmetric);
  padding: 59px;
  color: var(--white);
}

.cta-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 21px;
  text-align: left;
  margin-left: 5%;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-align: right;
  width: 80%;
  margin-left: auto;
}

.cta-contact {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer-asymmetric {
  background: var(--primary-color);
  color: var(--white);
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
}

.footer-brand .site-name {
  color: var(--white);
}

.footer-description {
  text-align: right;
  width: 90%;
  margin-left: auto;
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.4rem;
  margin-bottom: 33px;
  text-align: left;
  margin-left: 5%;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-left: 10%;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin-left: 5%;
}

.social-links a {
  color: var(--white);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
}

/* ===== FORMS ===== */
.form-label {
  font-weight: 600;
  margin-bottom: 13px;
  text-align: left;
  margin-left: 5%;
}

.form-control,
.form-select {
  border-radius: var(--border-radius-asymmetric);
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
}

/* ===== FEATURE BOXES ===== */
.feature-box {
  padding: 43px;
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translate(-5px, 5px);
}

.feature-icon {
  width: 80px;
  height: 78px;
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 29px;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.feature-title {
  font-size: 1.8rem;
  margin-bottom: 21px;
  text-align: left;
  margin-left: 5%;
}

.feature-text {
  font-size: 1.1rem;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  text-align: center;
  padding: 47px;
}

.process-number {
  width: 80px;
  height: 81px;
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 28px;
  margin-left: 5%;
}

.process-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
  text-align: left;
  margin-left: 10%;
}

.process-text {
  font-size: 1.1rem;
  text-align: right;
  width: 85%;
  margin-left: auto;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  background: var(--white);
}

.legal-title {
  font-size: 4rem;
  margin-bottom: 22px;
  text-align: left;
  margin-left: 5%;
}

.legal-updated {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 59px;
  text-align: right;
  width: 60%;
  margin-left: auto;
}

.legal-page h2 {
  font-size: 2.5rem;
  margin-top: 60px;
  margin-bottom: 32px;
  text-align: left;
  margin-left: 5%;
}

.legal-page p {
  font-size: 1.1rem;
  margin-bottom: 23px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.legal-page ul {
  margin-bottom: 28px;
  margin-left: 10%;
}

.legal-page li {
  margin-bottom: 14px;
}

/* ===== ARTICLE PAGES ===== */
.article-hero {
  height: 60vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.article-meta {
  display: flex;
  gap: 23px;
  font-size: 0.95rem;
  margin-left: 5%;
}

.article-category {
  background: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 21px 0 22px 0;
  font-weight: 600;
}

.article-date {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-title {
  font-size: 4rem;
  margin-bottom: 0;
}

.article-content {
  background: var(--white);
}

.article-content h2 {
  font-size: 2.5rem;
  margin-top: 63px;
  margin-bottom: 29px;
  text-align: left;
  margin-left: 5%;
}

.article-content p {
  font-size: 1.2rem;
  margin-bottom: 27px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.article-list {
  margin-left: 10%;
  margin-bottom: 27px;
}

.article-list li {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.article-quote {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  padding: 46px;
  background: var(--accent-light);
  border-radius: var(--border-radius-asymmetric);
  margin: 57px 5%;
  border: none;
}

.article-inline-image {
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  margin-left: 5%;
}

.article-cta {
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  color: var(--white);
  padding: 57px;
  border-radius: var(--border-radius-asymmetric);
  text-align: center;
}

.article-cta h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 21px;
}

.article-cta p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 29px;
  text-align: center;
  width: 100%;
  margin-left: 0;
}

/* ===== SERVICE PAGES ===== */
.service-hero-section {
  height: 70vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
}

.service-icon-large i {
  font-size: 4rem;
  color: var(--white);
}

.service-details {
  background: var(--white);
}

.service-detail-image {
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
}

.service-benefits-list {
  list-style: none;
  padding: 0;
  margin-left: 10%;
}

.service-benefits-list li {
  padding: 13px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-benefits-list li:last-child {
  border-bottom: none;
}

.service-benefits-list i {
  color: var(--teal-color);
  margin-right: 16px;
  font-size: 1.3rem;
}

.service-type-card {
  padding: 46px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  text-align: center;
  height: 100%;
}

.service-type-title {
  font-size: 1.8rem;
  margin-bottom: 23px;
  text-align: left;
  margin-left: 5%;
}

.service-type-text {
  font-size: 1.1rem;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.price-box {
  padding: 61px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  text-align: center;
  position: relative;
}

.price-box.featured {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: 21px;
  right: 17px;
  background: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 19px 0 18px 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-title {
  font-size: 2rem;
  margin-bottom: 21px;
  text-align: left;
  margin-left: 5%;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.price-description {
  font-size: 1.1rem;
  margin-bottom: 31px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.process-step-card {
  padding: 45px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  text-align: center;
  height: 100%;
}

.process-step-number {
  width: 82px;
  height: 77px;
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 29px;
  margin-left: 5%;
}

.process-step-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
  text-align: left;
  margin-left: 10%;
}

.process-step-text {
  font-size: 1.1rem;
  text-align: right;
  width: 85%;
  margin-left: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-info-box {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  margin-left: 5%;
}

.contact-icon {
  width: 59px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--teal-color));
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-label {
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-align: left;
}

.contact-text {
  font-size: 1.1rem;
  text-align: right;
  width: 80%;
  margin-left: auto;
}

.contact-text a {
  color: var(--accent-color);
  text-decoration: none;
}

/* ===== BOOKING PAGE ===== */
.info-card {
  padding: 46px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  text-align: center;
  height: 100%;
}

.info-card i {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.info-title {
  font-size: 1.6rem;
  margin-bottom: 13px;
  text-align: left;
  margin-left: 5%;
}

.info-text {
  font-size: 1.1rem;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.gift-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 31px;
  margin-left: 10%;
}

.gift-benefits li {
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gift-benefits li:last-child {
  border-bottom: none;
}

.gift-benefits i {
  color: var(--teal-color);
  margin-right: 13px;
}

.gift-card-image {
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
}

/* ===== PRICING PAGE ===== */
.service-pricing-table {
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  overflow: hidden;
}

.service-pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 27px;
  align-items: center;
  padding: 28px 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-pricing-row:last-child {
  border-bottom: none;
}

.service-pricing-name h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  text-align: left;
  margin-left: 5%;
}

.service-pricing-price {
  text-align: center;
}

.service-pricing-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.membership-card {
  padding: 58px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  height: 100%;
}

.membership-title {
  font-size: 2.5rem;
  margin-bottom: 18px;
  text-align: left;
  margin-left: 5%;
}

.membership-text {
  font-size: 1.1rem;
  margin-bottom: 31px;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.membership-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  margin-left: 10%;
}

.membership-benefits li {
  padding: 17px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.membership-benefits li:last-child {
  border-bottom: none;
}

.membership-benefits i {
  color: var(--teal-color);
  margin-right: 18px;
}

/* ===== CERTIFICATIONS ===== */
.certification-badge {
  text-align: center;
  padding: 43px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  height: 100%;
}

.certification-badge i {
  color: var(--accent-color);
  margin-bottom: 32px;
}

.certification-name {
  font-size: 1.4rem;
  text-align: left;
  margin-left: 5%;
}

/* ===== VALUE CARDS (ABOUT PAGE) ===== */
.value-card {
  padding: 44px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  text-align: center;
  height: 100%;
}

.value-card i {
  color: var(--accent-color);
  margin-bottom: 29px;
}

.value-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  text-align: left;
  margin-left: 5%;
}

.value-text {
  font-size: 1.1rem;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.mission-box {
  padding: 43px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
  text-align: center;
  height: 100%;
}

.mission-box i {
  color: var(--accent-color);
  margin-bottom: 33px;
}

.mission-title {
  font-size: 2rem;
  margin-bottom: 17px;
  text-align: left;
  margin-left: 5%;
}

.mission-text {
  font-size: 1.1rem;
  text-align: right;
  width: 90%;
  margin-left: auto;
}

.about-image {
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
}

/* ===== RELATED ARTICLES ===== */
.blog-card-small {
  padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius-asymmetric);
  box-shadow: var(--shadow-offset);
}

.blog-image-small {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-asymmetric);
  margin-bottom: 17px;
}

.blog-title-small {
  font-size: 1.5rem;
  margin-bottom: 19px;
  text-align: left;
  margin-left: 5%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2rem; }

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

  .hero-title,
  .page-hero-title {
    font-size: 3rem;
  }

  .hero-description,
  .page-hero-description,
  .section-description {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  section {
    padding: 100px 0;
  }

  section.py-5 {
    padding: 100px 0 !important;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-section-asymmetric {
    height: 60vh;
  }

  .hero-cta-group {
    margin-left: 0;
  }

  .hero-features {
    margin-left: 0;
  }

  .service-text,
  .feature-text,
  .process-text,
  .testimonial-quote,
  .value-text,
  .mission-text,
  .service-type-text,
  .price-description,
  .process-step-text,
  .info-text,
  .contact-text {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .service-title,
  .feature-title,
  .process-title,
  .team-name,
  .value-title,
  .mission-title,
  .service-type-title,
  .price-title,
  .process-step-title,
  .info-title,
  .blog-title,
  .blog-title-small {
    margin-left: 0;
  }

  .service-icon,
  .feature-icon,
  .process-number,
  .team-social,
  .testimonial-rating,
  .testimonial-author,
  .footer-heading,
  .footer-links,
  .footer-contact,
  .service-benefits-list,
  .gift-benefits,
  .membership-benefits,
  .article-meta,
  .contact-info-box,
  .form-label,
  .legal-page h2,
  .cta-title,
  .pricing-header,
  .certification-name,
  .service-icon-large,
  .process-step-number {
    margin-left: 0;
  }

  .footer-description,
  .legal-page p,
  .article-content p,
  .cta-description,
  .legal-updated,
  .legal-title {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .accordion-body,
  .team-certification,
  .blog-excerpt,
  .membership-text {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .service-pricing-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-pricing-name h4 {
    margin-left: 0;
  }
}
